* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  display: none;
}

body,
html {
  overscroll-behavior-y: contain;
  overflow-x: hidden;
  /* Hide horizontal scrollbar */
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  -ms-overflow-style: none;
  /* IE and Edge */
  /* Firefox */
}

button:disabled,
button[disabled] {
  border: 1px solid rgba(148, 143, 143, 0.1);
  background-color: rgba(148, 143, 143, 0.1);
  color: #666666;
}

button:disabled:hover,
button[disabled] {
  border: 1px solid rgba(148, 143, 143, 0.1);
  background-color: rgba(148, 143, 143, 0.1);
  color: #666666;
}

/* ------------------------------------ */
a {
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--additional-Color);
}

/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0px;
}

.abt {
  background-color: var(--title-color);
}

.abt li a {
  color: white;
}

.abt li a:hover {
  color: var(--text-color);
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/* ------------------------------------ */
input {
  outline: none;
}

textarea {
  outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/* ------------------------------------ */
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/* ------------------------------------ */
.container {
  max-width: 1200px;
}

.slick-slide {
  outline: none !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[data-loader="ball-scale"] {
  width: 50px;
  height: 50px;
  -webkit-animation: ball-scale infinite linear 0.75s;
  -moz-animation: ball-scale infinite linear 0.75s;
  -o-animation: ball-scale infinite linear 0.75s;
  animation: ball-scale infinite linear 0.75s;
  border-radius: 100%;
  background-color: #e65540;
}

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 20px;
  outline: none;
  position: relative;
}

/* in select */
.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  line-height: 20px;
  color: #888888;
  padding-left: 0px;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: transparent;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  color: white;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background-color: blue;
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: blue;
  color: white;
}

.select2-results__options {
  font-size: 13px;
  color: #888888;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-size: 13px;
  color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
  margin-left: 26px;
}

.rs1-select2 .select2-container .select2-selection--single {
  height: 20px;
}

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
  background-color: white;
  height: 50px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 20px;
  color: var(--text-color);
  padding-left: 22px;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
}

#dropDownSelect2 .select2-results__options {
  color: var(--text-color);
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
  color: var(--text-color);
}

/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
  height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
  display: block;
}

.rs3-select2 .select2-selection__arrow:after {
  display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
  height: 40px;
}

.rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
}

/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
  height: 125px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.fixed-header {
  height: 110px;
}

/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1100;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

/*[ Top bar ]
===========================================================*/
.max-with-topbar {
  background-color: var(--background-TopHeader);
  width: 100%;
}

.topbar {
  height: 45px;
  width: 100%;
  background-color: transparent;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: auto;
}

/* ------------------------------------ */

.topbar-social {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.btn {
  color: white;
  background-color: var(--color-ButtonHeader);
}

.wel-come-msg {
  color: var(--color-TopHeader);
  float: left;
  display: flex;
  align-items: center;
  cursor: default;
  font-size: 15px;
}

.topbar-social-item {
  font-size: 18px;
  color: #888888;
  padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
}

/* ------------------------------------ */
.topbar-child2 {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-content: center;
  align-items: center;
  padding-right: 0;
}

.nav li a {
  color: var(--color-TopHeader);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  min-height: 15px;
  background-color: transparent;
}

.nav li a:hover,
.nav li.open a {
  background-color: rgba(0, 0, 0, 0.1);
}

.nave a {
  color: var(--color-TopHeader);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  min-height: 15px;
  background-color: transparent;
}

.nave a:hover,
.nave a.open {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

/*[ Menu ]
===========================================================*/
.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 95px;
  background-color: white;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 1440px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.div-logo {
  width: 20%;
}

.wrap_menu {
  width: 48%;
}

.fixed-header .wrap_header {
  height: 95px;
}

/*[ Logo ]
-----------------------------------------------------------*/
.logo {
  display: block;
  position: absolute;
  left: 52px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 300px;
  min-width: 180px;
  overflow: hidden;
  white-space: nowrap;
}

#logo {
  color: var(--color-Header);
  font-size: 25px;
  margin: 0;
  text-transform: uppercase;

}

@media (max-width: 600px) {
  #logo {
    color: var(--text-color);
    font-size: var(--title-size);
    margin: 0;
  }
}

@media (max-width: 1100px) {
  #logo {
    color: var(--text-color);
    font-size: var(--title-size);
    margin: 0;
  }
}

/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.main_menu>li {
  display: block;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.main_menu>li>a {

  font-size: 15px;
  color: var(--color-Header);
  padding: 0;
  border-bottom: 1px solid transparent;
}

li.sale-noti>a {
  color: blue;
}

.main_menu>li:hover>a {
  text-decoration: none;
  border-bottom: 1px solid black;
}

.main_menu li {
  position: relative;
}

.main_menu>li:hover>.sub_menu {
  visibility: visible;
  opacity: 1;
}

.sub_menu {
  list-style-type: none;
  position: absolute;
  z-index: 1100;
  top: 0;
  left: 100%;
  width: 225px;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.main_menu>li>.sub_menu {
  top: 100%;
  left: 0;
  position: absolute;
}

.sub_menu li:hover>.sub_menu {
  visibility: visible;
  opacity: 1;
}

.sub_menu li {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.sub_menu li,
.sub_menu a {
  padding: 10px;

  font-size: 13px;
  color: white;
}

.sub_menu>li:hover>a {
  color: var(--text-color);
  text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 32%;
  justify-content: right;
}

.header-wrapicon1,
.header-wrapicon2 {
  height: 27px;
  position: relative;
  color: var(--text-color);
}

#show {
  height: 100%;
  width: 100vw;
  background-color: black;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1101;
  display: none;
}

.header-wrapicon1:hover,
.header-wrapicon2 {
  height: 27px;
  position: relative;
  color: var(--additional-Color);
}

.header-wrapicon1 img {
  height: 100%;
}

.header-icon1:hover,
.header-icon2:hover {
  cursor: pointer;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  background-color: var(--color-ButtonHeader);
}

.header-icons-noti {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-ButtonHeader);
  color: white;
  font-size: 12px;
  position: relative;
  top: -22px;
  right: 0px;
}

.aoi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--title-color);
  color: white;
  font-size: 12px;
  position: absolute;
  bottom: 100%;
  left: 15px;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  top: 35%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.carousel-caption {
  width: 68%;
  height: 368px;
}

@media (max-width: 600px) {
  .carousel-caption {
    width: 68%;
    height: 200px;
  }

  .carousel-caption {
    top: 20px;
  }
}

.carousel-caption span {
  font-size: var(--title-CollectionSize);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 10px;
  color: var(--title-CollectionColor);
}

.carousel-caption h2 {
  font-size: var(--text-CollectionSize);
  text-transform: capitalize;
  font-weight: 400;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 30px;
  max-width: 900px;
  color: var(--text-CollectionColor);
}

