/* theme.css for the styles that I use specifically for this project/website */

/*=======================
WNM 608: Web Technology
Yuki Zhang
Module 4 Assignment
=======================*/

/*=====================================
			       Color Palette
=======================================*/
/*
Pale Pink     #F0CFC4   240, 207, 196
Pink          #D8726B   216, 114, 107
Green         #558A84   85, 138, 132
Dark Green    #305854   48, 88, 84
Navy          #2B3542   43, 53, 66
Brown         #35200A   53, 32, 10
*/

/*============================================================================
                                 Splash Page
  ============================================================================*/

body, html {
/*  height: 100%;*/
  color: #35200A;
}

body {
  font-family: 'Dosis', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    /*font-family: 'Lobster Two', cursive;*/
    font-family: 'Dosis', sans-serif;
    color: #35200A;
    margin-top: 0;
}

/*.bkgrd-img {
  background-image: url("https://images.unsplash.com/photo-1504205758521-892897f3a28e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}*/

#landing-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/*.enter-button {
  display:inline-block;
  background-color: #F0CFC4;
  color: #D8726B;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  vertical-align: middle;
  width: 200px;
  font-family: 'Dosis', sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 8px;
  text-align: center;
  position: absolute;
  top: 70%;
	left: 50%;
	transform: translate(-50%, -70%);
}

.enter-button:hover {
  background-color: #D8726B;
  color:#fff;
}*/

.splash-button a:link {
  text-decoration: none;
  cursor: pointer;
}

.enter-button {
  font-family: 'Dosis', sans-serif;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
  padding: 19px 22px;
  transition: all .2s ease;
}

@media (max-width: 500px) {
  #landing-video {
    display: none;
  }

  .mobile-landing {
    background-image: url('../images/mobile-landing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*======================================================
                  Button Animation
    Cite: https://codepen.io/andreasstorm/pen/oqKbLq
======================================================*/

.enter-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 30px;
  background: rgba( 216, 114, 107, 0.5);
  width: 60px;
  height: 60px;
  transition: all .3s ease;
}

.enter-button span {
  position: relative;
  font-size: 1.5em;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  vertical-align: middle;
}

.enter-button svg {
  position: relative;
  top: 0;
  margin-left: 8px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #35200A;
  stroke-width: 3;
  transform: translateX(-6px);
  transition: all .3s ease;
}

.enter-button:hover {
  color: #FFF;
}

.enter-button:hover:before {
  width: 100%;
  background: rgba(216, 114, 107, 1);
}
    
.enter-button:hover svg {
  transform: translateX(0);
  stroke: #FFF;
}

.enter-button:active {
  transform: scale(.96) translate(-50%, -70%);
}

/*============================================================================
                                   Header
  ============================================================================*/

.logo {
  display: inline-block;
}

.logo img {
  max-height: 60px;
  width: auto;
  padding: 10px 0px 10px 0.5em;
}

.cart-icon-adv {
  /*float: right;*/
  padding-top: 8px;
}

.cart-qty {
  top: -15px;
}

.cart-icon-adv img {
  height: 28px;
}

@media (max-width: 700px) {
  .cart-icon-adv{
    position: absolute;
    top: 1px;
    right: 40px;
  }
}

.badge {
  background-color: #D8726B;
}

.cart-icon-adv {
  color: #35200A;
  order: 2;
}

/*============================================================================
                                 Navigation
                Cite: https://codepen.io/ev3lym/pen/geaGem
============================================================================*/

#menu {
  margin: 0;
}

#navbar {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(110, 119, 131);
  position: fixed;
  top: 0;
  height: 60px;
  line-height: 60px;
  width: 100vw;
  z-index: 10;
}

.nav-wrapper {
  margin-right: 10%;
  margin-left: auto;
  text-align: right;
  width: 70%;
} @media(max-width: 700px) {
    .nav-wrapper {
      width: 95%;
      margin-right: 8%;
    }
} /*@media(max-width: 638px) {
    .nav-wrapper {
      width: 100%;
    }
 } */

