.header.header-1:not(.fixed) {
  -webkit-box-shadow: none;
  box-shadow: none;
}



.header.header-1:not(.fixed) .wrapper .menu-link {
  color: #02102C;
}


.header.header-1:not(.fixed) .account-toggle img,
.header.header-1:not(.fixed) .cart-toggle img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header.header-1:not(.fixed) .cart-toggle .badges {
  /* background: #FFC72C; */
  color: #fff;
}

.header {

  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 0.8rem 2.4rem #00000012;
  box-shadow: 0px 0.8rem 2.4rem #00000012;
}

.header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 0.8rem 2.4rem #00000012;
  box-shadow: 0px 0.8rem 2.4rem #00000012;
  background: #fff;
  width: 100%;
}

.header.fixed .wrapper {
  /* height: 5rem; */
}

.header.fixed .wrapper .menu-item {
  /* height: 10rem;
  line-height: 10rem; */
}

.header.fixed .wrapper .logo {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* max-width: 10rem; */
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;

}

.header .logo {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;


}

.header .logo img {
  width: 100%;
}

.header .cart {
  margin-left: 2rem;
}

.header .cart,
.header .account {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header .cart-toggle,
.header .account-toggle {
  display: block;
  position: relative;
  cursor: pointer;
  /* height: 2.3rem; */
}

.header .cart-toggle img,
.header .account-toggle img {
  width: auto;
  height: 100%;
}

.header .account {
  margin-left: auto;
}



.header .cart-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-right: 1.5rem;
}

.header .cart-toggle img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header .cart-toggle .badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: #F9F6F7;
  width: 2.6rem;
  height: 2.6rem;
  color: #FF971D;
  font-size: 1.4rem;
  font-weight: bold;
}

@media (min-width: 992px) {
  .header .menu {
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .header .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 10rem;
  }

  .header .menu-item:not(:last-child) {
    margin-right: 3rem;
  }

  .header .menu-item .icon-dropdown-2 {
    margin-left: 1.5rem;
    font-size: 2.8rem;
  }

  .header .menu-item .menu-link {
    position: relative;
  }



  .header .menu-item.has-dropdown {
    position: relative;
  }

  .header .menu-item.has-dropdown>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .menu-item.has-dropdown .icon-dropdown {
    display: none;
  }

  .header .menu-item.has-dropdown .nav-sub,
  .header .menu-item.has-mega .sub-menu {
    position: absolute;
    top: calc(100% + 3rem);
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: 0px 0.3rem 0.8rem #0000001A;
    box-shadow: 0px 0.3rem 0.8rem #0000001A;
    background: #fff;
    width: 24.3rem;
    line-height: 1.3;
    list-style: none;
  }

  .header .menu-item.has-dropdown .nav-sub li {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 2rem;
    font-size: 2.2rem;
    font-weight: 500;
  }

  .header .menu-item.has-dropdown .nav-sub .sub-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .menu-item.has-dropdown .nav-sub .sub-item:hover, .header .menu-item.has-dropdown .nav-sub .sub-item.active {
    background: #E2F5FF;
  }

  .header .menu-item.has-dropdown .nav-sub .sub-item:hover .sub-link, .header .menu-item.has-dropdown .nav-sub .sub-item.active .sub-link {
    color: #0D4E96;
  }

  .header .menu-item.has-dropdown .nav-sub .sub-item:hover .icon-dropdown:before, .header .menu-item.has-dropdown .nav-sub .sub-item.active .icon-dropdown:before {
    content: "󰅃";
  }

  .header .menu-item.has-dropdown:hover .nav-sub,
  .header .menu-item.has-mega:hover .sub-menu {
    top: calc(100% + 2rem);
    visibility: visible;
    opacity: 1;
  }

  .header .menu-item.has-dropdown .sub-item.has-child {
    position: relative;
  }



  .header .menu-item.has-dropdown .sub-item.has-child .nav-child .child-item:hover, .header .menu-item.has-dropdown .sub-item.has-child .nav-child .child-item.active {
    color: #0D9DDB;
  }

  .header .menu-item.has-dropdown .sub-item.has-child:hover .nav-child, .header .menu-item.has-dropdown .sub-item.has-child.active .nav-child {
    top: 0;
    opacity: 1;
  }
}

.header .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  list-style: none;
}