@media (max-width: 992px) {
  .carousel-caption span {
    font-size: 25px;
  }

  .carousel-caption h2 {
    font-size: 14px;
    line-height: inherit;
  }

  .big {
    height: 400px;
  }

  .w-size1 {
    width: 180px;
  }

  .size2 {
    height: 35px;
  }

  .s-text2 {
    font-size: 12px;
  }

  .carousel-item img {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .carousel-caption span {
    font-size: 20px;
  }

  .carousel-caption h2 {
    font-size: 12px;
  }
}

.abcd {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.linedivide1 {
  display: block;
  height: 20px;
  width: 1px;
  background-color: #e5e5e5;
  margin-left: 23px;
  margin-right: 23px;
  margin-top: 5px;
}

footer {
  background-color: var(--background-Footer) !important;
  color: var(--color-Footer) !important;
}

.footer-top-cms {
  margin-top: 100px;
  text-align: center;
}

.new {
  position: absolute;
  top: 25;
  width: 60px !important;
  left: 0px;
}

.newslatter h5 {
  margin: 60px 30px 25px 30px;
  font-size: 25px;
  color: var(--title-EmailSubColor);
}

.title-subline {
  font-size: 15px;
  clear: both;
  color: var(--text-EmailSubColor);
  margin: 10px 10px 20px;
  display: inline-block;
  width: 96%;
  text-align: center;
}

.input-group {
  height: 100px;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.input-group .btn {
  float: left;
  margin-left: 10px;
  padding: 1px 14px;
  border-radius: 25px;
  height: 40px;
}

.wrapper {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.button {
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  align-items: center;
}

.button:hover {
  width: 170px;
  display: flex;
}

.button .icon {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.button:nth-child(1):hover .icon {
  background: #4267b2;
}

.button:nth-child(2):hover .icon {
  background: #1da1f2;
}

.button:nth-child(3):hover .icon {
  background: #e1306c;
}

.button:nth-child(4):hover .icon {
  background: #ff0000;
}

.button:nth-child(5):hover .icon {
  background: #ee1d52;
}

.button .icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.button:hover .icon i {
  color: #fff;
}

.fa-tiktok {
  height: 24px;
  width: 24px;
  margin-top: 15px;
  color: #212529;
}

@media (max-width: 600px) {
  .button:hover {
    width: 60px;
    display: block;
  }
}

@media (max-width: 400px) {
  .button {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }

  .button .icon {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    line-height: 50px;
  }

  .button .icon i {
    font-size: 16px;
    line-height: 50px;
  }

  .button:hover {
    width: 50px;
  }

  .fa-tiktok {
    height: 16px;
    width: 16px;
    margin-top: 17px;
  }

  .newslatter h5 {
    margin: 30px 0px 10px 0px;
    font-size: 16px;
  }

  .title-subline {
    margin: 10px 10px 0px;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
  position: absolute;
  z-index: 1100;
  width: 539px;
  top: 100%;
  right: -50px;
  padding: 20px;
  border-top: 3px solid #e6e6e6;
  background-color: white;

  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);

  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;

  transform-origin: top right;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.show-header-dropdown {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.fixed-header .header-cart {
  top: 100%;
}

.header-cart-wrapitem {
  max-height: 270px;
  overflow: auto;
  width: 100%;
}

.header-cart-wrapitemm {
  max-height: 270px;
  overflow: auto;
  width: 100%;
}

.header-cart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
}

.header-cart-itemm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
}

/* ------------------------------------ */
.header-cart-item-img {
  width: 80px;
  position: relative;
  margin-right: 20px;
  height: 80px;
}

.header-cart-item-img img {
  width: 100%;
  height: 100%;
}

.header-cart-item-img:hover:after {
  cursor: pointer;
  opacity: 1;
}

.header-cart-item-imge {
  width: 80px;
  position: relative;
}

.header-cart-item-imge img {
  width: 100%;
}

.header-cart-item-imge:hover:after {
  cursor: pointer;
  opacity: 1;
}

/* ------------------------------------ */
.header-cart-item-txt {
  width: 73%;
  display: flex;
  justify-content: center;
}

.header-cart-item-txte {
  width: 77%;
  display: flex;
  justify-content: start;
}

@media (max-width: 1133px) {
  .header-cart-item-txte {
    width: 64%;
    display: flex;
    justify-content: start;
  }
}

.header-cart-item-txtt {
  width: 70%;
  display: flex;
  justify-content: center;
}

.bagsvg {
  height: 100px;
  width: 100%;
}

.header-cart-item-name {
  display: block;
  font-size: 15px;
  color: var(--color-Header);
  line-height: 1.3;
  margin-bottom: 12px;
  width: 50%;
  display: flex;
  justify-content: start;
}

.header-cart-item-name:hover {
  color: black;
  text-decoration: none;
  cursor: default;
}

.header-cart-item-namee {
  display: block;

  font-size: 15px;
  color: rgb(121, 112, 112);
  line-height: 1.3;
  margin-bottom: 12px;
  width: 51%;
  display: flex;
  justify-content: start;
  margin-left: 10px;
}

.header-cart-item-namee:hover {
  color: black;
  text-decoration: none;
  cursor: default;
}

.header-cart-item-info {
  display: block;

  font-size: 12px;
  color: var(--text-color);
  line-height: 1.5;
}

.header-cart-item-infoo {
  display: block;

  font-size: 13px;
  color: var(--additional-Color);
  line-height: 1.5;
  width: 40%;
  margin-left: 10px;
}

.header-cart-item-info1 {
  display: block;

  font-size: 18px;
  color: var(--additional-Color);
  line-height: 1.5;
  width: 56%;
  margin-left: 1px;
}

.header-cart-total {

  font-size: 15px;
  color: var(--additional-Color);
  line-height: 1.3;
  text-align: right;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-right: 3px;
}

.header-cart-totall {

  font-size: 18px;
  color: var(--additional-Color);
  line-height: 1.3;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 25px;
}

.ok {
  max-height: 400px;
  overflow: auto;
}

/* ------------------------------------ */
.header-cart-buttons {
  display: none;
  justify-content: center;
  align-items: center;
}

.header-cart-buttonss {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header-cart-wrapbtn {
  width: calc((100% - 10px) / 2);
  padding: 6px;
}

/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
  display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
  display: block;
}

.logo-mobile img {
  max-height: 27px;
}

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}

.list-inlinee {
  display: none;
}

@media (max-width: 600px) {
  .btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    height: 100%;
  }

  .list-inline {
    display: none;
  }

  .list-inlinee {
    display: block;
  }
}

.hamburger {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  margin-top: 5px;
  padding: 4px;
}

/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.linedivide2 {
  display: block;
  height: 20px;
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5px;
}

.header-icons-mobile .header-cart {
  width: 350px;
  top: 190%;
  right: -80px;
  z-index: 1100;
  transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
  width: 100%;
  background-color: white;
  display: none;
  border-top: 1px solid #ececec;
}

.side-menu {
  width: 100%;
}

.side-menu li {
  list-style-type: none;
}

.side-menu .main-menu {
  margin-bottom: 0;
}

.item-menu-mobile {
  background-color: var(--additional-Color);
}

.side-menu .main-menu>li>a {
  padding-left: 20px;

  font-size: 15px;
  color: white;
  line-height: 2.86;
}

.side-menu .main-menu>li {
  color: white;
  position: relative;
}

.side-menu .main-menu .arrow-main-menu {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 5px;
  padding: 10px;
  -webkit-transition: all 0.4s !important;
  -o-transition: all 0.4s !important;
  -moz-transition: all 0.4s !important;
  transition: all 0.4s !important;
}

.side-menu .main-menu .arrow-main-menu:hover {
  cursor: pointer;
}

.turn-arrow {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.side-menu .sub-menu a {
  padding-left: 20px;

  font-size: 13px;
  color: var(--title-color);
  line-height: 2.5;
}

.side-menu .sub-menu>li {
  padding-left: 12px;
  /* padding-top: ; */
}

.side-menu .sub-menu a:hover {
  text-decoration: none;
  padding-left: 20px;
  color: #e65540 !important;
}

.side-menu .sub-menu {
  background-color: white;
  display: none;
}

@media (min-width: 992px) {
  .wrap-side-menu {
    display: none;
  }
}

/* ------------------------------------ */
.item-topbar-mobile {
  border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-social-moblie {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------ */
.logo2 {
  display: block;
}

.logo2 img {
  max-height: 27px;
}

.fixed-header2 {
  z-index: 1300;
  position: fixed;
  height: 65px;
  left: 0;
  top: -70px;
  visibility: hidden;

  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.2);
}

.fixed-header2 .header-cart {
  top: 160%;
}

.show-fixed-header2 {
  visibility: visible;
  top: 0px;
}

/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 320px;
  height: 100vh;
  border-right: 1px solid #e5e5e7;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*[ Menu ]
===========================================================*/
.container-menu-header-v3 .wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: white;
}

/*[ Logo ]
-----------------------------------------------------------*/
.container-menu-header-v3 .logo3 {
  display: block;
}

.container-menu-header-v3 .logo3 img {
  max-width: 120px;
}

/*[ Header Icon ]
-----------------------------------------------------------*/
.container-menu-header-v3 .header-icons3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: unset;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.container-menu-header-v3 .header-cart {
  left: -10px;
  transform-origin: top left;
}

/*[ Menu ]
-----------------------------------------------------------*/
.container-menu-header-v3 .main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}

.container-menu-header-v3 .main_menu>li {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}

.container-menu-header-v3 .sub_menu {
  top: 0;
  left: 100%;
}

.container-menu-header-v3 .main_menu>li>.sub_menu {
  top: 10px;
  left: 95%;
}

.container-menu-header-v3 .sub_menu li {
  text-align: left;
}

.container-menu-header-v3 .topbar-social-item {
  padding: 10px 8px;
}

/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
  margin-left: 320px;
}

@media (max-width: 992px) {
  .wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex !important;
  }

  .wrap_header {
    display: none;
  }

  .container-menu-header-v3,
  .container-menu-header-v2,
  .container-menu-header {
    display: none;
  }

  .top-bar {
    display: none;
    background-color: var(--text-color);
  }

  header {
    height: auto !important;
  }

  .container1-page {
    margin-left: 0px;
  }
}

/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
  position: relative;
}