#navbar ul {
  /* display: inline-block; */
  /*float: right;*/
  list-style: none;
  /* margin-right: 14px; */
 /* margin-top: -2px;*/
  text-align: right;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
} @media(max-width: 700px) {
    #navbar ul {
      display: none;
    }
  } @media(orientation: landscape) {
      #navbar ul {
        display: inline-block;
      }
    }

#navbar li {
  display: inline-block;
}

#navbar li a {
  color: #35200A;
  display: block;
  font-size: 0.7em;
  height: 50px;
  letter-spacing: 1px;
  margin: 0 20px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#navbar li a:hover {
  /* border-bottom: 1px solid rgb(28, 121, 184); */
  color: #FF7473;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

/* Animated Bottom Line */
#navbar li a:before, #navbar li a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -1px;
  background: #FF7473;
}

#navbar li a:before {
  left: 0;
  transition: 0.5s;
}

#navbar li a:after {
  background: rgb(255, 201, 82);
  right: 0;
  /* transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); */
}

#navbar li a:hover:before {
  background: #FF7473;
  width: 100%;
  transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
}

#navbar li a:hover:after {
  background: transparent;
  width: 100%;
  /* transition: 0s; */
}


/*======================================================
                Hamberger Menu Icon
======================================================*/
@media(max-width: 700px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 20px;
    height: 23px;
    width: 27px;
    z-index: 12;
  }