.header .menu-link {
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #091821;


}

.header .menu-item:hover .menu-link::after,
.header .menu-item.active .menu-link::after {
  opacity: 1;
}

.header .menu .icon-dropdown {
  font-size: 1rem;
}

.header .toggle-btn {
  display: none;
}

.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgba(28, 28, 27, 0.7);
  width: 100vw;
  height: 100vh;
}

.header .overlay.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .mobile-nav-inner {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  width: 300px;
  height: 100vh;
  overflow: hidden;
}

@media (min-width: 992px) {
  .header .mobile-nav-inner {
    display: none;
  }
}

.header .mobile-nav-inner.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .header .toggle-btn {
    display: block;
  }

  .header .account {
    margin-left: auto;
  }

  .header .mobile-nav-inner {
    padding: 15px;
  }

  .header .mobile-nav-inner .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
  }

  .header .mobile-nav-inner .menu-item {
    width: 100%;
    line-height: 5rem;
  }

  .header .mobile-nav-inner .menu-link {
    gap: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header .mobile-nav-inner .menu .icon-dropdown, .header .mobile-nav-inner .menu .icon-dropdown-2 {

    padding: 0 1.5rem;
    font-size: 3rem;
    font-style: initial;
  }

  .header .mobile-nav-inner .menu .nav-sub {
    display: none;
    padding: 0 15px;
    list-style: none;
  }

  .header .mobile-nav-inner .menu .nav-child {
    display: none;
    padding: 0 15px;
    list-style: none;
  }

  .header .mobile-nav-inner .menu .sub-link {
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }


  .header .mobile-nav-inner .menu .has-dropdown.active .menu-link {
    position: relative;
  }

  .header .mobile-nav-inner .menu .has-dropdown.active .menu-link:after {
    position: absolute;
    top: 0;
    left: -1.5rem;
    z-index: -1;
    background: #fff;
    width: calc(100% + 3rem);
    height: 100%;
    content: "";
  }

  .header .mobile-nav-inner .menu .has-dropdown.active .icon-dropdown:before {
    content: "\f106 ";
  }

  .header .mobile-nav-inner .menu .has-child.active .icon-dropdown-2:before {
    content: "\f106 ";
  }
}


.toggle-btn {
  position: relative;
  z-index: 999;
  margin-left: 2rem;
}

@media (min-width: 992px) {
  .toggle-btn {
    display: none;
  }
}

.toggle-btn .svg-trigger {
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  cursor: pointer;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle-btn .svg-trigger path {
  fill: none;
  stroke: #2B65B5;
  stroke-width: 5;
  stroke-linecap: round;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}

.toggle-btn .svg-trigger path:nth-child(1) {
  stroke-dasharray: 40 160;
}

.toggle-btn .svg-trigger path:nth-child(2) {
  stroke-dasharray: 40 142;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

.toggle-btn .svg-trigger path:nth-child(3) {
  stroke-dasharray: 40 85;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms;
  transition: transform 400ms, stroke-dashoffset 400ms, -webkit-transform 400ms;
}

.toggle-btn.active .svg-trigger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-btn.active .svg-trigger path:nth-child(1), .toggle-btn.active .svg-trigger path:nth-child(3) {
  stroke-dashoffset: -64px;
}

.toggle-btn.active .svg-trigger path:nth-child(2) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#loader-container .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

#loader-container .loader__logo .gooey {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-filter: contrast(20);
  filter: contrast(20);
  margin: -2rem 0 0 -7.1rem;
  background: #fff;
  width: 14.2rem;
  height: 4rem;
}

#loader-container .loader__logo .gooey .dot {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-filter: blur(0.4rem);
  filter: blur(0.4rem);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
  border-radius: 50%;
  background: #000;
  width: 1.6rem;
  height: 1.6rem;
}

#loader-container .loader__logo .gooey .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
  margin-top: 1.2rem;
  margin-left: 3.1rem;
}

#loader-container .loader__logo .gooey .dots span {
  display: block;
  float: left;
  -webkit-filter: blur(0.4rem);
  filter: blur(0.4rem);
  margin-left: 1.6rem;
  border-radius: 50%;
  background: #000;
  width: 1.6rem;
  height: 1.6rem;
}

#loader-container .loader__progress {
  display: none;
  position: relative;
  width: 100%;
}