.item-slick1 {
  height: 570px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.arrow-slick1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: black;
  opacity: 0;

  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);

  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
  opacity: 0.5;
}

.arrow-slick1:hover {
  background-color: #e65540;
}

.next-slick1 {
  right: 50px;
  left: auto;
}

.prev-slick1 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
  .wrap-content-slide1 .s-text2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 50px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 15px;
  }

  .item-slick1 {
    height: 470px;
  }
}

@media (max-width: 576px) {

  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 40px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 15px;
  }

  .item-slick1 {
    height: 370px;
  }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
  height: 100vh;
}

@media (max-width: 992px) {
  .rs1-slick1 .item-slick1 {
    height: calc(100vh - 85px);
  }
}

/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
  position: relative;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 50px;
}

.carousel-item img {
  height: 600px;
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
  object-fit: cover;
  object-position: center;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .carousel-item img {
    height: 55vh;
  }
}

@media (max-width: 600px) {
  .carousel-item img {
    height: 45vh;
  }

  .carousel-caption {
    top: 32%;
  }
}

@media (max-width: 450px) {
  .carousel-item img {
    height: 35vh;
  }

  .carousel-caption {
    top: 28%;
  }
}

/* ------------------------------------ */
.arrow-slick2 {
  position: absolute;
  z-index: 100;
  top: calc((100% - 70px) / 2);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 39px;
  color: #cccccc;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.arrow-slick2:hover {
  color: #666666;
}

.next-slick2 {
  right: -34px;
}

.prev-slick2 {
  left: -50px;
}

@media (max-width: 1280px) {
  .next-slick2 {
    right: 0px;
  }

  .prev-slick2 {
    left: 0px;
  }
}

@media (max-width: 1610px) {
  .rs1-slick2 .next-slick2 {
    right: 0px;
  }

  .rs1-slick2 .prev-slick2 {
    left: 0px;
  }
}

