/*basic reset*/
* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  /* background-color: #f5f3ef; */
  background-color: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #000;
}

.vcm-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px 15px;
}
.vcm-wrapper h1.page-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}
/* Steps */
.steps {
  margin: 0px auto 15px;
}
.steps ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
.steps ul li {
  display: inline-block;
  position: relative;
  width: 75px;
}
.steps ul li:before {
  content: counter(step);
  counter-increment: step;
  display: block;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  border: 1px solid black;
}
.steps ul li:after {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #000;
  z-index: -1;
  /*put it behind the numbers*/
}
.steps ul li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.steps ul li.active:before{
  background: black;
  color: #fff;
}
.steps ul li.active:after {
  background: #fff;
  color: black;
  border: 1px solid black;
}

.section-wrapper {
  position: relative;
  width: 98%;
  margin: 0 auto;
}
section {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  background: #fff;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
section:not(:first-of-type) {
  display: none;
}
.section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Start of Section One */
h2.page-subtitle {
  font-size: 28px;
  margin: 0px auto 15px;
}
.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.upload-pic a {
  display: inline-block;
  position: relative;
  font-size: 11px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.65px;
  line-height: 52px;
  min-width: 253px;
  height: 51px;
  padding: 0px;
  background-color: #f4f3ef;
  border: none;
}
.upload-pic a svg {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -8px;
  height: 16px;
}
.section-one-container {
  display: flex;
  width: 100%;
  margin: 30px auto 0;
}
.section-one-photo {
  margin: 0 20px;
  display: inline-block;
  width: 30%;
  vertical-align: top;
  text-align: center;
}

.section-one-photo img {
  display: block;
  text-align: center;
  margin: 0 auto 10px 20px;
  width: calc(50% - 20px);
  float: left;
}
.section-one-instruction {
  display: inline-block;
  width: 40%;
  text-align: center;
  vertical-align: top;
}
.do-text {
  display: inline-block;
  color: #35ad77;
  padding: 5px;
  margin: 0 auto 15px;
  background-color: #e8fff5;
}
.do-text span {
  display: inline-block;
  margin-left: 5px;
}
.dont-text {
  display: inline-block;
  color: #ff6489;
  padding: 5px;
  margin: 0 auto 15px;
  background-color: #ffeff2;
}
.dont-text span {
  margin-left: 5px;
}
.section-one-instruction ul {
  list-style-type: none;
  padding: 30;
  text-align: left;
}

.section-one-instruction ul li {
  color: #9f9f9f;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  list-style: auto;
}
.live-camera button {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  min-width: 253px;
  height: 51px;
  outline: none;
  padding: 16px 40px;
  margin: 0 0 0 15px;
  cursor: pointer;
  border: none;
}
.live-camera button svg {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -8px;
  height: 16px;
}
/* End of Section One */

/* Start of Section Two */
.step2-heading {
  font-size: 24px;
  margin: -10px auto 0;
}
.steps-photo {
  margin: 40px auto;
}
.step2-buttons {
  text-align: center;
  margin: 10px auto;
}
.step2-buttons img {
  max-height: 500px;
}
.step2-buttons button {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 253px;
  height: 51px;
  background-color: #000;
  margin: 10px auto 0;
  cursor: pointer;
  border: none;
  outline: none;
}
.back-arrow {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  color: #000;
}
.step2-photo img {
  max-height: 500px;
}

/* End of Section Two */

/* Start of Section Three */

.color-option-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto;
}
.color-option {
  background-color: #f4f3ef;
  padding: 20px 30px;
  display: inline-block;
  margin-right: 20px;
}
.color-option:last-child {
  margin-right: 0;
}
.color-title {
  font-size: 15px;
  text-align: center;
  margin-bottom: 15px;
}
.color-img {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 15px auto;
}
.color-img img {
  border-radius: 100%;
}
.select-color {
  text-align: center;
}
.select-color button {
  display: inline-block;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.65px;
  line-height: 38px;
  min-width: 117px;
  height: 37px;
  padding: 0px;
  margin-bottom: 15px;
  background-color: #000000;
  border: none;
  cursor: pointer;
}
.step3-instruction {
  display: inline-block;
  text-align: left;
  margin: 0 auto 20px;
}
.step3-instruction ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.step3-instruction ul li {
  font-size: 15px;
  color: #6e6e6e;
  padding-bottom: 5px;
}
.step3-instruction ul li span.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: top;
}
.step3-instruction ul li span.icon svg {
  position: relative;
  top: 2px;
}
.step3-customer-service {
  font-size: 15px;
  text-align: center;
  margin: 32px auto 16px;
  max-width: 500px;
}
.step3-customer-service a {
  text-decoration: underline;
  color: #d1728a;
}
/* End of Section Three */

