/*------------------------------------------------------------------------------
Theme Name: kelizabeth
Theme URI: https://kacielizabeth.com
Author: Kaci Elizabeth
Author URI: https://kacielizabeth.com
Description: This is a custom template built using EDD callbacks for my store.
It is not to be reproduced in any way, shape or form.
Version: 1.0
--------------------------------------------------------------------------------
Copy, recreation, grabbing snippets of code, redistribution, selling, etc

This theme, it's files and codes: are for KACIELIZABETH.COM and is not to be
redistributed/stolen/copied/claimed as your own in any form (profit or not)
--------------------------------------------------------------------------------
----------------------------------------------------------------------------- */

/* Fonts
----------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Sofia+Sans+Extra+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap");

/* Global
----------------------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1em;
}

/* Desktop Navigation
----------------------------------------------------------------------------- */
.navigation {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 10px 0;
  background: rgb(46, 179, 175);
  background: -moz-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2eb3af",endColorstr="#597ef3",GradientType=1);
}

.navigation-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 10% 45%;
  justify-content: center;
  align-items: center;
}

.navigation--right {
  text-align: right;
}

.navigation--left {
  text-align: left;
}

.navigation--center {
  text-align: center;
}

.navigation ul,
.navigation li {
  list-style: none;
  display: inline-block;
}

.navigation a,
.navigation a:link,
.navigation a:active,
.navigation a:visited,
.navigation a:hover {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-size: 1.5em;
}

/* Header
----------------------------------------------------------------------------- */
.header {
  width: 100%;
  height: 55vh;
  position: relative;
  background: rgb(46, 179, 175);
  background: -moz-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2eb3af",endColorstr="#597ef3",GradientType=1);
  top: -60px;
}

.header-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.header-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 81px;
}

.header-bottom .shape-fill {
  fill: #f5f5f5;
}

.logo {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
}

/* Container / Top Content
----------------------------------------------------------------------------- */

.container {
  width: 70%;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  position: relative;
  top: -180px;
}

.container-two {
    display: grid;
    grid-template-columns: 80% 20%;
}
.top-content {
  display: grid;
  grid-template-columns: 45% 10% 45%;
  justify-content: center;
  align-items: center;
}

.top-logo {
  position: relative;
  top: -75px;
  margin-bottom: -50px;
}

.small-logo-light {
  background-image: url("https://kacielizabeth.com/design/wp-content/themes/kelizabeth/images/light-logo.png");
  width: 105px;
  height: 105px;
}

.small-logo-dark {
    display:none;
}

#main-search-form input {
  width: 88%;
  background-color: #f5f5f5;
  font-size: 1em;
  color: #555;
  padding: 15px;
  border-radius: 30px;
  border: 0;
}

.order-social-wrap {
  display: grid;
  grid-template-columns: 90% 10%;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#order-status {
  width: 95%;
  background-color: #f5f5f5;
  font-size: 1em;
  padding: 12px;
  border-radius: 30px;
}

#socials {
  width: 90%;
  font-size: 1em;
  padding: 8px;
  border-radius: 30px;
}

#socials i {
  color: #597ef2;
  background-color: #f5f5f5;
  border-radius: 100px;
  padding: 15px;
  transition: 0.4s;
}

#socials i:hover {
  color: #fff;
  background-color: #597ef2;
  border-radius: 100px;
  padding: 15px;
  transition: 0.4s;
}

/* Slider
----------------------------------------------------------------------------- */

.slider-wrap {
  width: 100%;
  border-bottom: 4px double #f5f5f5;
}
.slider {
  width: 85%;
  margin: 10px auto;
}

.slick-slide {
  margin: 0px 20px;
  width: 300px;
}

.slick-slide img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 50px;
  line-height: 1;
  color: #000000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before {
  content: "‹";
}

[dir="rtl"] .slick-prev:before {
  content: "›";
}

[dir="rtl"] .slick-next {
  left: -10px;
  top: 70px;
  right: auto;
}

