* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Gotham';
  font-style: normal;
  src: url("../fonts/Gotham Black.woff2") format('woff2');
  font-display: swap
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  src: url("../fonts/Gotham BookItalic.woff2") format('woff2');
  font-display: swap
}

@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Gotham Book.woff2") format('woff2');
  font-display: swap
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Gotham Bold.woff2") format('woff2');
  font-display: swap
}
@font-face {
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gotham Medium.woff2") format('woff2');
  font-display: swap
}
@font-face {
  font-family: "croma";
  src: url("https://preprod-assets.croma.com/assets/fonts/croma.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "croma";
  src: url("https://preprod-assets.croma.com/assets/fonts/store_tnc.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap
}

body {
  background: #121212;
  font-family: 'Gotham';
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

header {
  position: relative;
}
header .header-wrapper {
  border-bottom: 1px solid #353535;
  min-height: 83px;
  position: fixed;
  width: 100%;
  z-index: 15;
  background: #121212;
  top: 0;
}
header .logo-wrapper {
  width: 125px;
  /* height: 40px; */
}
header .logo-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
header .menubar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}
header .menu-text{
  font-size: 15px;
  font-weight: 500;
  font-family: 'Gotham';
}
header .menubar-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
header .menubar a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
header .menubar a:hover,
header .menubar a:focus {
  color: #f1f1f1;
}
header .menubar .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
@media screen and (max-height: 450px) {
  header .menubar a {
    font-size: 20px;
  }
  header .menubar .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
header .menu-bar-text {
  cursor: pointer;
}

header .orders {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}
header .sign-in-cart {
  padding-right: 0px;
}
header .sign-in-cart .cart-text {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Gotham';
}
header .sign-in-cart .cart-badge i {
  color: #fff;
  font-size: 18px;
}
header .sign-in-cart .cart-badge {
  position: relative;
}
header .sign-in-cart .cart-badge .badge {
  position: absolute;
  top: -6px;
  right: -12px;
}
header .form-inline {
  width: 100%;
  height: 40px;
  position: relative;
}
header .form-inline .form-control {
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #333;
}
header .form-inline .form-control::placeholder {
  color: #b7b7b7;
}
header .form-inline button {
  width: 50px;
  height: 100%;
  background: #00e9bf;
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  font-size: 18px;
}
.content-wrapper {
  margin: 70px 0 60px;
  padding-top: 20px;
}
.content-wrapper .product-wrapper {
  color: #fff;
}
.content-wrapper .product-wrapper .carousel {
  width: 100%;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 0;
  width: 20%;
  height: 100%;
  overflow-y: auto;
}
.content-wrapper
  .product-wrapper
  .carousel
  .carousel-indicators::-webkit-scrollbar {
  width: 4px;
}
.content-wrapper
  .product-wrapper
  .carousel
  .carousel-indicators::-webkit-scrollbar-thumb {
  background-color: #747474;
}
.content-wrapper
  .product-wrapper
  .carousel
  .carousel-indicators::-webkit-scrollbar-track {
  background-color: #353535;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators li {
  height: 60px;
  min-height: 60px;
  width: 50%;
  border: 1px solid grey;
  margin: 0 auto;
  border: 3px solid rgba(204, 204, 204, 0.31);
  padding: 8px;
  background: transparent;
  border-radius: 4px;
  margin-bottom: 8px;
}
.content-wrapper
  .product-wrapper
  .carousel
  .carousel
  .carousel-indicators
  li:last-child {
  margin-bottom: 0;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators li img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.9;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators li.active {
  border: 3px solid #00e9bf;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators li.active img {
  opacity: 1;
}
.content-wrapper .product-wrapper .carousel .carousel-indicators li:hover img {
  opacity: 1;
}
.content-wrapper .product-wrapper .carousel .carousel-inner {
  width: 75%;
  margin: 0 0 0 auto;
}
.content-wrapper .product-wrapper .carousel .carousel-inner img {
  height: 600px;
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.content-wrapper
  .product-wrapper
  .carousel
  .carousel-inner
  .share-icons
  li
  .icons {
  font-size: 20px;
  cursor: pointer;
}
.content-wrapper .product-wrapper .carousel .carousel-arrows {
  position: absolute;
  top: -30px;
  left: 0;
  width: 25%;
  height: calc(100% + 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.content-wrapper .product-wrapper .carousel .carousel-control-next,
.content-wrapper .product-wrapper .carousel .carousel-control-prev {
  position: unset;
  font-size: 20px;
}
.content-wrapper .product-wrapper .sticky-content {
  position: sticky;
  height: 100vh;
  overflow-y: auto;
}
.content-wrapper .product-wrapper .sticky-content::-webkit-scrollbar {
  display: none;
}
.content-wrapper .product-wrapper .sticky-content .main-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .main-content-text{
  font-size: 12px;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .price-wrapper {
  border: 1px solid #353535;
  min-width: 568px;
  min-height: 55px;
  margin: 32px 55px 16px 0;
  padding: 8px 35px 7px 25px;
  border-radius: 8px;
}
.content-wrapper .product-wrapper .sticky-content .price-wrapper .price-value {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .price-wrapper .old-price {
  color: #9a9a9a;
  font-size: 12px;
  white-space: nowrap;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .price-wrapper .inclu-tax {
  font-size: 14px;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .emi-options span {
  font-size: 12px;
  font-family: 'Gotham';
}
.content-wrapper .product-wrapper .sticky-content .emi-options a {
  color: rgb(0, 192, 158);
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}

.content-wrapper .product-wrapper .sticky-content .savings-wrapper a {
  color: rgb(0, 192, 158);
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}

.content-wrapper .product-wrapper .sticky-content .offer-wrapper{
  padding-left: 16px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-bank-img {
  height: 20px;
  width: 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .extra-savings-text {
  margin-left: 7px;
  letter-spacing: 0.4px;
  font-size: 16px;
  font-weight: 700;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .extra-savings-text
  .view-all-offer {
  color: #00c09e;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .extra-savings-text
  .view-all-offer:hover {
  color: #49a5a2;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .shield-image {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.content-wrapper
  .product-wrapper
  .offer-wrapper
  .offer-details-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round {
  position: relative;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round
  label {
  background-color: transparent;
  border: 1px solid #ccc;
  cursor: pointer;
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round
  label:after {
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  content: "";
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  width: 11px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round
  input[type="checkbox"] {
  visibility: hidden;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round
  input[type="checkbox"]:checked
  + label {
  background-color: #00e9bf;
  border-color: #00e9bf;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .round
  input[type="checkbox"]:checked
  + label:after {
  opacity: 1;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .offer-details {
  margin-left: 10px;
  float: left;
  font-size: 13px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .offer-details
  .check-here-link,
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .offer-details-wrapper
  .offer-details
  .check-here-link:hover {
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .learn-more-link,
.content-wrapper
  .product-wrapper
  .sticky-content
  .offer-wrapper
  .learn-more-link:hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.content-wrapper .product-wrapper .sticky-content .delivery-wrapper {
  margin: 40px 0;
  border: 1px solid #353535;
  border-radius: 16px;
  padding: 15px 35px 15px 25px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .delivery-wrapper
  .delivery-data {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
}
.content-wrapper .product-wrapper .sticky-content .delivery-wrapper a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  color: #00c09e;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .delivery-wrapper
  .delivery-details {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .delivery-wrapper
  .delivery-details
  .pdp-icon-res {
  height: 25px;
  width: 25px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .delivery-wrapper
  .delivery-details
  .delivery-time {
  margin-left: 10px;
  font-size: 16px;
}
.content-wrapper .product-wrapper .sticky-content .delivery-wrapper ul li {
  margin-left: 10px;
  font-size: 14px;
}
.content-wrapper .product-wrapper .sticky-content .delivery-wrapper:last-child {
  border-color: #fff;
  padding: 24px 24px 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .extended-warranty {
  margin-bottom: 10px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .extended-warranty
  .extended-warranty-text {
  font-weight: 700;
  font-size: 16px;
  margin-right: 7px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .row {
  margin-bottom: 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-control {
  padding-left: 50px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-control
  .custom-control-input {
  width: 30px;
  height: 28px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-control
  .custom-control-label {
  font-size: 20px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-control
  .custom-control-label::before {
  background-color: transparent;
  border-color: #808080;
  width: 28px;
  height: 28px;
  top: 0;
  left: -48px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-radio
  .custom-control-input:checked
  ~ .custom-control-label::after {
  background: #49a5a2;
  width: 12px;
  height: 12px;
  top: 8px;
  left: -40px;
  border-radius: 50%;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  .custom-control
  label {
  font-weight: 500;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-option-wrapper
  span {
  font-weight: 500;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-text {
  font-size: 20px;
  margin-bottom: 30px;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .warranty-wrapper
  .warranty-text
  a {
  font-size: 20px;
  color: #00c09e;
  font-weight: 600;
}
.content-wrapper .product-wrapper .sticky-content .button-wrapper {
  margin-bottom: 10px;
}
.content-wrapper .product-wrapper .sticky-content .button-wrapper .buy-now-btn,
.content-wrapper
  .product-wrapper
  .sticky-content
  .button-wrapper
  .buy-now-btn:hover {
  margin-right: 1rem;
  width: 200px;
  min-height: 40px;
  font-size: 12px;
  background: #00e9bf;
  border-radius: 10px;
  border: 1px solid #00e9bf;
}
.content-wrapper
  .product-wrapper
  .sticky-content
  .button-wrapper
  .add-to-cart-btn,
.content-wrapper
  .product-wrapper
  .sticky-content
  .button-wrapper
  .add-to-cart-btn:hover {
  width: 200px;
  min-height: 40px;
  font-size: 12px;
  background: #121212;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
}
.content-wrapper .accordion-wrapper {
  margin-top: 70px;
}
.content-wrapper .accordion-wrapper .card {
  border: 1px solid #979797;
  background: #121212;
  margin-bottom: 15px;
  border-radius: 5px;
}
.content-wrapper .accordion-wrapper .card-header {
  position: relative;
}
.content-wrapper .accordion-wrapper .card .card-header h5 .cmn-btn {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}
.content-wrapper .accordion-wrapper .card .card-header h5 .cmn-btn:hover {
  color: #fff;
  text-decoration: none;
}
.content-wrapper
  .accordion-wrapper
  .card
  .card-header
  h5
  .cmn-btn:focus-visible {
  text-decoration: none;
  border: none;
  outline: 0;
  box-shadow: none;
}
.content-wrapper .accordion-wrapper .card .card-header h5 .cmn-btn:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.content-wrapper .accordion-wrapper .card-header .iconic {
  top: 24px;
  right: 36px;
  color: #fff;
  position: absolute;
}
.content-wrapper .accordion-wrapper .card .card-body {
  padding: 16px 6px 40px;
  color: #fff;
}
.content-wrapper .accordion-wrapper .card .card-body ul li {
  font-size: 14px;
}
.content-wrapper .accordion-wrapper .card .card-body ul li::marker {
  color: #00e9bf;
}
.content-wrapper .accordion-wrapper .card-body .btn-group button:focus {
  box-shadow: none;
}
.content-wrapper .accordion-wrapper .card-body .btn-group button:hover,
.content-wrapper .accordion-wrapper .card-body .btn-group button.active,
.content-wrapper .accordion-wrapper .card-body .btn-group button:focus {
  border-color: #00e9bf;
}
.content-wrapper .accordion-wrapper .card-body .overview-wrapper {
  margin-left: 20px;
  margin-top: 10px;
}
.content-wrapper .accordion-wrapper .card-body .view-more-wrapper {
  text-align: center;
}
.content-wrapper .accordion-wrapper .card-body .view-more-wrapper .view-more {
  color: #00e9bf;
  text-decoration: underline;
  font-size: 12px;
  text-decoration-thickness: 1px;
}
.content-wrapper .accordion-wrapper .card-body .specific-title {
  font-size: 18px;
  display: block;
}
.content-wrapper .accordion-wrapper .card-body .specific-subtitle {
  font-size: 14px;
  font-weight: 600;
}
.content-wrapper .accordion-wrapper .card-body .specific-desc {
  font-size: 13px;
}
.content-wrapper .accordion-wrapper .card-body .info-title {
  font-size: 14px;
}
.content-wrapper .accordion-wrapper .card-body .overview-wrapper ul li {
  font-size: 16px;
}
.content-wrapper .accordion-wrapper .card-body .info-desc {
  font-size: 20px;
}
.content-wrapper .accordion-wrapper .card-body .btn-group .btn-review {
  padding: 10px 20px;
  color: #ffffff;
  font-size: 12px;
  border: 1px solid #626262;
  max-width: 220px;
}
.content-wrapper .accordion-wrapper .card-body .review-content .rating li {
  color: #00e9bf;
  padding-left: 1px;
}
footer .footer-outer-wrapper {
  background: #1d1d1d;
}
footer .footer-wrapper .footer-list {
  padding-bottom: 14px;
}
footer .footer-wrapper .footer-list a {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.27;
  font-family: 'Gotham';
  display: inline-block;
}
/*footer .footer-wrapper .footer-list {*/
/*  margin-bottom: 28px;*/
/*}*/
footer .footer-wrapper {
  padding: 80px 0;
}
footer .footer-title {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
}
footer .form-inline {
  width: 396px;
  height: 50px;
  position: relative;
}
footer .form-inline .form-control {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 20px 42px 20px 26px;
  color: #333;
  border-radius: 12px;
}
footer .form-inline .form-control::placeholder {
  color: #b7b7b7;
}
footer .form-inline button {
  width: 60px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  color: #7a7979;
  font-size: 20px;
  border-radius: 0 12px 12px 0;
}
footer ul.social-icons {
  margin-bottom: 80px;
}
footer ul.social-icons li a {
  font-size: 24px;
  color: #fff;
}
footer .copyright-text {
  color: #fff;
  font-size: 14px;
}

.checkout-content-wrapper {
  margin: 70px 0 60px;
  padding-top: 70px;
}
.checkout-content-wrapper .cart-box {
  border: 1px solid #353535;
  border-radius: 14px;
  padding: 30px;
}
.checkout-content-wrapper .cart-box .cart-box-text h6 {
  font-size: 22px;
  color: #fff;
  font-weight: normal;
}
.checkout-content-wrapper .cart-box .cart-box-text span {
  font-size: 16px;
  color: #fff;
}
.checkout-content-wrapper .cart-box h6 {
  font-size: 22px;
  color: #fff;
}
.checkout-content-wrapper .cart-box button {
  min-width: 150px;
  min-height: 35px;
  background: #00e9bf;
  color: #103749;
  border-radius: 8px;
  border: 1px solid #00e9bf;
  font-size: 13px;
  padding: 0px 12px;
}
.checkout-content-wrapper .card {
  border: 1px solid #353535;
  border-radius: 14px;
}
.checkout-content-wrapper .card .card-body .product-img {
  width: 108px;
  height: 108px;
}
.checkout-content-wrapper .card .card-body .product-img img {
  height: 100%;
  width: auto;
}
.checkout-content-wrapper .card .card-body .product-details h5 {
  font-size: 18px;
  color: #fff;
}
.checkout-content-wrapper .card .card-body .product-details ul li {
  color: #fff;
  font-size: 16px;
}
.checkout-content-wrapper .card .card-body .product-details ul li small {
  font-size: 14px;
}
.checkout-content-wrapper .card .card-body .product-details h6 {
  font-size: 20px;
  color: #fff;
}
.checkout-content-wrapper .card .card-body .product-details h6 sup {
  font-size: 12px;
}
.checkout-content-wrapper .card .card-body .product-details h6 strike {
  font-size: 14px;
  color: #9a9a9a;
  margin-left: 14px;
}
.checkout-content-wrapper .card .card-body .delete-option {
  color: #00e9bf;
  font-size: 22px;
}
.checkout-content-wrapper .service-block {
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  padding: 10px 0 10px 40px;
}
.checkout-content-wrapper .service-block i {
  color: #fff;
  font-size: 18px;
}
.checkout-content-wrapper .service-block span {
  font-size: 20px;
  color: #fff;
  margin-left: 20px;
}
.checkout-content-wrapper .delivery-box {
  border: 1px solid #353535;
  border-radius: 8px;
}
.checkout-content-wrapper .delivery-box .card-body {
  padding: 16px;
}
.checkout-content-wrapper .delivery-box .card-body h6 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 24px;
}
.checkout-content-wrapper .delivery-box .card-body h6 span {
  color: #00e9bf;
}
.checkout-content-wrapper .delivery-box .card-body h6 a {
  color: #00e9bf;
  font-size: 20px;
  text-decoration: underline;
  font-weight: 300;
  text-decoration-thickness: 1px;
}
.checkout-content-wrapper .delivery-box .card-body .custom-control {
  padding-left: 50px;
}
.checkout-content-wrapper
  .delivery-box
  .card-body
  .custom-control
  .custom-control-input {
  width: 24px;
  height: 22px;
}
.checkout-content-wrapper
  .delivery-box
  .card-body
  .custom-control
  .custom-control-label::before {
  background-color: transparent;
  border-color: #808080;
  width: 22px;
  height: 22px;
  top: 0;
  left: -48px;
}
.checkout-content-wrapper
  .delivery-box
  .card-body
  .custom-radio
  .custom-control-input:checked
  ~ .custom-control-label::after {
  background: #49a5a2;
  width: 12px;
  height: 12px;
  top: 5px;
  left: -43px;
  border-radius: 50%;
}
.checkout-content-wrapper .delivery-box .card-body .custom-control label {
  font-weight: 500;
  color: #fff;
  font-size: 15px;
}
.checkout-content-wrapper .delivery-box .card-body .form-inline {
  width: 100%;
  height: 40px;
  position: relative;
}
.checkout-content-wrapper .delivery-box .card-body .form-inline .form-control {
  width: 100%;
  height: 100%;
  font-size: 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #f8f8f8;
}
.checkout-content-wrapper
  .delivery-box
  .card-body
  .form-inline
  .form-control::placeholder {
  color: #b7b7b7;
}
.checkout-content-wrapper .delivery-box .card-body .form-inline button {
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  color: #7a7979;
  font-size: 14px;
  font-weight: bold;
  border-radius: 0 8px 8px 0;
}
.checkout-content-wrapper .payment-box {
  border: 1px solid #353535;
  border-radius: 8px;
}
.checkout-content-wrapper .payment-box .card-body h6 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: normal;
}
.checkout-content-wrapper .payment-box .card-body .payment-text small {
  font-size: 14px;
  color: #fff;
}
.checkout-content-wrapper
  .payment-box
  .card-body
  .payment-text
  small
  .highlight-text {
  color: #00e9bf;
}
.checkout-content-wrapper .payment-box .card-body .payment-text span {
  font-size: 14px;
  color: #fff;
}
.checkout-content-wrapper .payment-box .card-body .total-price {
  border-top: 1px solid #353535;
  padding: 15px 0 0;
  margin: 6px 0 0;
}
.checkout-content-wrapper .payment-box .card-body .total-price span {
  color: #fff;
  font-size: 14px;
}
.checkout-content-wrapper
  .payment-box
  .card-body
  .total-price
  span:first-child {
  font-size: 14px;
}
.checkout-content-wrapper .checkbox-wrapper .round {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 4px;
}
.checkout-content-wrapper .checkbox-wrapper .round label {
  background-color: transparent;
  border: 0.1rem solid #979797;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: absolute;
  width: 24px;
}
.checkout-content-wrapper .checkbox-wrapper .round label:after {
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  content: "";
  height: 5px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 10px;
  transform: rotate(-45deg);
  width: 12px;
}
.checkout-content-wrapper .checkbox-wrapper .round input[type="checkbox"] {
  visibility: hidden;
  width: 30px;
  height: 30px;
}
.checkout-content-wrapper
  .checkbox-wrapper
  .round
  input[type="checkbox"]:checked
  + label {
  background-color: #00e9bf;
  border-color: #00e9bf;
}
.checkout-content-wrapper
  .checkbox-wrapper
  .round
  input[type="checkbox"]:checked
  + label:after {
  opacity: 1;
}
.checkout-content-wrapper .checkbox-wrapper span {
  font-size: 14px;
  color: #ffffff;
  margin-left: 10px;
}
.checkout-content-wrapper .checkbox-wrapper span i {
  color: #ffffff;
}
.checkout-content-wrapper .checkbox-wrapper .btn {
  background: #00e9bf;
  height: 34px;
  width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #103749;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #00e9bf;
}

.contact-us-detail i {
  color: #1963b7;
}

.contact-us-detail .find-more {
  border-radius: 3rem;
  background: transparent;
  border: 1px solid #dfdfdf;
  height: 2.5rem;
  font-size: 0.75rem;
  line-height: 1.33333;
  padding: 0 1.5rem;
  color: #ffffff;
}
.contact-us-detail .find-more:hover {
  border-color: #929292;
}

@media screen and (max-width: 1200px) {
  .content-wrapper .product-wrapper .carousel .carousel-indicators {
    height: 100%;
  }
  footer .form-inline {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .content-wrapper .product-wrapper .sticky-content .price-wrapper {
    width: 100%;
  }
  .content-wrapper
    .product-wrapper
    .sticky-content
    .delivery-wrapper:last-child {
    padding: 20px;
  }
  .content-wrapper .accordion-wrapper .card .card-body {
    padding: 0 20px 20px;
  }
  .content-wrapper .accordion-wrapper .card .card-header h5 .cmn-btn {
    font-size: 16px;
  }
  .content-wrapper .accordion-wrapper .card-body .specific-title {
    font-size: 22px;
  }
  .content-wrapper .accordion-wrapper .card-body .overview-wrapper ul li {
    font-size: 18px;
  }
  .content-wrapper .accordion-wrapper .card-body .info-desc {
    font-size: 18px;
  }
  footer .form-inline {
    width: 100%;
  }
  footer ul.social-icons {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .content-wrapper .product-wrapper .carousel .carousel-inner {
    padding-left: 16px;
  }
  .content-wrapper .product-wrapper .carousel .carousel-arrows {
    top: -40px;
    height: calc(100% + 80px);
  }
  .checkout-content-wrapper .card .card-body .product-details h5 {
    font-size: 18px;
  }
  .checkout-content-wrapper .card .card-body .product-details ul li {
    font-size: 16px;
  }
  .checkout-content-wrapper .card .card-body .product-details ul li small {
    font-size: 14px;
  }
  .checkout-content-wrapper .card .card-body .product-details h6 {
    font-size: 20px;
  }
  .checkout-content-wrapper .service-block i {
    font-size: 14px;
  }
  .checkout-content-wrapper .service-block span {
    font-size: 14px;
    margin-left: 10px;
  }
  .checkout-content-wrapper .delivery-box .card-body h6 {
    font-size: 18px;
  }
  .checkout-content-wrapper .delivery-box .card-body .custom-control label {
    font-size: 15px;
  }
  .checkout-content-wrapper .delivery-box .card-body .form-inline {
    height: 40px;
  }
  .checkout-content-wrapper
    .delivery-box
    .card-body
    .form-inline
    .form-control {
    padding: 6px 20px;
    font-size: 14px;
  }
  .checkout-content-wrapper .delivery-box .card-body .form-inline button {
    font-size: 14px;
  }
  .checkout-content-wrapper .payment-box .card-body h6 {
    font-size: 24px;
  }
  .checkout-content-wrapper .payment-box .card-body .payment-text small,
  .checkout-content-wrapper
    .payment-box
    .card-body
    .total-price
    span:first-child {
    font-size: 14px;
  }
  .checkout-content-wrapper .payment-box .card-body .payment-text span,
  .checkout-content-wrapper .payment-box .card-body .total-price span {
    font-size: 16px;
  }
  .checkout-content-wrapper .checkbox-wrapper span {
    font-size: 12px;
  }
  .checkout-content-wrapper .checkbox-wrapper .btn {
    font-size: 12px;
    padding: 9px 15px;
  }
  .content-wrapper .product-wrapper .carousel .carousel-indicators {
    height: 300px;
  }
  .content-wrapper .product-wrapper .carousel .carousel-inner img {
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .content-wrapper .product-wrapper .carousel .carousel-indicators {
    width: 25%;
  }
  header .sign-in-cart {
    padding: 0;
  }
  .checkout-content-wrapper .service-block {
    padding: 14px;
  }
}