/* Start of Section Four */
.match-color {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  max-width: 500px;
  margin: 20px auto 40px; */
  float: left;
  width: 100%;
  margin-left: 70px !important;
}
.match-color img {
  /* vertical-align: middle;
  height: 100px;
  margin: 5px 0; */
  height: 50px;
  border-radius: 25px;
  float: left;
  margin-right: 10px;
}
.match-color span {
  font-size: 15px;
  float: left;
  margin-top: 13px;
}
.match-color div {
  font-size: 15px;
  float: left;
  margin-top: 13px;
}
.step5-match-color button {
  display: inline-block;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  min-width: 150px;
  height: 30px;
  padding: 0px;
  background-color: #000000;
  border: none;
  float: right;
  margin-right: 45px;
}
.hair-type-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 40px auto 0;
}
.hair-type-container button {
  font-size: 14px;
  color: #000;
  text-align: center;
  line-height: 38px;
  letter-spacing: 1.65px;
  min-width: 220px;
  height: auto;
  padding: 5px;
  margin: 0 auto 30px;
  background: #f4f3ef;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
/* End of Section Four */

/* Start of Section Five */
.step5-match-color {
  margin: 0px 0px;
  font-weight: 500;
}
.collection-selection-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 20px auto 0;
}
.collection-photo {
  width: 50%;
  text-align: center;
}
.collection-photo img {
  max-width: 100%;
  max-height: 500px;
  /* max-width: 100%;
  width: 100%; */
}
.reset-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}
.reset-button button {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 12px;
  color: #000;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  margin: 0 5px;
  padding: 6px 15px;
  cursor: pointer;
  border: 1px solid #000;
  outline: none;
}
.reset-button img {
  margin-right: 5px;
  width: auto;
}
.collection-listing {
  /* width: calc(50% - 10px);
  margin: 0 0 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow-y: scroll; */
  width: 49%;
  margin: 0 0 0 10px;
  height: 500px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow-y: scroll;
}
/* width */
.collection-listing::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.collection-listing::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.collection-listing::-webkit-scrollbar-thumb {
  background: #000;
}

/* Handle on hover */
.collection-listing::-webkit-scrollbar-thumb:hover {
  background: #000;
}
.collection-listing .accordion-button::after {
  position: absolute;
  left: 15px;
}
.collection-listing .accordion-button {
  padding: 1rem 1.25rem 1rem 3rem;
}