.block2-img {
  cursor: auto !important;
  height: 270px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

@media(max-width:1100px) {
  .block2-img {
    height: 245px !important;
  }
}

@media(max-width:990px) {
  .block2-img {
    height: 300px !important;
  }
}

@media(max-width:575px) {
  .block2-img {
    height: 545px !important;
  }
}

@media(max-width:500px) {
  .block2-img {
    height: 470px !important;
  }

  .card-title {
    padding: 0 5vw;
  }
}

@media(max-width:450px) {
  .block2-img {
    height: 420px !important;
  }
}

@media(max-width:400px) {
  .block2-img {
    height: 370px !important;
  }
}

@media(max-width:350px) {
  .block2-img {
    height: 290px !important;
  }
}

@media(max-width:300px) {
  .block2-img {
    height: 260px !important;
  }
}

.card-title {
  display: flex;
  flex-direction: column;
  padding: 0 calc(5vw + 1.5rem);
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
  overflow-y: auto;
}

.swal-icon--success {
  border-color: #66a8a6;
}

.swal-icon--success__line {
  background-color: #66a8a6;
}

.swal-icon--success__ring {
  border: 4px solid rgba(17, 29, 94, 0.4);
}

.swal-button:focus {
  outline: none;
  box-shadow: none;
}

.swal-button {
  background-color: black;

  font-size: 15px;
  color: white;
  text-transform: uppercase;
  font-weight: unset;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.swal-button:hover {
  background-color: var(--text-color);
}

.swal-button:active {
  background-color: var(--additional-Color);
}

.swal-title {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.5;
  padding: 0 15px;
}

.swal-text {

  color: var(--additional-Color);
  font-size: 15px;
  text-align: center;
}

.swal-footer {
  margin-top: 0;
}

/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;

  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}

/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before {
  z-index: 100;

  font-size: 12px;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 22px;
  border-radius: 11px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.block2-labelsale::before {
  background-color: blue;
  content: "Sale";
}

.block2-labelnew::before {
  background-color: green;
  content: "New";
}

/* ------------------------------------ */
.block2-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -45px;
}

.block2-overlay:hover .block2-btn-addcartt {
  bottom: 20px;
}

.block2-btn-addcartt {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
  display: block;
  position: absolute;
  top: 34px;
  right: 23px;
  z-index: 2;
  font-size: 20px;
  color: white;
  line-height: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.block2-btn-addwishlist:hover {
  color: white;
}

.block2-btn-addwishlist .icon-wishlist,
.block2-btn-towishlist .icon-wishlist {
  line-height: 0;
}

.block2-btn-addwishlist:hover .icon_heart_alt {
  display: none;
}

.block2-btn-addwishlist:hover .icon_heart {
  display: block;
}

/* ------------------------------------ */
.block2-btn-towishlist .icon_heart_alt {
  display: none;
}

.block2-btn-towishlist .icon_heart {
  display: block;
  color: #e65540;
}

/* ------------------------------------ */
.block2-overlay:hover {
  opacity: 1;
}

.block2-overlay:hover .block2-btn-addcart {
  bottom: 20px;
}

.btn-addcart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.block2-overlay:hover .block2-btn-addwishlist,
.block2-overlay:hover .block2-btn-towishlist {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
  position: relative;
  overflow: hidden;
  width: calc(100% / 5);
}

@media (max-width: 1360px) {
  .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1200px) {
  .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 992px) {
  .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
  .rs1-block4 .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1380px) {
  .rs1-block4 .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 1200px) {
  .rs1-block4 .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .rs1-block4 .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
.block4-overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
}

.block4-overlay:hover {
  color: unset;
}

/* ------------------------------------ */
.block4-overlay-txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
  transform-origin: top left;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
  visibility: visible;
  opacity: 1;
}

.block4:hover .block4-overlay-txt {
  bottom: 0;
}

.block4:hover .block4-overlay-heart {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 340px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: round no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-title-page .l-text2 {
  font-size: 35px;
}

@media (max-width: 576px) {
  .bg-title-page .l-text2 {
    font-size: 35px;
  }

  .bg-title-page .m-text13 {
    font-size: 15px;
  }

}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.filter-class-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#price-slider {
  margin-bottom: 15px;
}

.input-number1 {
  position: relative;
}

.input-number1 input[type="text"]::-webkit-inner-spin-button,
.input-number1 input[type="text"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number1 input[type="text"] {
  -moz-appearance: textfield;
  height: 50px;
  width: 100%;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  padding: 0px 15px 0px 15px;
  color: var(--text-color);
  font-weight: 400;
}

.filter-price .input-number1 {
  display: inline-block;
  width: calc(50% - 7px);
}

.leftbar #price-slider {
  margin-right: 6px;
  margin-left: 6px;
  height: 4px;
  border: none;
  background-color: #e1e1e1;
}

.leftbar #price-slider .noUi-connect {
  background-color: var(--additional-Color);
  border: none;
  box-shadow: none;
}

.leftbar #price-slider .noUi-handle {
  width: 13px;
  height: 13px;
  left: -6px;
  top: -5px;
  border: none;
  border-radius: 50%;
  background: var(--additional-Color);
  cursor: pointer;
  box-shadow: none;
  outline: none;
}

.leftbar #price-slider .noUi-handle:before {
  display: none;
}

.leftbar #price-slider .noUi-handle:after {
  display: none;
}

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {
  background-color: #fff;
}

.color-filter1:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter2 {
  background-color: #fff;
}

.color-filter2:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter3 {
  background-color: #fff;
}

.color-filter3:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter4 {
  background-color: #fff;
}

.color-filter4:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter5 {
  background-color: #fff;
}

.color-filter5:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter6 {
  background-color: #fff;
}

.color-filter6:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.color-filter7 {
  background-color: #fff;
}

.color-filter7:hover {
  background-color: var(--additional-Color);
  color: #fff;
}

.checkbox-color-filter {
  display: none;
}

.color-filter {
  display: flex;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
}

.checkbox-color-filter:checked+.color-filter {
  box-shadow: 0 0 0px 2px black;
  -moz-box-shadow: 0 0 0px 2px black;
  -webkit-box-shadow: 0 0 0px 2px black;
  -o-box-shadow: 0 0 0px 2px black;
  -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
  margin-right: -6px;
  margin-left: -6px;
  display: flex;
  justify-content: center;
}

.item-pagination {

  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  margin: 6px;
}

.item-pagination:hover {
  background-color: var(--additional-Color);
  color: white;
}

.active-pagination {
  background-color: var(--title-color);
  color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/
.slick-track {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.big-img .slick-prev,
.big-img .slick-next {
  display: none !important;
}

#product-imgs .smal1 {
  margin: 0px 5px;
  height: 197px;
  max-width: 197px;
  min-width: 197px;
}

#product-imgs .slick-prev {
  left: -25px;
  top: 49.5%;
  border-radius: 3px 0px 0px 3px;
  width: 20px;
  height: 115px;
}

#product-imgs .slick-next {
  top: 49.5%;
  right: -5.5%;
  border-radius: 0px 3px 3px 0px;
  width: 20px;
  height: 115px;
}

#product-imgs .slick-prev:before {
  content: "\f053";
  font-size: 15px;
}

#product-imgs .slick-next:before {
  content: "\f054";
  font-size: 15px;
}

.big-img .product_images {
  height: 620px;
}

.product_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#product-imgs .smal1.slick-current img {
  border: 1px solid var(--additional-Color);
}

.descri img {
  width: 200px;
  margin-top: 10px;
}

.descri h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

#product-imgs {
  overflow: auto;
  max-height: 700px;
  display: flex;
}

@media (max-width: 1100px) {
  .big-img .product_images {
    height: 570px !important;
  }
}

@media (max-width: 990px) {
  .big-img .product_images {
    height: 510px !important;
  }
}