#loader-container .loader__progress #progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(9.6rem);
    transform: translateX(9.6rem);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(9.6rem);
    transform: translateX(9.6rem);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-3.1rem);
    transform: translateX(-3.1rem);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-3.1rem);
    transform: translateX(-3.1rem);
  }
}



.header .menu-item.has-dropdown .nav-sub li {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
}

.header .menu-item.has-dropdown .nav-sub .sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .menu-item.has-dropdown .nav-sub .sub-item:hover, .header .menu-item.has-dropdown .nav-sub .sub-item.active {
  background: #fff;
}

.header .menu-item.has-dropdown .nav-sub .sub-item:hover .sub-link, .header .menu-item.has-dropdown .nav-sub .sub-item.active .sub-link {
  color: #0D4E96;
}

.header .menu-item.has-dropdown .nav-sub .sub-item:hover .icon-dropdown:before, .header .menu-item.has-dropdown .nav-sub .sub-item.active .icon-dropdown:before {
  content: "󰅃";
}

.header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 0.8rem 2.4rem #00000012;
  box-shadow: 0px 0.8rem 2.4rem #00000012;
  background: #fff;
  width: 100%;
}

.header.header-1:not(.fixed) .wrapper .menu-item:hover .menu-link {
  color: #2B65B5;
}

.header.header-1:not(.fixed) .account-toggle img,
.header.header-1:not(.fixed) .cart-toggle img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header.header-1:not(.fixed) .cart-toggle .badges {
  background: #FFC72C;
  color: #fff;
}

/* Dropdown */

.dropdown {
  background: #fff;
  min-width: 10rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

.dropdown-caret {
  margin-left: 1rem;
  position: relative;
  width: 1.5rem
}

.dropdown-caret img {
  width: 100%
}

.dropdown-caret em {
  font-size: 2rem
}

.dropdown-caret em:before {
  font-weight: 700
}

.dropdown-select {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  border-radropdown-selectdius: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  justify-content: space-between;
  padding: 1rem 1.25rem;

  position: relative;
}

.dropdown-select .dropdown-selected {
  color: #000;
  font-weight: 400
}

.dropdown-list {
  padding: 0;
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 0;
  display: none;
  left: 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 1rem);
  width: 100%;
  z-index: 9
}

.dropdown-item {
  cursor: pointer;
  /* line-height: 3rem; */
  margin-bottom: 0 !important;
  padding: 1rem 1.5rem;
  z-index: 2
}

.dropdown-item a {
  display: block;
  width: 100%;
}



.dropdown-item.selected,
.dropdown-item:hover {
  text-stroke: .05rem currentColor;
  -webkit-text-stroke: .05rem currentColor;
  color: #2B65B5
}

.dropdown.open {
  z-index: 99
}

.dropdown.open .dropdown-list .dropdown-item {
  display: block
}

.dropdown.open .dropdown-caret img {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: all .2s;
  transition: all .2s
}

.text-desc {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis
}

.text-desc-3 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis
}

.text-desc-4 {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis
}

/* /////////////// */



select {
  -webkit-appearance: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0.1rem solid #0C1C45;
  background: none;
  background-image: url(../images/icons/drop-down.png);
  background-position: center;
  background-position: calc(100% - 1.5rem) center;
  background-repeat: no-repeat;
  background-size: 1.2rem auto;
  padding: 0 1.5rem;
  padding-right: 3rem;
  width: 100%;
  height: 3.33333333333rem;
  line-height: 3.33333333333rem;
  text-transform: capitalize;
}











.timeline-article p span.article-title {
  position: absolute;
  font-weight: 300;
  font-size: 24px;
  top: 1px;
  left: -60px;
  color: #D32027;
}

.timeline-article .content-left-container {
  float: left;
}

.timeline-article .content-right-container {
  float: right;
}



.timeline-article .timeline-number .tl-num,
.timeline-article .timeline-number {
  display: block;
  text-align: center;
  font-weight: 400;
}

.timeline-article .timeline-number .tl-num {
  font-size: 22px;
  line-height: 60px;
}






.custom-checkbox, .custom-radio {
  cursor: pointer;
}

/* .custom-checkbox > label, .custom-radio > label {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: normal !important;
} */
.custom-checkbox>input, .custom-radio>input {
  display: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
  width: initial;
  height: initial;
}