.collection-listing .accordion-button {
  background-color: #fff;
}
.collection-listing .accordion-button:focus {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
}
.collection-listing .accordion-button span.ext-img {
  display: inline-block;
  width: 50px;
  margin-right: 15px;
}
.collection-listing .accordion-button span.ext-img img {
  border-radius: 50%;
}
.collection-listing .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #f7f7f7;
}
.list-title {
  display: flex;
  align-items: center;
  margin: 10px;
}
.ext-img {
  width: 75px;
  margin-right: 10px;
}
.list-title span:last-child {
  font-size: 16px;
  font-weight: 600;
}
.extenstion-title {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
}
.volume-container {
  border: 0 solid #d8d8d8;
  padding: 10px 0;
}
.volume-title {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: underline;
}
.volume-listing {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 10px;
}
.volume-listing ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.volume-listing ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
  padding: 10px;
}
.volume-listing ul li:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}
.volume-listing ul li.active {
  background-color: #ededed;
}
.volume-listing ul li:last-child {
  border-bottom: 0 solid #d8d8d8;
}
.volume-listing ul li img {
  max-width: 75px;
}
.volume-description {
  display: flex;
  width: 100%;
  margin-left: 15px;
  justify-content: space-between;
  align-items: center;
}
.vlume-title {
  margin-right: 15px;
  /* display: flex;
  justify-content: space-between; */
}
.vlume-title p {
  /* margin-bottom: 0;
  max-width: 400px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
}
.vlume-title span {
  font-weight: 600;
}

.select-collection {
  position: relative;
  display: flex;
  padding: 0px 20px 0 0;
  margin: 0 10px 10px 0;
  background-color: #f4f3ef;
  cursor: pointer;
}
.select-collection .collection-img {
  text-align: center;
  max-height: 100px;
  max-width: 200px;
}
.select-collection .collection-img img {
  max-height: 100%;
}
.collection-detail {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.collection-title-price {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0;
}
.collection-description {
  font-size: 16px;
  margin: 0 0 20px;
}

/* End of Section Five */

/* Cart */
.cart-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.cart-container {
  background: #ffffff;
  position: absolute;
  top: 0;
  z-index: 9999;
  right: -415px;
  height: 100%;
  width: 415px;
  overflow-y: scroll;
}
span.rightside-close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 99;
  width: 20px;
  cursor: pointer;
}
.cart-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 20px;
}
.free-shipping-title {
  padding: 8px 0;
  border-top: 1px solid #e9e9e9;
  margin-bottom: 0;
  text-align: center;
}
.choose-free-gift {
  margin: 10px 15px;
}
.gifts-container {
  white-space: nowrap;
  height: 260px;
  overflow-y: hidden;
}
.gift-tile {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 130px;
  padding-bottom: 16px;
  margin-right: 15px;
}
.gift-tile p {
  white-space: normal;
  font-size: 14px;
  text-align: center;
  margin: 5px auto;
}
.gift-tile button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #323232;
  outline: none;
  font-weight: 600;
  text-transform: uppercase;
  width: 111px;
  margin: 5px 10px;
  height: 40px;
  background: none;
  border: 2px solid #323232;
}
.cart-items-container {
  margin: 15px;
}
.cart-item {
  padding: 15px 0;
  border-bottom: 1px solid #e9e9e9;
  white-space: nowrap;
}
.item-img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.item-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.item-details {
  display: inline-block;
  vertical-align: middle;
}
.prod-title {
  font-size: 16px;
  white-space: normal;
  width: 260px;
}
.item-counter-price {
  margin: 10px 0;
}
.item-counter {
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
  border: 1px solid #e9e9e9;
  vertical-align: middle;
}
.item-counter a {
  position: relative;
  display: inline-block;
  font-size: 1.42383rem;
  line-height: 0;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
.item-counter a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.item-counter input {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  text-align: center;
  width: 23px;
  height: 30px;
  margin-bottom: 0;
  border: none;
}
.item-price {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  white-space: nowrap;
}
.in-stock {
  font-size: 14px;
  color: #01c534;
}
.item-remove {
  font-size: 12px;
  text-align: right;
}
.recommended-container {
  padding: 15px;
  background-color: #f5f3ef;
  width: 100%;
}
.recommender-slider {
  width: 100%;
}
.recommend-item {
  white-space: nowrap;
  cursor: pointer;
}
.recommend-title {
  font-size: 18px;
  margin-bottom: 25px;
}

.recommend-img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.recommend-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #6e6e6e;
}
.recommend-detail {
  display: inline-block;
  vertical-align: middle;
}
button.recommend-add-button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #323232;
  outline: none;
  font-weight: 600;
  text-transform: uppercase;
  width: 111px;
  margin: 5px 15px;
  height: 40px;
  background: none;
  border: 2px solid #323232;
}
.recommender-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.recommender-slider .slick-dots li button:before {
  font-size: 12px;
}
.faqs {
  padding: 0 15px;
  font-size: 12px;
}
.faqs .accordion-button {
  font-size: 12px;
}
.faqs .accordion-button::after {
  background-image: url("../images/plus.png");
  background-size: 15px;
}
.faqs .accordion-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}
.faqs .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.png");
  background-size: 15px;
}