@media (max-width: 760px) {
  .big-img .product_images {
    height: 730px !important;
  }

  .descri {
    text-align: center;
  }
}

@media (max-width: 660px) {
  .big-img .product_images {
    height: 630px !important;
  }
}

@media (max-width: 500px) {
  .big-img .product_images {
    height: 470px !important;
  }

  #logo {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .big-img .product_images {
    height: 370px !important;
  }
}

@media (max-width: 340px) {
  .big-img .product_images {
    height: 310px !important;
  }
}

@media (max-width: 1100px) {
  .small-img .smal1 {
    height: 180px !important;
    max-width: 180px !important;
    min-width: 180px;
  }
}

@media (max-width: 990px) {
  .small-img .smal1 {
    height: 160px !important;
    max-width: 160px !important;
    min-width: 160px;
  }

}

@media (max-width: 660px) {
  .small-img .smal1 {
    height: 200px !important;
    max-width: 200px !important;
    min-width: 200px;
  }
}

@media (max-width: 500px) {
  .small-img .smal1 {
    height: 147px !important;
    max-width: 147px !important;
    min-width: 147px;
  }
}

@media (max-width: 400px) {
  .small-img .smal1 {
    height: 115px !important;
    max-width: 115px !important;
    min-width: 115px;
  }
}

@media (max-width: 340px) {
  .small-img .smal1 {
    height: 95px !important;
    max-width: 95px !important;
    min-width: 95px;
  }
}

/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
  display: block;
}

.show-dropdown-content .up-mark {
  display: none;
}

/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
  overflow: auto;
}

.table-shopping-cart {
  border-collapse: collapse;
  width: 100%;
}

.table-shopping-cart .table-row {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
  width: 225px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
  display: flex;
  justify-content: center;
}

.table-shopping-cart .column-0 {
  border-right: 1px solid #e6e6e6;
  text-align: center;
  padding: 10px;
}

.table-shopping-cart .column-2 {
  width: 330px;
  padding: 30px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
}

.table-shopping-cart .column-3 {
  width: 133px;
  padding: 30px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
  color: var(--title-color);
}

.table-shopping-cart .column-4 {
  width: 355px;
  padding-right: 30px;
  border-right: 1px solid #e6e6e6;
}

.kk {
  margin-left: 118px;
}

.table-shopping-cart .column-5 {
  padding: 30px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
}

.table-head {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}

.table-shopping-cart .table-head th {

  font-size: 13px;
  color: var(--title-color);
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 16px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
}

.table-shopping-cart td {

  font-size: 15px;
  color: var(--title-color);
  line-height: 1.5;
  padding-top: 37px;
  padding-bottom: 30px;
}

.table-shopping-cart .table-row .column-2 {
  font-size: 15px;
  color: var(--title-color);
}

/* ------------------------------------ */
.cart-img-product {
  width: 90px;
  position: relative;
}

.cart-img-product img {
  width: 100%;
}

/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
  margin-right: -3px;
  margin-left: -3px;
}

.tag-item {
  display: block;

  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  padding: 5px 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  margin: 3px;
}

.tag-item:hover {
  border: 1px solid #e65540;
}

/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: none;
  margin-right: -15px;
  margin-left: -15px;
}

.tab01 .nav-tabs .nav-item {
  padding: 8px 16px;
}

.tab01 .nav-link {
  padding: 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid transparent;

  font-size: 15px;
  color: #888888;
  line-height: 1.1;
}

.tab01 .nav-link.active {
  color: var(--title-color);
  border-bottom: 1px solid #6a6a6a;
}

.tab01 .nav-link:hover {
  color: var(--title-color);
  border-bottom: 1px solid #6a6a6a;
}

@media (max-width: 480px) {
  .tab01 .nav-tabs .nav-item {
    padding: 8px 6px;
  }

  .tab01 .nav-tabs {
    margin-right: -6px;
    margin-left: -6px;
  }
}

/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {
  padding-right: 0px !important;
}

.modal {
  padding: 0px !important;
  z-index: 1360;
  overflow-x: hidden;
  overflow-y: auto !important;
}

.modal-open {
  overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
  background-color: transparent;
}

#modal-video-01 {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1350;
}

#modal-video-01 .modal-dialog {
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}

/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/

.bi {
  margin-right: 5px;
}

.greetingss {
  display: none;
}

@media (max-width: 1222px) {
  .greetingss {
    margin-bottom: 0.825rem;
    display: block;
  }
}

.greetingss h1 {
  color: #fff;
  border: #6a6f91;
}

@media (max-width: 1222px) {
  .greetingss h1 {
    display: block;
    margin: 0.2rem 0;
    font-size: 1.1rem;
    padding-left: 30px;
    padding-top: 35px;
  }
}

@media (max-width: 768px) {
  .greetingss h1 {
    display: block;
    margin: 0.15rem 0;
    font-size: 1.1rem;
    padding-left: 30px;
  }
}

.greetingss h3 {
  display: none;
}

@media (max-width: 1222px) {
  .greetingss h3 {
    margin: 0.125rem 0;
    font-size: 1rem;
    padding: 30px;
    display: block;
  }
}

@media (max-width: 768px) {
  .greetingss h3 {
    margin: 0.1rem 0;
    font-size: 1rem;
    padding: 30px;
    display: block;
  }
}

.greetingss h3 .highlited {
  display: none;
}

.sign-in {
  height: 100%;
  width: 100%;
  padding: 3%;
}

.sign-in .sisi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sign-in .sisi .left-part {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-right: 1px solid var(--additional-Color);
}

.sign-in .sisi .left-part .left-part-inner {
  height: 90%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1222px) {
  .sign-in .sisi .left-part {
    display: none;
  }
}

