




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

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

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



/*-----------------------------------------------------------------------------------/
* Normailze.
/*-----------------------------------------------------------------------------------*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  height: auto;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Paragraph */
p {
  margin: 0;
}

ol, ul {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:hover, *:focus, *:active, button:focus {
  outline: none;
}

label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a, a:hover, a:focus, a:active, button, button:focus, button:active {
  text-decoration: none;
}

p, a, li, ul, ol, span, label, input, textarea, button, b, i, h1, h2, h3, h4, h5, h6, select, table, tr, td, .input-group {
/*   direction: ltr; */
/*   text-align: left; */
}

strong {
  font-weight: normal;
}

.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xs, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

button {
  cursor: pointer;
}

.btn {
  width: auto;
    padding: 20px 25px;
    max-width: 100%;
    background: {{ settings.button_color }}; 
    color: {{ settings.button_text }};
    border: none;
    -webkit-transition: background .5s ease,color .5s ease;
    -moz-transition: background .5s ease,color .5s ease;
    -o-transition: background .5s ease,color .5s ease;
    transition: background .5s ease,color .5s ease;
    -webkit-appearance: none;
    display: inline-block;
    font-size: 21px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 15px;
    line-height: normal;
    letter-spacing: 1px;
    -webkit-appearance: none;
}
.btn.btn-base-1 {
  background: #d51c5c;
  color:#fff;
  
}
.btn.btn-base-1:hover {
  background: #d51c5c;
  color: #fff;
}

/*-----------------------------------------------------------------------------------/
* Dividers Styles.
/*-----------------------------------------------------------------------------------*/
hr {
  height: 1px;
  display: block;
  margin: 5px 0;
  border: none;
  background-color: #DDD;
}

.tab-container {
  visibility: hidden;
  -moz-transform: translateX(30%);
  -ms-transform: translateX(30%);
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  height: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.tab-container .btn[data-tabs] {
  visibility: hidden;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  height: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}
.tab-container.active {
  visibility: visible;
  height: auto;
  border: 5px solid #dfe9ee;
  border-radius: 8px;
  padding: 20px;
  max-width:800px;
  margin: 10px auto;
  opacity: 1;
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.tab-container.active .btn[data-tabs]:not(.hidden) {
  visibility: visible;
  height: auto;
  opacity: 1;
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.sub-types {
  visibility: hidden;
  -moz-transform: translateX(30%);
  -ms-transform: translateX(30%);
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  height: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.sub-types.active {
  visibility: visible;
  height: auto;
  opacity: 1;
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* Accordion
================================================== */
.acc__card {
  position: relative;
}

.acc__title {
  color: #9d9d9d;
  cursor: pointer;
  display: block;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  border-top: 1px solid #cecece;
}
.acc__title::after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;
  position: absolute;
  right: 10px;
  content: " ";
  top: 20px;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.acc__title.active::after {
  transform: rotate(-135deg);
  transition: all 0.2s ease-in-out;
}

.acc__panel {
  color: #fff;
  background: #efefef;
  display: none;
  margin: 0;
  padding: 2em;
  text-align: left;
}
.acc__panel  p{margin-bottom:30px}
.acc__panel ul{padding-left:0}
.acc__panel ul li{
	list-style:none;
  	display:flex;
    margin-bottom:15px;
    align-items: flex-start;
} 
.acc__panel ul li img{    width: 170px;margin-top:5px} 
.acc__panel ul li h4{
	font-weight: normal;
    font-size: 16px;
    line-height: 30px;
  	letter-spacing: 0px;
    padding-top: 10px;
    padding-left: 15px;
    color: #5b5a5a;
    margin-top: 0;
} 
#content{width:100% !important}
.c-container {
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.hair-tabs {
  margin: 10px; 
}

.hair-tabs .the-content {
  background-size: contain;
  padding: 30px;
  position: relative;
}

@media (max-width: 544px) {
  .hair-tabs .the-content {
  background-size: contain;
  padding: 10px;

 }
  
  .tab-container.active {
    padding: 20px 0px;
  }
  
}
    
    
.hair-tabs .the-content:after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  height:100px;
  bottom:-95px;
  background-size: cover;
  
}
.hair-tabs .the-content h1, .hair-tabs .the-content h2, .hair-tabs .the-content h3, .hair-tabs .the-content h4, .hair-tabs .the-content h5, .hair-tabs .the-content h6 {
  margin-bottom: 60px;
}

.hair-tabs .the-content h1 {
    color: #000;
    font-size: 36px;
  letter-spacing: 0px;
}

h2.text-center {
    max-width: 500px;
    margin: auto;
    color: #000;
  letter-spacing: 0px;
}

.hair-tabs .the-content p {
    font-size: 16px;
    color: #444;
  line-height: 1.5;
  display: inline-block;
}
.hair-tabs .tab-container[data-tabs="tab-1"] .the-content {
  
  margin-bottom: 0px;
 
 
}
.hair-tabs .tab-container[data-tabs="tab-1"] .the-content:after{height:180px;bottom:-175px;}
.curl-types {
  text-align: center;
}
.curl-types li {
  display: inline-block;
  margin: 10px 20px;
}
@media (max-width: 544px) {
  .curl-types li {
    margin: 5px 5px;
  }
}
.curl-types li [type="radio"]:checked,
.curl-types li [type="radio"]:not(:checked),
.curl-types li [type="checkbox"]:checked,
.curl-types li [type="checkbox"]:not(:checked)
{
  position: absolute;
  left: -9999px;
}
.curl-types li label {
  width: 100px;
  height: 100px;
  text-align: center;
  padding: 10px;
  display: table;
  vertical-align: middle;
  background: #dfe9ee;
  border-radius: 5px;
  cursor: pointer;
  /*box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4), 0px 5px 6px rgba(0, 0, 0, 0.2);*/
}

.curl-types li label:hover {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 5px 6px rgba(0, 0, 0, 0.1);
}
  
@media (max-width: 544px) {
  .curl-types li label {
    padding: 5px;
    width: 85px;
    height: 90px;
  }
}
.curl-types li label img {
  display: block;
  border: none !important;
  display: block;
  margin: auto;
  max-height:100px;
}
.curl-types li [type="radio"]:checked + label,.curl-types li [type="checkbox"]:checked + label {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3), 0px 5px 6px rgba(0, 0, 0, 0.2), 0px 0px 0 4px #d51c5c inset;
}

.tab-info {
  margin: 0 auto;
  max-width: 800px;
  visibility: hidden;
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  height: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  transform-origin: top;
}
.tab-info.active {
  visibility: visible;
  height: auto;
  opacity: 1;
  padding-top: 50px;
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.tab-info .info-title {
  color: #9d9d9d;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 18px;
  text-align: left;
  padding-left: 30px;
}

.hair-case li {
  margin: 10px;
  display: contents;
}
.hair-case li label {
    padding: 10px 15px;
    max-width: 100%;
    background: #dfe9ee;
    color: #000;
    border: none;
    -webkit-transition: background .5s ease,color .5s ease;
    -moz-transition: background .5s ease,color .5s ease;
    -o-transition: background .5s ease,color .5s ease;
    transition: background .5s ease,color .5s ease;
    -webkit-appearance: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: normal;
    letter-spacing: 1px;
    -webkit-appearance: none;
}
.hair-case li [type="radio"]:checked,
.hair-case li [type="radio"]:not(:checked),
.hair-case li [type="checkbox"]:checked,
.hair-case li [type="checkbox"]:not(:checked)
{
  position: absolute;
  left: -9999px;
}
.hair-case li [type="radio"]:checked + label ,.hair-case li [type="checkbox"]:checked + label{
  background: #fff;
  color: #d51c5c;
  border: 2px solid;
}

/*================================ Theme  =======================================*/
/*-----------------------------------------------------------------------------------/
* Theme Styles.
/*-----------------------------------------------------------------------------------*/

.gridlock #content .row{width:100%;margin-top:0px}
#breadcrumb{display:none}
.gridlock #content{margin-top:0}
.results-content {
  margin: 0 auto;
  visibility: hidden;
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  height: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  transform-origin: top;
}
.results-content.active {
  visibility: visible;
  height: auto;
  padding:40px 0;
  opacity: 1;
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.results-content h5{
      text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
      max-width: 500px;
    margin: auto;
  padding:0px 15px;
  letter-spacing: 0px;
}

.results-content strong{
    text-transform: uppercase;
    color: #d51c5c;
  	font-weight: 700;

}

.results-bottom p span ,.results-content h6 span{color: #d51c5c;}
.results-content h6{    
  text-align: center;
    font-size: 19px;
    margin-bottom: 70px;
    color: #000;
    padding:0px 15px;
}
/* .product-box{
      max-width: 550px;
    margin: auto;
  margin-bottom:30px;
  margin-top:40px;
      background: #fff;
    box-shadow: 0px 5px 9px rgba(0,0,0,0.15);
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 9px rgba(0,0,0,0.15);
    padding: 20px;
  
}
.product-box img{
	width: 150px;
    float: left;
    margin-right: 20px;
  margin-top:-60px;
}
.product-box .text{
	width: calc(100% - 170px);
    float: left;
    text-align:left;
}
.product-box .text h3{font-size:19px;}
.product-box .text .btn{
	padding: 8px 20px;
    min-width: auto;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 25px;
}

.product-box .text p   {color: #969696;} */
.iZsqzz{background:#fff}
/* 
.product-box:after {
   content: " "; 
   visibility: hidden;
   display: block;
   height: 0;
   clear: both;
} */
.product-box{
      max-width: 550px;
    margin: auto;
  margin-bottom:30px;
  margin-top:40px;
      text-align:center;
    padding: 20px;
  
}
.product-box img{
	width: 200px;
  max-width:100%;
  border:none;
}

.active img {
  border: none !important;
}


.product-box .text{
    text-align:center;
}
.product-box .text h3{font-size:19px;}
.product-box .text h4{margin:40px 0;color:#000;    letter-spacing: 0px;}
.product-box .text h4 a{color:#07527a!important}

.product-box .text .btn{
	    padding: 10px 20px;
    min-width: auto;
    text-align: center;
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 21px;
    margin-top: 25px;
    width: auto;
    background: #d51c5c;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
}

.product-box .text p   {color: #969696;}

.results-bottom{padding:10px 40px}
.results-bottom p{text-align:center;font-size:17px}
.action-btns{
}
.not-sure{;margin:40px 0;}
.not-sure a{color:#07527a!important;text-decoration: underline;}

.acc li label {
  width: 100px;
    height: 100px;
    text-align: center;
    padding: 10px;
    display: table;
    vertical-align: middle;
    background: #fff;
    border-radius: 5px;
    min-width: 110px;
}
.ov-back{
    background-repeat: no-repeat;
    font-size: 14px;
    text-decoration:underline;
    padding: 10px 15px;
    border-radius: 5px;
    color: #444 !important;
    background-size: contain;
    position: absolute;
    bottom: -10px;
    left: 15vw;
    z-index: 99;
}
@media (max-width: 544px) {
  .acc li label {
    padding: 5px;
    width: 85px;
    height: 90px;
  }
}
.acc li label img {
  display: block;
  border: none !important;
  display: block;
  margin: auto;
  max-height:100px;
}

@media(max-width:600px){
  .hair-tabs .the-content{padding-bottom: 20px;}
  .product-box{margin-left: 10px;margin-right: 10px;}
  .product-box img{margin-top: 0px;}
  .product-box .text{
	
  }
  .product-box .text h3{font-size:14px;}
  .product-box .text p{font-size:13px;} 
  .results-content h6,.results-content h5{text-align:center}
  .results-content h6{margin-bottom:20px}
  .results-content h5{font-size:19px}
  .btn {min-width: 160px;}
  .acc__panel ul li img{    width: 140px;} 
  .acc__panel ul li h4{font-size:12px;line-height:24px}
  .ov-back{left:25px}
}
.klaviyo-form{
display:none !important;
}
.nohand{
cursor: default !important;
}