.custom-checkbox.style-1>label, .custom-checkbox.style-1>span, .custom-radio.style-1>label, .custom-radio.style-1>span {
  position: relative;
  cursor: pointer;
  padding-left: 2.6rem;
}

.custom-checkbox.style-1>label:before, .custom-checkbox.style-1>span:before, .custom-radio.style-1>label:before, .custom-radio.style-1>span:before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  cursor: pointer;
  border: 0.1rem solid #232323;
  border-radius: 50%;
  background: #fff;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
}

.custom-checkbox.style-1 input[type=radio]:focus+label, .custom-checkbox.style-1 input[type=radio]:focus+span, .custom-radio.style-1 input[type=radio]:focus+label, .custom-radio.style-1 input[type=radio]:focus+span {
  font-weight: bold !important;
}

.custom-checkbox.style-1 input[type=radio]:focus+label .content, .custom-checkbox.style-1 input[type=radio]:focus+span .content, .custom-radio.style-1 input[type=radio]:focus+label .content, .custom-radio.style-1 input[type=radio]:focus+span .content {
  display: block;
}

.custom-checkbox.style-1 input[type=radio]:focus+label:before, .custom-checkbox.style-1 input[type=radio]:focus+span:before, .custom-radio.style-1 input[type=radio]:focus+label:before, .custom-radio.style-1 input[type=radio]:focus+span:before {
  -webkit-box-shadow: inset 0 0 0 0.15rem #fff;
  box-shadow: inset 0 0 0 0.15rem #fff;
  background: #232323;
}

.custom-checkbox.style-1 input[type=radio]:checked+label, .custom-checkbox.style-1 input[type=radio]:checked+span, .custom-radio.style-1 input[type=radio]:checked+label, .custom-radio.style-1 input[type=radio]:checked+span {
  font-weight: bold !important;
}

.custom-checkbox.style-1 input[type=radio]:checked+label .content, .custom-checkbox.style-1 input[type=radio]:checked+span .content, .custom-radio.style-1 input[type=radio]:checked+label .content, .custom-radio.style-1 input[type=radio]:checked+span .content {
  display: block;
}

.custom-checkbox.style-1 input[type=radio]:checked+label:before, .custom-checkbox.style-1 input[type=radio]:checked+span:before, .custom-radio.style-1 input[type=radio]:checked+label:before, .custom-radio.style-1 input[type=radio]:checked+span:before {
  -webkit-box-shadow: inset 0 0 0 0.15rem #fff;
  box-shadow: inset 0 0 0 0.15rem #fff;
  background: #232323;
}

.custom-checkbox.style-1 input[type=checkbox]:focus+label, .custom-checkbox.style-1 input[type=checkbox]:focus+span, .custom-radio.style-1 input[type=checkbox]:focus+label, .custom-radio.style-1 input[type=checkbox]:focus+span {
  font-weight: bold !important;
}

.custom-checkbox.style-1 input[type=checkbox]:focus+label .content, .custom-checkbox.style-1 input[type=checkbox]:focus+span .content, .custom-radio.style-1 input[type=checkbox]:focus+label .content, .custom-radio.style-1 input[type=checkbox]:focus+span .content {
  display: block;
}

.custom-checkbox.style-1 input[type=checkbox]:focus+label:before, .custom-checkbox.style-1 input[type=checkbox]:focus+span:before, .custom-radio.style-1 input[type=checkbox]:focus+label:before, .custom-radio.style-1 input[type=checkbox]:focus+span:before {
  -webkit-box-shadow: inset 0 0 0 0.15rem #fff;
  box-shadow: inset 0 0 0 0.15rem #fff;
  background: #232323;
}

.custom-checkbox.style-1 input[type=checkbox]:checked+label, .custom-checkbox.style-1 input[type=checkbox]:checked+span, .custom-radio.style-1 input[type=checkbox]:checked+label, .custom-radio.style-1 input[type=checkbox]:checked+span {
  font-weight: bold !important;
}

.custom-checkbox.style-1 input[type=checkbox]:checked+label .content, .custom-checkbox.style-1 input[type=checkbox]:checked+span .content, .custom-radio.style-1 input[type=checkbox]:checked+label .content, .custom-radio.style-1 input[type=checkbox]:checked+span .content {
  display: block;
}