.sign-in .sisi .left-part .header {
  height: 10%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.sign-in .sisi .left-part .header .logo {
  padding-left: 2rem;
  width: 80px;
}

.sign-in .sisi .left-part .content {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sign-in .sisi .left-part .legend {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sign-in .sisi .right-part {
  height: 100%;
  width: 50%;
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1222px) {
  .sign-in .sisi .right-part {
    width: 100%;
  }
}

.sign-in .sisi .right-part .right-part-inner {
  height: 90%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1222px) {
  .sign-in .sisi .right-part .right-part-inner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sign-in .sisi .right-part .right-part-inner .logo {
    display: none;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 1.25rem;
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner .logo {
      display: inline-block;
    }
  }

  .sign-in .sisi .right-part .right-part-inner form .input-sisi {
    margin-bottom: 1.75rem;
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner form .input-sisi {
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner form .input-sisi {
      margin-bottom: 1.35rem;
    }
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner form .input-sisi {
      margin-bottom: 1.25rem;
    }
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner form .input-sisi {
      margin-bottom: 1rem;
    }
  }

  .sign-in .sisi .right-part .right-part-inner form .input-sisi .label {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
  }

  @media (max-width: 1222px) {
    .sign-in .sisi .right-part .right-part-inner form .input-sisi .label {
      font-size: 1rem;
    }
  }

  .sign-in .sisi .right-part .right-part-inner form .input-sisi .label .forgot-password {
    color: var(--additional-Color);
  }

  .sign-in .sisi .right-part .right-part-inner form .input-sisi .label .forgot-password:hover {
    cursor: pointer;
    color: #0c164f;
  }

  .sign-in .sisi .right-part .right-part-inner form .input-sisi .input {
    width: 100%;
    padding: 0.75rem 0.5rem;
    margin-top: 0.5rem;
    outline: none;
    border-radius: 0.25rem;
    background-color: #fefeff;
    border: 2px solid rgba(36, 36, 36, 0.5);
    font-size: 1rem;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn {
    width: 100%;
    position: relative;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
    width: 100%;
    height: 100%;
    padding: 0.9rem 0rem;
    margin: 0.5rem 0;
    color: white;
    background-color: var(--additional-Color);
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    outline: none;
    transition: 0.1s ease-in-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  @media (max-width: 1024px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 0.875rem;
      margin: 0.4rem 0;
    }
  }

  @media (max-width: 768px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 1rem;
      margin: 0.3rem 0;
    }
  }

  @media (max-width: 605px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 0.875rem;
      margin: 0.15rem 0;
    }
  }

  @media (max-width: 425px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 0.75rem;
      margin: 0;
    }
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn:hover {
    background-color: #0c164f;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .overlay {
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .overlay .spinner {
    border: 0.25rem solid #f3f3f3;
    /* Light grey */
    border-top: 0.25rem solid #ffa62b;
    /* Blue */
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    animation: spin 1s linear infinite;
    animation-name: การเคลื่อนไหวที่-1;
  }

  @keyframes การเคลื่อนไหวที่-1 {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .submit-buttonn {
    width: 100%;
    padding: 0.9rem 0rem;
    margin: 0.5rem 0;
    color: white;
    background-color: var(--additional-Color);
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    outline: none;
    transition: 0.1s ease-in-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  @media (max-width: 1024px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonns .submit-buttonn {
      font-size: 0.875rem;
      margin: 0.4rem 0;
    }
  }

  @media (max-width: 768px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 1rem;
      margin: 0.3rem 0;
    }
  }

  @media (max-width: 605px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 0.875rem;
      margin: 0.15rem 0;
    }
  }

  @media (max-width: 425px) {
    .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn {
      font-size: 0.75rem;
      margin: 0;
    }
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .submit-buttonn:hover {
    background-color: #0c164f;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .overlay {
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sign-in .sisi .right-part .right-part-inner form .buttonn .overlay .spinner {
    border: 0.25rem solid #f3f3f3;
    /* Light grey */
    border-top: 0.25rem solid #ffa62b;
    /* Blue */
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    animation: spin 1s linear infinite;
    animation-name: การเคลื่อนไหวที่-1;
  }

  .greetings {
    margin-bottom: 1.25rem;
  }

  @media (max-width: 1222px) {
    .greetings {
      margin-bottom: 0.825rem;
      border-bottom: 1px solid var(--additional-Color);
    }
  }

  @media (max-width: 768px) {
    .greetings {
      margin-bottom: 0.75rem;
      border-bottom: 1px solid var(--additional-Color);
    }
  }

  @media (max-width: 605px) {
    .greetings {
      margin-bottom: 0.6rem;
      border-bottom: 1px solid var(--additional-Color);
    }
  }

  @media (max-width: 425px) {
    .greetings {
      margin-bottom: 0.5rem;
      border-bottom: 1px solid var(--additional-Color);
    }
  }

  .greetings h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
    margin: 0.25rem 0;
    padding-left: 72px;
  }

  @media (max-width: 1222px) {
    .greetings h1 {
      margin: 0.2rem 0;
      font-size: 1.1rem;
      padding-left: 30px;
      padding-top: 35px;
    }
  }

  @media (max-width: 768px) {
    .greetings h1 {
      margin: 0.15rem 0;
      font-size: 1.1rem;
      padding-left: 30px;
    }
  }

  .greetings h3 {
    font-weight: 400;
    margin: 0.15rem 0;
    padding: 73px;
  }

  @media (max-width: 1222px) {
    .greetings h3 {
      margin: 0.125rem 0;
      font-size: 1rem;
      padding: 30px;
    }
  }

  @media (max-width: 768px) {
    .greetings h3 {
      margin: 0.1rem 0;
      font-size: 1rem;
      padding: 30px;
    }
  }

  .greetings h3 .highlited {
    color: var(--additional-Color);
    font-weight: 500;
    cursor: pointer;
  }

  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #2c3e50;
    background-image: none;
  }

  /* Remove IE arrow */
  select::-ms-expand {
    display: none;
  }

  /* Custom Select */
  .select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    line-height: 3;
    background: #2c3e50;
    overflow: hidden;
    border-radius: 0.25em;
  }

  select {
    flex: 1;
    padding: 0 0.5em;
    color: #fff;
    cursor: pointer;
  }

  /* Arrow */
  .select::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #34495e;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
  }

  /* Transition */
  .select:hover::after {
    color: #f39c12;
  }
}

.card {
  width: 100%;
}

.card-img-top {
  height: 452px;
  width: 100%;
}

@media (max-width: 940px) {
  .card-img-top {
    height: 376px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .card-img-top {
    height: 276px;
    width: 100%;
  }
}

@media (max-width: 677px) {
  .card-img-top {
    height: 239px;
    width: 100%;
  }
}

.btn-link {
  color: var(--additional-Color);
}

@media (max-width: 527px) {
  .btn-link {
    font-size: 17px;
  }
}

@media (max-width: 441px) {
  .btn-link {
    font-size: 15px;
  }
}

.contact-form {
  background: #fff;
  padding: 30px;
  width: 100%;
}

.contact-image {
  text-align: center;
}

.contact-image img {
  border-radius: 6rem;
  width: 11%;
  margin-top: -3%;
  transform: rotate(29deg);
}

.contact-form form {
  padding: 8%;
}

.contact-form h3 {
  margin-bottom: 8%;
  margin-top: -10%;
  text-align: center;
  color: var(--additional-Color);
}

.contact-form .btnContact {
  width: 50%;
  border: none;
  border-radius: 1rem;
  padding: 1.5%;
  background: var(--additional-Color);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1094px) {
  .contact-form .btnContact {
    width: 83%;
    border: none;
    border-radius: 1rem;
    padding: 1.5%;
    background: var(--additional-Color);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
  }
}

@media (max-width: 1094px) {
  .contact-form .btnContact {
    width: 93%;
    border: none;
    border-radius: 1rem;
    padding: 1.5%;
    background: var(--additional-Color);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
  }
}

.btnContactSubmit {
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  color: #fff;
  background-color: var(--additional-Color);
  border: none;
  cursor: pointer;
}

.form-control:focus {
  color: #495057;
  background-color: #dfe3e8;
  outline: 0;
  border: 2px solid rgba(36, 36, 36, 0.5);
  box-shadow: none;
}

@media (max-width: 378px) {
  .form-control {
    font-size: 13px;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 2px solid rgba(36, 36, 36, 0.5);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  }
}

@media (max-width: 278px) {
  .form-control {
    font-size: 11px;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 2px solid rgba(36, 36, 36, 0.5);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  }
}

@media (max-width: 248px) {
  .form-control {
    font-size: 9px;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 2px solid rgba(36, 36, 36, 0.5);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  }
}

.fa-heart {
  -webkit-text-stroke: 2px #e5e5e5;
  color: transparent;
  transition: all ease-in-out;
  position: absolute;
  top: 26px;
  right: 20px;
  font-size: 20px;
}

.like-btn {
  position: absolute;
  top: 26px;
  right: 20px;
  font-size: 20px;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}

.like-btn1 {
  z-index: 2;
  cursor: pointer;
}

.like-btn:checked+.fa-heart {
  -webkit-text-stroke: 2px #e5e5e5;
  color: transparent;
  transition: all ease-in-out;
  position: absolute;
  top: 26px;
  right: 20px;
  font-size: 20px;
  color: red;
  -webkit-text-stroke: 1px red;
  animation: 0.5s linear burst;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes burst {

  0%,
  10% {
    transform: scale(1);
    opacity: 0.5;
    color: lavender;
  }

  45% {
    transform: scale(0.2) rotate(30deg);
    opacity: 0.75;
  }

  50% {
    transform: scale(2) rotate(-37.5deg);
    opacity: 1;
    color: red;
    text-shadow: 2px 2px 6px rgba(235, 9, 9, 0.5);
  }

  90%,
  95% {
    transform: scale(1) rotate(10deg);
    text-shadow: none;
  }

  100% {
    transform: rotate(-2.5deg);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
  animation-duration: 2.5s;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation: fadeInUpBig 2s ease-out;
  display: flex;
  justify-content: center;
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation: bounceInUp 4s ease-out;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  bottom: 85px;
  opacity: 0;
}

#snackbar.show {
  visibility: visible;
  opacity: 1;
  animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    bottom: 0;
  }

  to {
    opacity: 1;
    bottom: 85px;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
    bottom: 85px;
  }

  to {
    opacity: 0;
    bottom: 0;
  }
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {

  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

.ldld.full::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
}

.ldld.default::before,
.ldld.full::before,
.ldld.ldbtn::before,
.ldld.bare::before {
  content: " ";
  display: block;
  background: 0;
  animation: ldld-default 0.5s ease-in-out infinite;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
}

.ldld.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.ldld.running {
  visibility: visible;
  opacity: 1;
}

.ldld {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

@keyframes ldld-default {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #e4e7ed;
  border-left: 1px solid #e4e7ed;
  border-bottom: 1px solid #e4e7ed;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #e4e7ed;
  border-left: 1px solid #e4e7ed;
  border-right: 1px solid #e4e7ed;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total,
.order-total11 {
  font-size: 24px;
  color: var(--primary);
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

td {
  vertical-align: middle !important;
}

.big-text {
  font-size: 24px;
}

.qty input {
  width: 100%;
  width: 80%;
  height: 41px;
  outline: none;
  display: inline-block;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
}

.input-number1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-up {
  background-color: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.qty-down {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

.breadcrumb-tree {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}

.breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumb-tree li+li {
  margin-left: 10px;
}

.breadcrumb-tree li+li:before {
  content: "/";
  display: inline-block;
  color: #fff;
  margin-right: 10px;
  margin-left: 10px;
}

.breadcrumb-tree li a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.button:hover .icon svg:hover {
  color: #fff !important;
}

@media (max-width: 600px) {
  .breadcrumb-tree li a {
    font-size: 12px;
  }

  .bg-title-page h2 {
    font-size: 25px !important;
  }
}

html {
  visibility: visible;
  opacity: 1;
}

.info-product{
    display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.stockleft {
 display: inline-flex;
 align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(0, 77, 153, 0.08);
  color: var(--additional-Color);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 0 0 3px var(--additional-Color) inset;
  text-align: center;
  gap: 4px;
}

.modali {
  border: 1px solid #eaecef;
  border-radius: 10px;
  padding: 20px;
  color: #717171;
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
  background-color: #fcfcfc;
}
.modali table {
  width: 100%;
}
.input_container {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.input_container input,
.input_container select {
  text-align: start;
  border: 1px solid #eaecef !important;
  height: 50px;
  width: 49%;
  border-radius: 3px;
  font-size: 14px;
  padding: 6px 12px;
  background-color: #fcfcfc;
  outline: none;
  color: #717171;
  flex: inherit;
}
.input_container input:focus,
.input_container select:focus {
    border-color: red;
    box-shadow: 0 0 4px red;
}
.input-radio1 {
  position: relative;
  display: block;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fcfcfc;

}


.input-radio1 input {
  appearance: none;
  position: absolute;
  line-height: 0;
	margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-radio1 input::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
}

.input-radio1 input:checked::after {
  background-color: var(--additional-Color);
}
#tab-3,
#tab-4 {
  display: none;
}

#tab-3~label,
#tab-4~label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 42px;
  cursor: pointer;
  border-bottom: 2px solid var(--additional-Color);
  padding: 0 10px;
  margin-top: 25px;
}

.label-span {
  font-size: 16px;
  position: relative;
  color: #0a0a0a;
  font-weight: 500;
}

.radio-group,
.radio-group1 {
  max-height: 500px; /* adjust based on your content size */
  overflow: hidden;
   transition: max-height 0.6s ease, padding 0.6s ease;
}
#tab-3:checked ~ .radio-group,
#tab-4:checked ~ .radio-group1 {
 max-height: 0;
  padding: 0 !important;
  margin-bottom: 0;
}

#tab-3:checked~label .upperdown .upper,
#tab-4:checked~label .upperdown .upper {
  display: block;
}

#tab-3:checked~label .upperdown .down,
#tab-4:checked~label .upperdown .down {
  display: none;
}

.upper {
  display: none;
}

.upper i,
.down i {
  font-size: inherit;
  color: var(--additional-Color);
}
.dispo-product{
display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.prodDetailAddCart {
	display: flex;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#judecheckout_show_hide {
  background: #fcfcfc;
  padding: 10px;
  margin-top: 0;
}

#judecheckout_show_hide table {
  margin-bottom: 0;
}

#judecheckout_count_number {
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  padding: 0 3px;
  background-color: var(--additional-Color);
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

#judecheckout_count_number:before {
  content: 'x ';
}

#judecheckout_d_free span {
  display: inline-block;
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  padding: 0 7px;
  background-color: #685f59;
  border-radius: 3px;
  color: #fff;
}

.summary-product-title {
  font-weight: bold !important;
  color: #0a0a0a;
}

.summary-select-state {
  font-size: 14px;
  opacity: .8;
}

.judecheckout_currency {
  display: none;
}

#shipping-methods {
  font-size: 14px;
  margin-left: 10px;
  opacity: .75;
}

#judecheckout_show_hide .variation-prices .crossed-price bdi {
  font-weight: normal;
  color: #aeaeae;
}

#judecheckout_show_hide td {
  border: none;
  border-bottom: 2px dotted #0a0a0a;
  text-align: left;
  padding: 10px 5px 10px;

}

#judecheckout_show_hide .full-price td {
  font-weight: bold;
  border-bottom: 0;
}