.faqs .accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
}
.faqs .accordion-button:focus {
  box-shadow: none;
}
.faqs .accordion-body ul {
  list-style-type: circle;
}
.faqs .accordion-body ul li a {
  text-decoration: underline;
}
.shipping-features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 175px 0;
  border-bottom: 1px solid #dee2e6;
}
.shipping-feature {
  margin: 0 10px;
  text-align: center;
}
.shipping-feature svg,
.shipping-feature img {
  width: 22px;
  margin-bottom: 10px;
}
.shipping-feature p {
  font-size: 12px;
  text-align: center;
}
.cart-footer {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  width: 400px;
  height: 150px;
  padding: 15px 25px;
  border-top: 1px solid #e9e9e9;
  background: #ffffff;
  transform: translate3d(0, 0, 0);
}
.cart-subtotal-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
.cart-checkout-button {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  width: 100%;
  margin: 10px auto 0;
  padding: 1rem 2.36859rem;
  transition: all 150ms;
  border-radius: 0;
  background-color: #cd627d;
  border: 2px solid #cd627d;
  outline: none;
}

/* Place Order Page */
.header {
  padding-left: 1.333rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 6;
  line-height: 0;
  height: 60px;
}
.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.header-logo svg {
  width: 77px;
}
.place-order-container {
  margin: 40px auto;
}
.change-language {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.change-language span {
  font-size: 14px;
  margin-right: 20px;
}
.change-language select {
  min-width: 120px;
  color: #000;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
}

/* Order Summary */
.orders-listing {
  border-bottom: 1px dashed #d0d0d0;
}
.order-summary-header {
  padding: 10px 15px;
  border-bottom: 1px solid #a4a4a4;
  font-size: 16px;
}
.product-img {
  min-height: 150px;
  padding: 25px 0 0;
  text-align: center;
}

.product-img img {
  max-width: 100px;
}
.product-title {
  font-weight: 600;
}
.listing-qty {
  display: flex;
  align-items: center;
  height: 100%;
}
.product-qty-total {
  display: none;
  margin-top: 5px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .product-qty-total {
    display: block;
  }
}

.billing-delivery-address {
  display: flex;
  margin: 40px 0;
}
.billing-address {
  width: 50%;
  margin-right: 30px;
}
.billing-address form label {
  font-size: 14px;
}
.billing-title {
  border-bottom: 1px solid #a4a4a4;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.delivery-address {
  width: 50%;
}
.subscribe-label {
  font-size: 14px;
}
.form-check-input:checked,
.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}
.form-check-input:focus,
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
}
.addressLabel label {
  font-size: 14px;
}
.shipping-methods {
  margin: 20px 0 40px;
}
p.method-prepayment {
  font-size: 12px;
  color: #999;
  margin-left: 25px;
  margin-top: 3px;
}
p.business-days {
  font-size: 12px;
  color: #999;
}
.methods-container {
  display: flex;
  justify-content: space-between;
}
.payment-title {
  border-bottom: 1px solid #a4a4a4;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.payment-title-container {
  display: flex;
  justify-content: space-between;
}
.payment-method-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.payment-method-images span {
  display: inline-block;
  width: 80px;
  border: 1px solid #d8d8d8;
  text-align: center;
  padding: 20px 0;
}
.methods-logo {
  margin: 40px auto;
}
.methods-logo span {
  margin: 0 20px;
}
.what-this {
  display: flex;
  align-items: center;
  height: 38px;
}
.what-this span:nth-child(1) {
  margin-right: 10px;
  text-decoration: underline;
  cursor: help;
}
.terms-conditions {
  font-size: 10px;
  margin: 60px 0 40px;
}
.pay-button {
  margin: 0 0 40px;
}
.pay-button button {
  background-color: #cd627d;
  border: 2px solid #cd627d;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
  padding: 0.8rem 1.7rem;
  font-size: 0.9rem !important;
  max-height: 50px;
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  height: auto;
  flex-flow: row nowrap;
  align-items: center;
}
.gift-cards-title {
  font-size: 14px;
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 15px;
}
.gift-cards-title p {
  margin-bottom: 0;
}
.apply-gift-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.card-number-input {
  width: 50%;
}
.apply-gift-card button {
  background-color: #cd627d;
  border: 2px solid #cd627d;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  padding: 5px 25px;
  font-size: 14px;
  font-weight: 500;
}
.gift-card-hide {
  display: none;
}
.coupon-code {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
.coupon-number-input {
  width: 50%;
  margin-right: 15px;
}
.coupon-number-input .form-control {
  padding: 15px 10px;
  font-size: 14px;
  border-radius: 5px;
}
.coupon-code button {
  background-color: #cd627d;
  border: 2px solid #cd627d;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
}
.billing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin: 10px 0;
}
.item-title {
  font-size: 14px;
}
.item-amount {
  font-size: 16px;
  font-weight: bold;
}
.billing-summary {
  font-size: 12px;
  color: #888;
  margin: 40px 0;
}
.choose-model-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 30px 0 10px;
}
.model-back {
  position: absolute;
  top: -35px;
  color: #000;
}
.model-box {
  position: relative;
  margin: 10px;
  width: 22%;
  height: 400px;
  border: 1px solid #d8d8d8;
  cursor: pointer;
}
.model-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  padding: 5px;
  margin: auto;
}
.tryiton {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tryiton button {
  display: inline-block;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  min-width: 90px;
  height: 30px;
  padding: 0px;
  background-color: #000000;
  border: none;
  cursor: pointer;
}
.brandlogo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}
.modal-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.canvas-container img {
  max-height: 500px;
}
.model-buttons {
  margin: 15px auto 10px;
}
.model-buttons button {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #fff !important;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 100px;
  height: 35px;
  background-color: #000;
  margin: 10px auto 0;
  cursor: pointer;
  border: none;
  outline: none;
  opacity: 1;
}
.model-buttons button:hover{
  background-color: #fff;
  color: #000!important;
  border: 1px solid black;
}
.modal-content {
  border-radius: 0;
}
.modal-header {
  border-bottom: 0;
}