.custom-checkbox.style-1 input[type=checkbox]:checked+label:before, .custom-checkbox.style-1 input[type=checkbox]:checked+span:before, .custom-radio.style-1 input[type=checkbox]:checked+label:before, .custom-radio.style-1 input[type=checkbox]:checked+span:before {
  -webkit-box-shadow: inset 0 0 0 0.15rem #fff;
  box-shadow: inset 0 0 0 0.15rem #fff;
  background: #232323;
}

.custom-checkbox.style-2 input[type=checkbox]:checked+label, .custom-checkbox.style-2 input[type=checkbox]:checked+span, .custom-radio.style-2 input[type=checkbox]:checked+label, .custom-radio.style-2 input[type=checkbox]:checked+span {
  font-weight: bold !important;
}

.custom-checkbox.style-1 input[type=radio]:checked+label, .custom-checkbox.style-1 input[type=radio]:checked+span, .custom-radio.style-1 input[type=radio]:checked+label, .custom-radio.style-1 input[type=radio]:checked+span {

  color: #232323;
}

.w-full {
  width: 100% !important;
}

.amount .minus,
.amount .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #c1c1c1;
}

/* .amount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  overflow: hidden;
} */

.quantity .amount .btn-wrap {
  padding: 0 1px;
}

.description p+p {
  margin-top: 2rem;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-4 {
  gap: 4rem !important;
}

.gap-5 {
  gap: 5rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.gap-7 {
  gap: 7rem !important;
}

.gap-8 {
  gap: 8rem !important;
}

.gap-9 {
  gap: 9rem !important;
}

.gap-10 {
  gap: 10rem !important;
}





.grid-lg-2 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-lg-3 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-lg-4 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-lg-5 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.py-lg-10 {
  padding: 10rem 0;
}

.py-lg-1_5 {
  padding: 15rem 0;
}

.py-lg-2 {
  padding: 20rem 0;
}

.py-lg-3 {
  padding: 30rem 0;
}

.py-lg-4 {
  padding: 40rem 0;
}

.py-lg-5 {
  padding: 50rem 0;
}

.py-lg-6 {
  padding: 60rem 0;
}

.py-lg-7 {
  padding: 70rem 0;
}

.py-lg-8 {
  padding: 80rem 0;
}

.py-lg-9 {
  padding: 90rem 0;
}



@media (max-width: 991px) {
  .grid-sm-1 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-sm-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-sm-3 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-sm-4 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-sm-5 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid-sm-6 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid-sm-7 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .py-sm-10 {
    padding: 10rem 0;
  }


}

@media (max-width: 575px) {
  .grid-1 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-5 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid-6 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .grid-7 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .py-2 {
    padding: 20rem 0;
  }

  .py-3 {
    padding: 30rem 0;
  }

  .py-4 {
    padding: 40rem 0;
  }

  .py-5 {
    padding: 50rem 0;
  }

  .py-6 {
    padding: 60rem 0;
  }

  .py-7 {
    padding: 70rem 0;
  }

  .py-8 {
    padding: 80rem 0;
  }

  .py-9 {
    padding: 90rem 0;
  }

  .py-10 {
    padding: 100rem 0;
  }

  .py-11 {
    padding: 110rem 0;
  }

  .py-12 {
    padding: 120rem 0;
  }

  .py-13 {
    padding: 130rem 0;
  }

  .py-14 {
    padding: 140rem 0;
  }

  .py-15 {
    padding: 150rem 0;
  }

}

.choose-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.5px solid #302D2F;
  background-color: #fff;
  /* height: 6.66rem; */
  
}
.choose-number .minus, .choose-number .plus{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  width: 5rem;
  height: 6.5rem;
  
}
.choose-number .minus i, .choose-number .plus i{
  font-style: initial;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.choose-number .number input{
  border-radius: 0;
  color: #232323;
  border: none;
  font-size: 1.8rem;
  width: 5rem !important;
  padding: 0;
  font-weight: bold;
}
/* .tab-content.woocommerce-Tabs-panel--description::-webkit-scrollbar-thumb{
  background-color: red;
}
.tab-container .tab-content.woocommerce-Tabs-panel--description::-webkit-scrollbar-track{
  background-color: #E4DCD5;
} */