/* Icon Bars */
.icon-bars {
  background: #35200A;
  position: absolute;
  left: 1px;
  top: 45%;
  height: 2px;
  width: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
} 

  .icon-bars::before {
    background: #35200A;
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    height: 2px;
    width: 20px;
/*     -webkit-transition: top 0.2s ease 0.3s;
    transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  .icon-bars::after {
    margin-top: 0px;
    background: #35200A;
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
/*     -webkit-transition: top 0.2s ease 0.3s;
    transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  /* Bars Shadows */
  .icon-bars.overlay {
    /*background: rgb(97, 114, 129);*/
    background: #D8726B;
    width: 20px;
    animation: middleBar 3s infinite 0.5s;
    -webkit-animation: middleBar 3s infinite 0.5s;
  } @keyframes middleBar {
      0% {width: 0px}
      50% {width: 20px}
      100% {width: 0px}
    } @-webkit-keyframes middleBar {
        0% {width: 0px}
        50% {width: 20px}
        100% {width: 0px}
      }

  .icon-bars.overlay::before {
    /*background: rgb(97, 114, 129);*/
    background: #D8726B;
    width: 10px;
    animation: topBar 3s infinite 0.2s;
    -webkit-animation: topBar 3s infinite 0s;
  } @keyframes topBar {
      0% {width: 0px}
      50% {width: 10px}
      100% {width: 0px}
    } @-webkit-keyframes topBar {
        0% {width: 0px}
        50% {width: 10px}
        100% {width: 0px}
      }

  .icon-bars.overlay::after {
    /*background: rgb(97, 114, 129);*/
    background: #D8726B;
    width: 15px;
    animation: bottomBar 3s infinite 1s;
    -webkit-animation: bottomBar 3s infinite 1s;
  } @keyframes bottomBar {
      0% {width: 0px}
      50% {width: 15px}
      100% {width: 0px}
    } @-webkit-keyframes bottomBar {
        0% {width: 0px}
        50% {width: 15px}
        100% {width: 0px}
      }


  /* Toggle Menu Icon */
  .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars::before {
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }

  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars.overlay {
    width: 20px;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
}


/*======================================================
                Responsive Mobile Menu 
  ======================================================*/

.overlay-menu {
  /*background-color: rgba(216, 114, 107, 0.8);*/
  background-color: rgba(240, 207, 196, 0.9);
  
  color: rgb(13, 26, 38);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height: 100vh;
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

.overlay-menu ul,
.overlay-menu li {
  display: block;
  position: relative;
}

.overlay-menu li a {
  display: block;
  font-size: 1.8em;
  letter-spacing: 4px;
  /*  opacity: 0; */
  padding: 10px 0;
  text-align: right;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  /*  -webkit-transition: 0.2s opacity 0.2s ease-out;
  transition: 0.2s opacity 0.2s ease-out; */
}

.overlay-menu li a:hover,
.overlay-menu li a:active {
  color: rgb(28, 121, 184);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}



/*============================================================================
                                 Main Page
============================================================================*/

/*.left-img {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-25%, -50%);
}*/

/*.main-content {
  max-width: 1000px;
  width: 80%;*/
  /*margin-right: auto;
  margin-left: auto;
  padding: 10% 0;*/
/*  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/

/*.main-title-1 {
  color: #D8726B;
}

.main-title-2 {
  color: #305854;
}

.main-title-3 {
  color: #D8726B;
}

.main-title-4 {
  color: #D8726B;
}
*/
.main-content-text,
.main-content-text h2 {
  color: #fff;
}

.main-content img {
  max-width: 100%;
  max-height: 100%;
/*  width: auto;
  height: auto;*/
}

.divider-1 {
  background-image: url("../images/bkgrd/slice-1.png");
}

.divider-2 {
  background-image: url("../images/bkgrd/slice-2.png");
}

.divider-3 {
  background-image: url("../images/bkgrd/slice-3.png");
}

.divider-1,
.divider-2,
.divider-3 {
  background-repeat: repeat-x;
  height: 170px;
}

.main-grid-padding {
  padding-top: 8em;
}

h2 {
  font-size: 3em;
}

p {
  font-size: 1.1em;
}

.card {
    text-align: center;
    box-shadow: none;
    border: 2px dotted #F0CFC4;
}

.card:hover {
  box-shadow: 5px 5px 10px #F0CFC4;
}

.sign-up a {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 700px) {
  .main-content-text {
    text-align: center;
  }

  .main-content-text h2 {
    font-size: 1.5em;
  }

  .main-content-text p {
    font-size: 1em;
  }

  .main-content-img {
    text-align: center;
  }

  .main-content {
    padding: 0 1em;
  }

  .main-grid-padding {
    padding-top: 5em;
  }
}

@media (max-width: 900px) {
  .main-content-img img {
    height: 30vh;
  }
}

@media (max-width: 600px) {
  .divider-1,
  .divider-2,
  .divider-3 {
    display: none;
  }

  .view-window {
    background-attachment: scroll;
  }
}

/*============================================================================
                                 List Page
============================================================================*/

.list-bkgrd-img {
  background-image: url('../images/bkgrd/list.png');
}

.nav-push {
  /*margin-top: 100px;*/
  padding-top: 10vh;
}

.product-list-wrapper {
  text-align: center;
}

.product-list-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

.product-list-wrapper a {
  text-decoration: none;
}

.product-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image {
    vertical-align: middle;
    display: inline-block;
    transition: all 0.3s;
    transform: scale(1,1);
}

.product-pop-up {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 300ms;
  opacity:0;
}

.product-pop-up.navy {
  background-color: rgba(43, 53, 66, 0.6);
}

.product-pop-up.pink {
  background-color: rgba(216, 114, 107, 0.8);
}

.product-pop-up.green {
  background-color: rgba(85, 138, 132, 0.7);
}

.product-pop-up.brown {
  background-color: rgba(53, 32, 10, 0.7);
}

.product-pop-title {
  border: 2px dotted white;
  border-radius: 0px 2em 2em 0px;
  padding: 1em;
  margin: 1em;
  color: white;
  text-align: center;

  transition: all 300ms;
  transform: translateX(2em);
}

.product-wrapper:hover .product-image {
    transform: scale(1.3,1.3) rotate(15deg);
}
.product-wrapper:hover .product-pop-up {
  opacity: 1;
}
.product-wrapper:hover .product-pop-title {
  transform: translateY(0);
}

.list-function {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1em;
  border-radius: 0 50px 50px 0;
  margin-bottom: 1.5em;
}

.tag-button {
  margin-top: 0.5em;
}

.button-padding {
  padding-right: 1em;
}

.all-button, 
.white-button, 
.strawberry-button, 
.matcha-button, 
.dark-button {
  color: #35200A;
  border-radius: 1em;
  padding: 0.3em;
  cursor: pointer;
}

.all-button:hover, 
.white-button:hover, 
.strawberry-button:hover, 
.matcha-button:hover, 
.dark-button:hover {
  color: #fff;
}

.all-button {
  background-color: rgba(240, 207, 196, 0.5);
}

.all-button:hover {
  background-color: rgba(240, 207, 196, 1);
}

.white-button {
  background-color: rgba(43, 53, 66, 0.5);
}

.white-button:hover {
  background-color: rgba(43, 53, 66, 1);
}

.strawberry-button {
  background-color: rgba(216, 114, 107, 0.4);
}

.strawberry-button:hover {
  background-color: rgba(216, 114, 107, 1);
}

.matcha-button {
  background-color: rgba(85, 138, 132, 0.5);
}

.matcha-button:hover {
  background-color: rgba(85, 138, 132, 1);
}

.dark-button {
  background-color: rgba(53, 32, 10, 0.5);
}

.dark-button:hover {
  background-color: rgba(53, 32, 10, 1);
}

@media (max-width: 700px) {
/*  .nav-push {
    background-color: rgba(255, 255, 255, 0.8);
  }*/

  .product-list-wrapper {
    padding: 0 1em;
  }
}

/*======================================================
               Style Select Element
        https://codepen.io/ericrasch/pen/zjDBx
  ======================================================*/
.styled-select {
    /*background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 96% 0;*/
    background-color: rgba(240, 207, 196, 1);
    color: #fff;
    height: 2em;
    overflow: hidden;
    width: 16em;
    padding-left: 1em;
    /* text-align: center; */
    /* border-radius: 20px;*/
    -webkit-border-radius: 20px;
    font-family: 'Dosis', sans-serif;
    margin-left: auto;
    margin-right: 0;
    /* font-size: 1em; */
}

.styled-select select {
   background: transparent;
   border: none;
   font-size: 14px;
   height: 29px;
   padding: 5px; 
   width: 268px;
}

@media (max-width: 700px) {
  .styled-select {
  width: 10em;
  }
}


/*============================================================================
                                 Detail Page
============================================================================*/

.detail-bkgrd-img {
  background-image: url('../images/bkgrd/detail.png');
  background-repeat: no-repeat;
  background-size: cover;
 /* height: 100vh;*/
  /*background-attachment: fixed;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.product-img img {
  max-width: 100%;
  /*max-height: 100%;*/
}

.product-info {
  padding-right: 10%;
}


/*.add-cart,
.check-out {
  border: 1px solid #ccc;
  height: 40px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  padding: 10px 0;
  max-width: 200px;
}*/

.category-button {
  cursor: pointer;
}

.detail-add-to-cart-button,
.check-out-button,
.continue-shopping-button {
  height: 40px;
  cursor: pointer;
  border-radius: 20px;
  background-color: #D8726B;
  color: #fff;
  font-family: 'Dosis', sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 0 2em;
}

.check-out-button,
.continue-shopping-button {
  width: 14em;
}

a.category-button {
  text-decoration: none;
  font-size: 1.3em;
}

a.category-button:hover {
  color: #D8726B;
}

.image-web-small {
  display: none;
}

.image-mobile {
  display: none;
}

@media (max-width: 899px) {
  .product-info {
    text-align: center;
    /*background-color: rgba(255, 255, 255, 0.8);
    padding-top: 1em;*/
    margin-bottom: 2em;
  }

  .product-info .grid,
  .product-info .product-info-adv {
    padding: 0 10px;
  }
}

@media (min-width: 900px) {
  .product-info-adv {
    padding-right: 2em;
  }
}

@media (max-width: 500px) {
  .image-web{
    display: none;
  }

  .image-web-small{
    display: none;
  }

  .image-mobile{
    display: block;
  }
}

@media (min-width: 501px) and (max-width: 650px) {
  .image-web{
    display: none;
  }

  .image-web-small{
    display: block;
  }

  .image-mobile{
    display: none;
  }
}

@media (min-width: 900px) and (max-width: 1200px) {
  .image-web{
    display: none;
  }

  .image-web-small{
    display: block;
  }

  .image-mobile{
    display: none;
  }
}

/*======================================================
                      Input number
        Cite: https://codepen.io/djgrant/pen/AwFHL 
  ======================================================*/

.input-number{
  width: 80px;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
}

.input-number,
.input-number-decrement,
.input-number-increment {
  border: 1px solid #F0CFC4;
  height: 40px;
  user-select: none;
}

.input-number-decrement,
.input-number-increment {
  display: inline-block;
  width: 30px;
  line-height: 38px;
  background: #F0CFC4;
  color: #fff;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #D8726B;
}

.input-number-decrement {
  border-right: none;
  border-radius: 20px 0 0 20px;
}

.input-number-increment {
  border-left: none;
  border-radius: 0 20px 20px 0;
}

.input-wrapper.cart-input .input-number {
  width: 40px;
  height: 28px;
}

.input-wrapper.cart-input .input-number-decrement,
.input-wrapper.cart-input .input-number-increment {
  height: 28px;
  width: 22px;
  line-height: 24px;
}

@media (max-width: 900px) {
  .input-number {
    width: 40px;
  }

  .input-number,
  .input-number-decrement,
  .input-number-increment {
    height: 28px;
  }

  .input-number-decrement,
  .input-number-increment {
    width: 22px;
    line-height: 24px;
  }

  .input-wrapper {
    padding-top: 7px;
  }
}

/*======================================================
                      Image Slider
        Cite: https://codepen.io/dfitzy/pen/xZqGVo 
  ======================================================*/

.slider {
  margin: 0 auto;
  max-width: 940px;
}

.slide_viewer {
  height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 0px 50px 50px 0px;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
  text-align: left;
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background: #F0CFC4;
}

.slide:nth-of-type(2) {
  background: #F0CFC4;
}

.slide:nth-of-type(3) {
  background: #F0CFC4;
}

.slide:nth-of-type(4) {
  background: #F0CFC4;
}

.slide_buttons {
  right:44px ;
  position: absolute;
  
  /* position: relative;
  text-align: right;*/
}

a.slide_btn {
  color: #fff;
  font-size: 28px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 30px!important;
}

.slide_btn.active, .slide_btn:hover {
  color: #D8726B;
  cursor: pointer;
}

.directional_nav {
  height: 340px;
  margin: 0 auto;
  max-width: 940px;
  position: relative;
  top: -340px;
}

.previous_btn {
  /*bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;*/
  margin-left: 15px;
  margin-top: 50px;
}

.next_btn {
  /*bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 10;*/
  margin-left: 15px;
  margin-top: 40px;
    
}

.previous_btn, .next_btn {
  cursor: pointer;
  
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 26px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media (max-width: 700px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}

.slide-dots {
  background-color: #f0cfc4; 
  z-index: 1;
  height:100%;
  width: 60px;
  right: 0;
  text-align: center;
}

/*============================================================================
                                Purchase Page
============================================================================*/

.cart-bkgrd-img {
  background-image: url('../images/bkgrd/cart.png');
}

h4.cart-price,
.cart-info h4 {
  margin: 0;
}

.cart-price {
  text-align: center;
}

.cart-quantity {
  text-align: center;
}

.deflist dd {
  text-align: right;
}

.deflist {
/*  width: 20em;*/
  margin-right: 0;
  margin-left: auto;
}

/*h3.cart-right-align,
h4.cart-right-align {
  text-align: right;
}*/

.check-out {
  padding-top: 30px;
  text-align: right;
}

/*.cart-title {
  text-align: center;
}*/

.cart-left {
  background-color: rgba(85, 138, 132, 0.2);
  padding: 1em;
}

.cart-right {
  background-color: rgba(240, 207, 196, 0.3);
  padding: 1em;
}

.check-out-button {
  border-radius: 0px 20px 20px 0px;
}

.continue-shopping-wrapper {
  margin-top: 0.7em;
}

.continue-shopping-button {
  background-color: #F0CFC4;
  border-radius:  20px 0px 0px 20px;
}

.cart-hidden {
  display: none;
}


button.cart-remitem {
  background: url(../images/icons/delete.png) no-repeat;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  cursor: pointer;
  padding-top: 1em;
}

.cart-amount {
  border: 1px dashed #35200A;
  border-radius: 0 1em 1em 0;
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1000px) {
  .container-padding {
    padding: 0 1em;
  }

  .container-padding-right-only {
    padding-right: 1em;
  }
}

@media (max-width: 600px) {
  .shopping-cart-title {
    display: none;
  }
}

.right-align {
  text-align: right;
}

@media (max-width: 500px) {
  button.cart-remitem{
    width: 1.5em;
    height: 1.5em;
  }
}


/*============================================================================
                                About Us
============================================================================*/

.about-us-content {
/*  width: 80vw;
  color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
}

.about-us-content h1{
  font-size: 2em;
}

.about-us-content p {
  font-size: 1em;
}

/* Slider Cite: https://codepen.io/bamf/pen/jEpxOX */

@import "lesshat";

.ba-slider {
    position: relative;
    overflow: hidden;
}
  
.ba-slider img {
    width: 100%;
    display:block;
}
  
.resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}


.handle { /* Thin line seperator */
  position:absolute; 
  left:50%;
  top:0;
  bottom:0;
  width:4px;
  margin-left:-2px;
  
  background: rgba(255,255,255,.5);
  cursor: ew-resize;
}
  
.handle:after {  /* Big orange knob  */
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;

  content:'\21d4';
  color:white;
  font-weight:bold;
  font-size:36px;
  text-align:center;
  line-height:64px;

  background: #ffb800; /* @orange */
  border:1px solid #e6a600; /* darken(@orange, 5%) */
  border-radius: 50%;
  transition:all 0.3s ease;
  box-shadow:
    0 2px 6px rgba(0,0,0,.3), 
    inset 0 2px 0 rgba(255,255,255,.5),
    inset 0 60px 50px -30px #ffd466; /* lighten(@orange, 20%)*/ 
}

.draggable:after {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  line-height:48px;
  font-size:30px;
}

.slider-wrapper {
  margin-bottom: 25px;
}

@media (max-width: 890px) {
  .slider-wrapper {
    height: 450px;
    padding-right: 1em;
  }

  .nav-push-lighten {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

/*============================================================================
                            Sign Up Page
============================================================================*/
.sign-up-form {
  margin-bottom: 1em;
}

.sign-up-image {
  background-image: url('../images/products/log-in.jpg'); 
  /*border-radius: 50px 0 0 50px;*/
  background-size: cover;
  min-height: 150px;
}

.sign-up-content {
  text-align: center;
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0 50px 50px 0;
}

.sign-up-content img {
  max-height: 60px;
  margin-bottom: 1em;
}

.sign-up-content h4 {
  margin-top: 1em;
  margin-bottom: 0.3em;
}

.sign-up-content p {
  font-size: 0.9em;
}

.sign-up-forgot a {
  font-weight: 500;
  text-decoration: none;
  color: #D8726B;
}

.sign-up-input {
  width: 20em;
  height: 3em;
  border: 1px solid #F0CFC4;
  border-radius: 0px 1.5em 1.5em 0px;
  padding-left: 1em;
  font-family: inherit;
  font-size: 0.8em;
}

/*.remember-checkbox {
  margin-top: 1em;
}

.remember-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}*/

/*======================================================
                     Custome Checkbox
Cite: http://appitventures.com/blog/styling-checkbox-css-tips/
  ======================================================*/


.checkbox-label {
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 24px;
    height: 24px;
    width: 24px;
    clear: both;
    margin-top: 0.5em
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid #FFFFFF;
}

.checkbox-label input:checked ~ .checkbox-custom {
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity:1;
    border: 2px solid #FFFFFF;
}

.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #D8726B;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity:1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity:1;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #009BFF;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}

/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);    
}

.checkbox-label input:checked ~ .checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity:0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


/* Style for Circular Checkbox */
.checkbox-label .checkbox-custom.circular {
    border-radius: 50%;
    border: 2px solid #F0CFC4;
}

.checkbox-label input:checked ~ .checkbox-custom.circular {
    background-color: #F0CFC4;
    border-radius: 50%;
    border: 1px solid #D8726B;
}
.checkbox-label input:checked ~ .checkbox-custom.circular::after {
    border: solid  #D8726B;
    border-width: 0 2px 2px 0;
}
.checkbox-label .checkbox-custom.circular::after {
    border-radius: 50%;
}

.checkbox-label .checkbox-custom.circular::before {
    border-radius: 50%;
    border: 2px solid #F0CFC4;
}

.checkbox-label input:checked ~ .checkbox-custom.circular::before {
    border-radius: 50%;
}



@media (max-width: 600px) {
  .sign-up-content {
    border-radius: 0px 0px 50px 0px;
  }

  .sign-up-image {
    border-radius: 0px 50px 0px 0px;
  }
}

/*============================================================================
                                    Footer
============================================================================*/

.footer {
  background-color: rgba(240, 207, 196, 0.5);
}

.push-footer {
  min-height: calc(100vh - 105px);
}

.footer-text {
  text-align: right;
  padding: 17px 0;
}

@media (max-width: 900px) {
  .push-footer {
    min-height: calc(100vh - 158px);
  }
}

/*======================================================
           Social Media Icon Hover Effect
    Tutorial: www.youtube.com/watch?v=QaSLBMqPb2U&t=68s
  ======================================================*/

.share {
/*  margin-bottom: 0;
  margin-top: 0%;
  flex: 1 1 auto;
  margin-left: 10%;*/
  text-align: left;
}

.share ul {
  display: inline-flex;
  position: relative;
  padding: 0;
}

.share ul li {
  list-style: none;
}

.share ul li a {
  width: 56px;
  height: 56px;
  background: rgba(240, 207, 196, 0.5);
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  margin: 0 20px 0 0;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #35200A;
  z-index: 1;
}

.share ul li a .fa
{
  position: relative;
  color: #35200A;
  transition: .5s;
  z-index: 3;
}

.share ul li a:hover .fa
{
  color: #fff;
  transform: rotateY(360deg);
}

.share ul li a:before
{
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: .5s;
  z-index: 2;
}

.share ul li a:hover:before
{
  top: 0;
}

.share ul li:nth-child(1) a:before
{
  background: #365899;
}

.share ul li:nth-child(2) a:before
{
  background: #E60023;
}

.share ul li:nth-child(3) a:before
{
  background: #c32aa3;
}

/*.share ul li:nth-child(4) a:before
{
  background: #007bb5;
}

.share ul li:nth-child(5) a:before
{
  background: #ea4c89;
}*/

@media (max-width: 700px) {
  .share {
    text-align: center;
  }

  .footer-text {
    text-align: center;
    padding: 0;
  }

  .share ul li a {
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
    margin: 0 10px;
    border: 2px solid;
  }
}



/*============================================================================
                            Typography Media Query
============================================================================*/
@media (max-width: 700px) {
  h2 {
    font-size: 1.5em;
  }
}



