#judecheckout_show_hide .full-price td:last-child {
  color: #685f59;

}

.shipping-company-label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}

.shipping-company-logo {
  height: 28px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.shipping-company-name {
  color: #717171;
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .input_container {
    margin-top: 0;
  }
.input_container {
        flex-direction: column;
    }
  .input_container input,
  .input_container select {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 20px !important;
  }

  .credit-card-info--form {
    margin-top: 20px;
  }

  .product-details .add-to-cart .add-to-cart-btn {
    font-size: 11px;
    background-color: #fff;
    color: var(--additional-Color);
    border-color: var(--additional-Color);
    padding: 0px 30px 0px 36px;
  }

  .product-details .add-to-cart .add-to-cart-btn>i {
    opacity: 1;
    visibility: visible;
  }
}
.add-to-cart-btn{
  width: 65%;
}
@media (max-width: 370px) {
  .product-details .add-to-cart .add-to-cart-btn {
    font-size: 10px;
  }
}
.whatsapp-order-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-order-section-2 {
    display: none;
}

.whatsapp-order-section #whatsapp-orders {
    width: 54px;
    height: 54px;
    position: fixed;
    bottom: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(37, 211, 102);
    color: #fff !important;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.whatsapp-order-section #whatsapp-orders:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
@media (max-width: 700px) {
      .add-to-cart-btn{
  width: 45%;
}
}

@media (max-width: 500px) {
      .input_container{
      margin-top: 20px !important;
    }
    .input_container input, .input_container select{
      width: 100% !important;
      margin: 0 !important;
      margin-bottom: 20px !important;
    }
    .credit-card-info--form{
      margin-top: 20px !important;
    }
.info-product {
  flex-direction: column;
}
.dispo-product1, .dispo-product{
  width: 100%;
}
.dispo-product{
margin-top: 10px;
}
    .whatsapp-order-section {
        display: none !important;
    }

    .whatsapp-order-section-2 {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .whatsapp-order-section-2 #whatsapp-orders {
        width: 45px;
        height: 45px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgb(37, 211, 102);
        color: #fff !important;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px 0px;
    }
    .prodDetailAddCart button {
        font-size: 15px;
    }
     .prodDetailAddCart {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        padding: 10px 20px;
        background: #fff;
        z-index: 999;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
        margin-bottom: 0;
    }

}

.wrapperrr {
  width: 100%;
}

.containerrr {
  width: 100%;
  height: 20px;
  position: relative;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}

.slider-track {
  width: 100%;
  height: 3px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: linear-gradient(to right, rgb(218, 218, 229) 0%, var(--additional-Color) 0%, var(--additional-Color) 100%, rgb(218, 218, 229) 100%);
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  cursor: col-resize;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--additional-Color);
  pointer-events: auto;
  outline: none;
}