.slick-next:before {
  content: "›";
}

[dir="rtl"] .slick-next:before {
  content: "‹";
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 0.5;
}

.slick-current {
  opacity: 1;
}

element {
  width: 200px !important;
}

.latest-title {
  border-radius: 30px;
  padding: 5px 10px;
  color:#fff;
  margin: 3px 10px;
  background: rgb(46, 179, 175);
  background: -moz-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(46, 179, 175, 1) 0%,
    rgba(89, 126, 243, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2eb3af",endColorstr="#597ef3",GradientType=1);
}

/* Content
----------------------------------------------------------------------------- */
.main-class {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    column-gap: 10px;
    row-gap: 10px;
    width: 80%;
    margin: 0 auto;
}

.category-wrap {
    padding: 15px;
    background-color:#f5f5f5;
    border-radius: 30px;
}

.product-categories {
    padding: 5px 0;
}

.product-categories a:link, .product-categories a:active, .product-categories a:visited {
  color: #2eb3b0;
  font-size: 2em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-style: wavy;
  transition: 0.4s;
}

.product-categories a:hover {
  color: #587ff1;
  font-size: 2em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-style: wavy;
  transition: 0.4s;
}


.product-subcategories {
    margin-left: 20px;
}

.product-subcategories a, .product-subcategories a:link, .product-subcategories a:active, .product-subcategories a:visited {
    background-color:#fff;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    padding: 3px 10px;
    color: #8c8c8c;
    font-size: 14px;
    text-decoration: none;
    transition: all ease-in-out .3s;
    margin: 3px;
}

.product-subcategories a:hover {
    background-color:#fff;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    padding: 3px 10px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.product-archive {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    gap: 15px;
    justify-content: center;
    align-items:center;
}

.product-archive img {
    border-radius: 30px;
}

.product-archive a {
    text-decoration: none;
}

.product-div {
    border: 2px solid #f5f5f5;
    padding: 15px;
    border-radius: 30px;
    transition: 0.4s;
}

.product-div:hover {
    border: 2px solid #3ca1c6;
    padding: 15px;
    border-radius: 30px;
    transition: 0.4s;
}

.product-title {
  color: #2eb3b0;
  font-size: 1.8em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  transition: 0.4s;
  text-align: center;
}

.archive-title {
  color: #2eb3b0;
  font-size: 3em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-style: wavy;
  transition: 0.4s;
  text-align: center;
}

.page-title {
  color: #2eb3b0;
  font-size: 3em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-style: wavy;
  transition: 0.4s;
  text-align: center;
}

.accordion {
    width: 100%;
    max-width: 100%;
    margin: 30px auto 20px;
    background: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.accordion .link {
    background-color:#3ba2c4;
    cursor: pointer;
    border-radius: 30px;
    display: block;
    padding: 15px 15px 15px 42px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li {
    list-style:none;
    border-bottom:0px!important;
}

.accordion li:last-child .link {
    border-bottom: 0px;
}

.accordion li i {
    position: absolute;
    top: 20px;
    left: 12px;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px;
}

.accordion li.open .link {
    color: #fff;
}

.accordion li.open i {
    color: #fff;
}

.accordion small {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion .submenu {
    line-height: 1.5em;
    padding: 0 15px;
}


.accordion .submenu li {
    padding: 15px;
    background-color:#eafafa;
    margin: 3px 0;
    border-radius: 35px;
}

.accordion .submenu a {
  color: #37a7bd;
  text-decoration: none;
  border-bottom: 1px dashed #37a7bd;
  transform: 0.4s;
}

.single-product {
    display: grid;
    grid-template-columns: 75% 25%;
}

.single-reviews {
    width: 100%;
}

hr {
    background-color:#eee!important;
    border:0px;
    height: 2px;
    width: 100%;
}

.single-product-wrap {
    padding: 0px 25px;
    line-height: 25px;
}


.single-product img {
    border-radius: 35px;
    border:1px solid #eee;
}


.single-product a:link, .single-product a:active, .single-product a:visited, 
#container a:link, #container a:active, #container a:visited {
  color: #37a7bd;
  text-decoration: none;
  border-bottom: 1px dashed #37a7bd;
  transform: 0.4s;
}

.single-product a:hover, #container a:hover {
  color: #5682f0;
  text-decoration: none;
  border-bottom: 1px dashed #5682f0;
  transform: 0.4s;
}


.preview-wrapper {
  display: flex;
  background-color:#f5f5f5;
  border-radius: 35px;
  overflow:hidden;
}

.preview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 40px;
  font-family: Arial;
  color: #37a7bd;
  background-color: #ffffff;
  font-weight: bold;
}

.preview a {
  color: #37a7bd;
  text-decoration: none;
  border-bottom: 1px dashed #37a7bd;
}
  
.preview:first-child {
    color: #ffffff;
    background-color: #37a7bd;
}
    
.preview:first-child:after {
      background-color: #37a7bd;
}
  
.preview:after {
    content: '';
    display: block;
    position: absolute;
    width: 28px;
    height: 28px;
    left: calc(100% - 15px);
    top: 50%;
    margin-top: -14px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 1px -1px 0 0 #ccc;
    z-index: 5;
}

.the-stats, .the-stats p  {
    padding: 8px 0;
}


.sidebar-wrap {
    background-color:#2eb2af;
    border-radius: 35px;
    padding: 35px 15px;
    margin: 35px 0;
    color:#fff;
}

.sidebar-wrap .product-title {
    color:#fff!important;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}


.sidebar-wrap .single-product-wrap {
    padding: 25px;
    background-color:#2ba8a5;
    border-radius: 35px;
    text-align:center;
}

.sidebar-wrap .edd-cart {
    list-style:none;
}

.sidebar-wrap .edd-cart li {
    border-bottom: 2px solid rgba(0,0,0,0.1);
    margin: 5px 0;
    padding: 15px;
}

.sidebar-wrap .edd-cart-number-of-items {
    color:#eee;
    background-color:rgba(0,0,0,0.1);
    border-radius: 35px;
}

.sidebar-wrap .edd-cart-meta.edd_total {
    background-color:rgba(0,0,0,0.1);
}

.sidebar-wrap a:link, .sidebar-wrap a:active, .sidebar-wrap a:visited {
  color: #fff!important;
  text-decoration: none;
  border-bottom: 1px dashed #fff!important;
  transform: 0.4s;
}

.sidebar-wrap a:hover {
  color: #fff!important;
  text-decoration: none;
  border-bottom: 1px dashed #fff!important;
  transform: 0.4s;
}


.sidebar-wrap .edd-submit {
    background-color:#222!important;
    border:0px!important;
    padding: 8px 15px;
    color:#fff;
    font-size: 18px;
}

.sidebar-wrap .edd-cart-added-alert {
    color:#c7fcde!important;
}

.sidebar-wrap hr {
    background-color:rgba(0,0,0,0.1)!important;
}


input, textarea {
    padding: 15px;
    border: 2px solid #eee;
    color:#555;
}


.sidebar-wrap input, .sidebar-wrap textarea {
    padding: 8px;
    border: 2px solid rgba(0,0,0,0.1);
    background-color:rgba(0,0,0,0.1);
    color:#fff;
}

form p {
    padding: 15px 0;
}

.ked-website {
    padding: 20px;
    background-color:#eafafa;
    border:1px solid #dff0f0;
    margin: 3px 0;
    border-radius: 35px;
}

h6 {
    padding: 20px;
    background-color:#eafafa;
    border:1px solid #dff0f0;
    margin: 3px 0;
    border-radius: 35px;
}

ul.features {
    list-style: square;
    padding: 25px;
}

code {
    padding: 20px;
    background-color:#eafafa;
    border:1px solid #dff0f0;
    margin: 3px 0;
    border-radius: 35px;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 10px;
    background-color:#e2eafb;
    border:1px solid #d0d9ee;
    margin: 3px 0;
    border-radius: 35px;
}
/* Page Navigation
----------------------------------------------------------------------------- */
.pagenavi li a,
.pagenavi li a:hover,
.pagenavi li.disabled {
    background-color: #f5f5f5;
    color: #555;
    text-decoration:none;
    padding:10px;
    -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;
    transition:all 0.3s ease-out;
    border-radius: 10px;
}

.pagenavi li {

    color: #555;
    display:inline;
    border-bottom:0px!important;
    border-radius: 10px;
}

.pagenavi li a:hover,
.pagenavi li.active a,
.pagenavi li.disabled {
    background-color: #3ca1c6;
    color: #fff;
    text-decoration:none;
    padding:10px;
    -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;
    transition:all 0.3s ease-out;
    border-radius: 10px;
}

/* Reviews
----------------------------------------------------------------------------- */
.review-wrapper a:link, .review-wrapper a:active, .review-wrapper a:visited {
  color: #2eb3b0;
  font-size: 1.5em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration-style: wavy;
  transition: 0.4s;
}

.review-wrapper a:hover {
  color: #587ff1;
  font-size: 1.5em;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-decoration-style: wavy;
  transition: 0.4s;
}

.testimonial {
    margin: 5px;
    border: 2px solid #f5f5f5;
    padding: 15px;
    border-radius: 30px;
    transition: 0.4s;
}

.testimonial:hover {
    border: 2px solid #3ca1c6;
    padding: 15px;
    border-radius: 30px;
    transition: 0.4s;
}

.testimonial_group .testimonial {
    width: 32.333%!important;
}


/* To Top
----------------------------------------------------------------------------- */
.to-top {
    position: -webkit-sticky;
    /* Safari & IE */
    position: sticky;
    bottom: 40%;
    right: 0;
    float: right;
    width: 60px;
    cursor: pointer;

}

.to-top i {
    color: #ffffff;
}

.to-top span {
    background-color: #2eb2b0;
    padding: 15px 0 15px 0;
    display: block;
    width: 60px;
    text-align: center;
    margin-bottom: 3px;
    -webkit-transition: opacity 0.3s linear;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.to-top span:hover {
    background-color: #4696d5;
    padding: 15px 0 15px 0;
    display: block;
    width: 60px;
    text-align: center;
    margin-bottom: 3px;
    -webkit-transition: opacity 0.3s linear;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* Mobile
----------------------------------------------------------------------------- */
@media only screen and (max-width: 1050px),
  only screen and (max-device-width: 1050px) {
  .header img {
    width: 60%;
  }
  
  .navigation-grid {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%!important;
    justify-content: center;
    align-items: center;
  }
  
  .navigation--left, .navigation--right {
      text-align:center!important;
  }
  
  .navigation a {
      font-size: 19px!important;
  }
  
  .to-top, .top-logo, .order-social-wrap {
      display:none;
  }
  
  .top-content {
      grid-template-columns: 100%!important;
  }

  #container,
  #container-two img {
    width: 90%;
  }

  #container {
    width: 100%;
    position: relative;
    left: -15px;
  }

  #container-two {
    width: 90%;
    margin: auto !important;
  }

  .cart-wrapper {
    width: 75%;
    margin-left: -30px;
  }

  #custom-orders,
  #custom-search {
    display: block;
    width: 100%;
  }

  #custom-cart {
    display: block;
    width: 100%;
    margin-top: 4px;
  }

  .cart-button,
  .orders-button {
    width: 100%;
  }

  .main-class,
  .product-list,
  .single-product,
  .product-archive {
    width: 100% !important;
    grid-template-columns: 100% !important;
    text-align:justify;
  }

  .main-navigation li {
    display: block;
  }
  
  .page-title, .product-title {
      font-size: 30px;
      line-height: 41px;
  }
}
