/*
Roze: #d774a8
Turquoise: #89c7c2
*/

html{
  width: 100%;
  min-height: 100%;
  position: relative;
}

body{
  margin: 0px;
  background-color: #FFF;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 80px;
  background-image: url("../images/bg-top.jpg");
  background-size: 2600px auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  body{
    margin-bottom: 0px;
  }
  div.card-deck{
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .btn{
    white-space: normal;
  }
}

.btn-pink{
  background-color: #d774a8;
  color: #FFF;
}
a.btn-pink:hover{
  color: #FFF;
  background-color: #ca6492;
}

div.clear{
  clear: both;
}
.pointer{
  cursor: pointer;
}
.underline,
.underline:not([href]):not([tabindex]):hover{
  text-decoration: underline;
}
a:hover{
  color: #d774a8;
}
a.greenLink,
a.greenLink:not([href]):not([tabindex]){
  color: #89c7c2;
}
.underline:hover{
  color: #89c7c2;
}

a.logoHolder{
  position: absolute;
  display: block;
  top: -60px;
  left: 20px;
  width: 150px;
  z-index: 2;
}
@media (max-width: 1275px){
  a.logoHolder{
    width: 180px;
  }
}
@media (max-width: 991px){
  a.logoHolder{
    display: none;
  }
}


/*  FIX FOR MODAL SCROLL ON IOS */
@media (max-width: 1024px){
  .modal {
    height: 100%; /* Set a default max height of the modal (adjusted later)*/
    position: fixed; /* Display modal in the centre of your screen */
    overflow-y: scroll; /*  Ensure that the modal is scroll-able */
    -webkit-overflow-scrolling: touch; /* Avoid having to use 2 finger scroll on iOS    */
  }
  .modal.fade.in{
    top: 5px; /* Use more screen real estate */
  }
  .modal-body{
    /* Increase the max height of the modal body to try & avoid both it,
     * and the modal container having scroll bars which results in odd behavior */ 
    max-height: 2400px; 
  }
}

/*      HEADER    */
header .navbar,
header .navbar-brand{
  padding: 0px;
}
header .navbar-light .navbar-nav .nav-link{
  text-transform: uppercase;
  color: #000;
  font-family: 'Special Elite', cursive;
  font-weight: 600;
  font-size: 1.2em;
  padding-left: 16px;
  padding-right: 16px;
}
header .navbar-light .navbar-nav .nav-link:hover,
header .navbar-light .navbar-nav .nav-link.current {
  color: #d774a8;
}
header .navbar-light .navbar-toggler{
  border: none;
}
header .navbar-light .navbar-toggler-icon{
  font-size: 24px;
}

@media screen and (max-width: 1200px) {
  header .navbar-light .navbar-nav .nav-link{
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1.1em;
  }
}
@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse{
    display: block !important;
  }
}

/*      MAIN      */
main{
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  main{
    margin-top: 20px;
  }
}

article{
  
}
article h1,
article h2,
article h3,
article h4,
aside h1,
aside h2,
aside h3,
aside div.titleSpacer{
  font-family: 'Special Elite', cursive;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home ul li,
h3.heartList{
  list-style: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1em;
  text-transform: none;
  margin: 0px;
  margin-bottom: 2px;
  background-image: url("../images/heart.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 18px;
  padding-left: 25px;
}
.home ul{
  padding-left: 0px;
  margin-left: 0px;
}
.home ul li{
  font-size: 1em;
  margin-bottom: 10px;
}
.home h3{
  font-family: 'Quicksand', sans-serif;
  color: #d774a8;
  font-size: 1.3em;
  text-transform: none;
}

h5.modal-title{
  font-family: 'Special Elite', cursive;
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.1em;
  text-transform: uppercase;
}

aside h3{
  font-size: 1.1em;
}
article h4{
  font-size: 1em;
}
aside{
}
aside div.sideContent{
  margin-bottom: 50px;
}

.textPrimary{
  color: #89c7c2;
}

article ul{
  margin-bottom: 0px;
}

/*      HOME      */
div.slideShowHolder{
  position: relative;
}
div.slideShow{
  width: 100%;
  height: 0px;
  padding-top: 21.875%;
  position: relative;
  z-index: 1;
}
main.container.shopping div.slideShow{
  padding-top: 100%;
}
div.slideShow div{
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
}
div.slideShow div a{
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.bottomRight{
  position: absolute;
  right: 10px;
  bottom: 10px;
}
span.fa-star.pink,
span.fa.pink{
  color: #d774a8;
  font-size: 1.2em;
}
.heartBg{
  background-image: url("../images/heart.png");
  background-position: right 40px bottom 40px;
  background-repeat: no-repeat;
}
.heartBg.smallHeart{
  background-size: 55px auto;
}
.heartBg.topRight{
  background-position: right top;
}
img.loveSonja{
  width: 120px;
  margin-top: 10px;
}

@media screen and (max-width:  992px) {
  .heartBg{
    background-image: url("../images/heart.png");
    background-position: right bottom 70px;
    background-repeat: no-repeat;
  }
  .heartBg.smallHeart{
    background-size: 50px auto;
  }
}

@media screen and (max-width:  480px) {
  .heartBg{
    background-size: 50px auto;
  }
}


div.textHolder p{
  margin: 0px;
}

.card.green{
  background-color: rgba(137,199,194,0.2);
}
.card.pink{
  background-color: rgba(215,116,168,0.1);
}
.card h5{
  font-size: 1.2rem;
}

div.quote{
  width: 100%;
  height: 207px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.dayScore{
  opacity: 0.1;
}
.dayScore.active{
  opacity: 1;
}

/*      FORMS     */
div.formHolder.register{
  margin-top: 20px;
  margin-bottom: 20px;
}

div.form-group label{
  font-weight: 700;
  font-size: 0.92em;
}

p.prefLabel{
  margin-bottom: 0px;
}

.lostPassLink{
  color: #89c7c2;
}
.lostPassLink:hover{
  text-decoration: underline;
}
.alert{
  font-size: 0.7em;
}


/*      WEEK      */
.opacity5{
  opacity: 0.5;
}
.opacity3{
  opacity: 0.3;
}
span.ingredient.item:before{
  content: "- ";
}
span.ingredient.title{
  -text-decoration: underline;
  font-weight: bold;
}
span.ingredient.comment{
  font-style: italic;
}



/*      FOOTER    */
footer.footer{
  background-color: #000;
  color: #FFF;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 0.73em;
  line-height: 1em;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  margin: 0px;
  width: 100%;
  height: 51px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  footer.footer{
    height: auto;
    position: relative;
    bottom: auto;
  }
}

footer a, footer .nav-link{
  color: #FFF;
  padding-top: 0px;
  padding-bottom: 0px;
}
footer .nav-item:last-child .nav-link{
  padding-right: 0px;
}
footer a:hover{
  color: inherit;
  text-decoration: underline;
}

/*    LOADING ANGULAR   */
div.loading{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.7);
  z-index: 100;
}
div.loading div.loadingContentHolder{
  position: absolute;
  top: 50%;
  left: 50%;
}
div.loading div.loadingContent{
  position: absolute;
  top: -50px;
  left: -100px;
  width: 200px;
  height: 100px;
  text-align: center;
  font-size: 18px;
}


.bg-success{
  background-color: #75afaa !important;
}
.border-success{
  border-color: #75afaa !important;
}