input[type="range"]::-webkit-range-thumb {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  cursor: pointer;
  border-radius: 50%;
  background-color: black;
  pointer-events: auto;
  border: none;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  cursor: col-resize;
  border-radius: 50%;
  background-color: black;
  pointer-events: auto;
  border: none;
  outline: none;
}

input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 3px solid black;
  border: none;
  outline: none;
}

.values {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.values>* {
  margin: 0 5px;
}

/* Payment Methods Styles */
.payment-methods-container {
  background: #fcfcfc;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  padding-bottom: 0;
}

/* Animation for selection */
@keyframes select-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

.payment_logo {
  width: 18px;
  object-fit: contain;
  margin-left: 4px;
}

.payment-name {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  margin-left: 10px;
  text-align: center;
}

.payment-method-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 5px;
  gap: 9px;
}

#cib-conditions-container {
  display: none;
  margin: 8px 15px;
  padding: 12px 15px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid rgb(232, 232, 232);
  transition: 0.3s;
  margin-bottom: 0px;
  text-align: center;
}
.grecaptcha-badge {
    display: none;
}
/*********** new style of variant ****************/

  /* Layout container */
  .modali-variants {
    padding: 16px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    background: #fcfcfc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    margin: 16px 0 12px;
  }

  /* Title */
  .modali-variants__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
  }

  /* Grid of groups */
  .chips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 15px;
  }

  @media (min-width: 720px) {
    .chips-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Fieldset and legend */
  .chips-fieldset {
    margin: 0;
    padding: 8px;
    border: 1px solid #e6eaee;
    border-radius: 10px;
    background: #fff;
  }

  .chips-legend {
    margin-inline-start: 6px;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 600;
  }

  /* Chip group */
  .chips-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  /* Chip control */
  .chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfe3e8;
    border-radius: 9999px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
  }

  .chip:hover {
    background: #fafbfc;
  }

  /* Hide the native radio, but keep it accessible */
  .chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  /* Label inside the chip */
  .chip__label {
    display: inline-block;
    padding: 8px 10px;
    font-size: 13.5px;
    color: var(--text-color);
    font-weight: 500;
  }

  /* Selected state */
  .chip input[type="radio"]:checked+.chip__label {
    color: #0d47a1;
    background: rgba(25, 118, 210, .08);
    border-radius: 9999px;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, .12) inset;
  }

  /* Required invalid (nothing chosen yet) */
  .chips-fieldset:has(input[required]:invalid) {
    border-color: var(--additional-Color);;
  }
  legend {
    border-bottom: none !important;
    width: auto !important;
    margin-bottom: 0 !important;
  }
  .variant-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 16px;
}
.variant-summary__label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}
.variant-summary__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-available {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(25,118,210,.08);
  color: #0d47a1;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: inherit !important;
}