@media (max-width: 1600px) {
  .model-box {
    height: 300px;
  }
}
@media (max-width: 1240px) {
  .model-box {
    width: 22%;
    height: 250px;
  }
}
@media (max-width: 1024px) {
  .model-box {
    width: 22%;
    height: 200px;
  }
}

@media (max-width: 991px) {
  .section-one-container {
    display: block;
    width: 100%;
  }
  .section-one-instruction {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .section-one-photo {
    display: block;
    text-align: center;
    margin: 30px auto 40px;
    width: 100%;
  }
  .section-one-instruction {
    display: block;
    max-width: 100%;
  }
  .dont-text {
    display: inline-block;
  }
  .buttons-container {
    display: block;
  }
  .live-camera button {
    margin: 15px 0 0 0;
  }
  .color-option-container {
    display: block;
    text-align: center;
  }
  .color-option {
    margin-bottom: 20px;
  }
  .collection-selection-container {
    display: block;
  }
  .collection-photo {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .collection-listing {
    width: 100%;
    margin: 0;
  }
  .model-box {
    width: 45%;
  }
  .billing-delivery-address {
    display: block;
    margin: 0 45px 0 15px;
  }
  .billing-address {
    width: 100%;
    margin: 0 15px;
  }
  .delivery-address {
    width: 100%;
  }
}

@media (max-width: 892px) {
  .color-option {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
  .volume-listing ul li {
    flex-direction: column;
  }
  .volume-description {
    flex-direction: column;
  }
  .vlume-title {
    margin: 10px auto;
  }
  .vlume-title p {
    margin-bottom: 0;
  }
  .tryiton {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .model-box {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .reset-button {
    flex-direction: column;
  }
  .reset-button button {
    margin: 0 0 10px 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 414px) {
  .step2-buttons button {
    min-width: 200px;
  }
  .color-option {
    padding: 10px 15px;
  }
  .color-img {
    width: 100px;
    height: 100px;
  }
  .step2-heading {
    font-size: 16px;
  }
  .model-box {
    display: inline-block;
    position: relative;
    margin: 10px;
    width: 200px;
    height: 250px;
    border: 1px solid #d8d8d8;
    cursor: pointer;
  }
}

@media (max-width: 376px) {
  .hair-type-container button {
    min-width: 150px;
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  .steps ul li {
    width: 60px;
  }
  .upload-pic a {
    min-width: 200px;
  }
  .live-camera button {
    min-width: 200px;
  }
  .step2-buttons button {
    min-width: 150px;
  }
}
/* loader */

.loader-wrapper {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.loader-container {
  animation: spin 1.2s linear infinite;
}

.loader {
  width: 14px;
  height: 14px;
  transform: rotate(75deg);
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 14px;
  animation: load 1.2s linear infinite;
}

.loader::before {
  box-shadow: 18px 18px #000, -18px -18px #000;
}

.loader::after {
  box-shadow: 18px 18px #c4637d, -18px -18px #c4637d;
  transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes load {
  50% {
    height: 42px;
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
