/* start banner_tab styles */

.banner_tab_wrapper {
  display: flex;
  flex-direction: column;
  margin: 50px 0;
}
.banner_tab_titles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 10px 0 10px;
  color: var(--enablecontrast);
  background-color: var(--enable);
}
.banner_tab_title {
  cursor: pointer;
  padding: 10px 10px 20px 10px;
}
.banner_tab_title.active {
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  padding: 10px 10px 20px 10px;
  color: var(--enable);
  background-color: var(--enablecontrast);
}
.banner_tab_contents {
  display: flex;
  width: 100%;
  height: 100%;
}
.banner_tab_content {
  display: flex;
  width: 100%;
  height: 100%;
}

/* mobile responsive */

@media only screen and (max-width: 600px) {
  .banner_tab_wrapper {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
  }
  .banner_tab_titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 5px 0 5px;
    color: var(--enablecontrast);
    background-color: var(--enable);
  }
  .banner_tab_title {
    padding: 10px;
  }
  .banner_tab_title.active {
    border-radius: 4px 4px 0 0;
    padding: 10px;
    color: var(--enable);
    background-color: var(--enablecontrast);
  }
  .banner_tab_contents {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .banner_tab_content {
    display: flex;
    width: 100%;
    height: 100%;
  }
}

/* end banner_tab styles */

/* start webbanner styles */

.webbanner.dynamic_swipper.swiper {
  position: unset;
}
.webbanner.dynamic_swipper .swiper-button-next,
.webbanner.dynamic_swipper .swiper-button-prev {
  width: fit-content;
  height: fit-content;
  margin: 0;
  transform: translateY(-50%);
}
.webbanner.dynamic_swipper .swiper-button-next {
  right: -45px;
}
.webbanner.dynamic_swipper .swiper-button-prev {
  left: -45px;
}
.webbanner.dynamic_swipper .swiper-button-next:after {
  width: 25px;
  height: 25px;
  padding: 30px 0 25px 15px;
  border-radius: 4px;
  color: var(--enablecontrast);
  background-color: var(--enable);
}
.webbanner.dynamic_swipper .swiper-button-prev:after {
  width: 25px;
  height: 25px;
  padding: 30px 2px 25px 13px;
  border-radius: 4px;
  color: var(--enablecontrast);
  background-color: var(--enable);
}

/* end webbanner styles */

/* start carousel styles */

.owl-carousel .owl-stage {
  display: flex !important;
}

.owl-nav .owl-prev {
  left: -3%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav .owl-next {
  right: -3%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enable);
  background: var(--enablecontrast);
  box-shadow: 0 4px 8px rgb(0 0 0 / 15%);
  border-radius: 2em;
  padding: 0 10px 7px 10px;
  font-size: 30px;
  line-height: 1;
}
.owl-nav .owl-prev:hover span,
.owl-nav .owl-next:hover span {
  color: var(--enablecontrast);
  background: var(--enable);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: unset;
  color: unset;
}

.owl-item {
  border: 5px solid transparent;
}

.owl-item:hover {
  border: 5px solid var(--enable);
}

/* end carousel styles */

/* start menu-btn animation */

.menu-btn a {
  color: var(--enablecontrast);
  position: relative;
  text-decoration: none;
}

.menu-btn a::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--enable);
  background: var(--enablecontrast);
  content: attr(data-menu-title);
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: bottom;
  transition: transform 0.35s ease-in-out;
}

.menu-btn a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom;
}

/* end menu-btn animation */

/* start down-arrow animation */

.down-arrow {
  position: absolute;
  top: -40px;
  left: 45px;
  width: 0;
  height: 22px;
  border: 2px solid;
  border-radius: 2px;
}

@media only screen and (max-width: 600px) {
  .down-arrow {
    top: 10px;
  }
}

.down-arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  left: -10px;
  width: 16px;
  height: 16px;
  border-bottom: 4px solid;
  border-right: 4px solid;
  border-radius: 4px;
  transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 15px;
  }
  100% {
    margin-top: 0;
  }
}

.down-arrow {
  /* rest of the styles from above */
  animation: jumpInfinite 2s infinite;
}

/* end down-arrow animation */

/* start address form items */

.address-item .custom_select_input {
  background-color: var(--white) !important;
  border-radius: 4px !important;
  border-color: var(--default) !important;
}

.address-item .custom_select_input input[hidden] {
  width: 100%;
  height: 100%;
  padding: 10;
  border-radius: 10px;
  font-size: 14px;
}

.address-item .custom_select_option {
  background: var(--white);
}

.address-item .custom_select_option.selected {
  background: var(--enable);
  color: var(--enablecontrast);
}

.address-item .custom_select_option:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#modal-address input:focus,
#new_address input:focus,
.address-item .custom_select_input:focus,
.address-item .custom_select_option:hover {
  color: var(--enablecontrast) !important;
  background-color: var(--enable) !important;
}

.address-item .custom_select_input:checked {
  background: var(--white);
  color: var(--black);
}

.address-item button:active {
  background-color: var(--red);
}

/* ================== HEADER  =================== */
.header_right_arrow {
  display: flex;
  position: relative;
  padding: 10px 0;
}
.header_right_arrow_title {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
}
.header_right_arrow_title:before {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid var(--enable);
  margin: auto;
  margin-right: 25px;
}
.header_right_arrow_title:after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid var(--enable);
  margin: auto;
  margin-left: 25px;
}
.header_right_arrow_arrow_box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--base);
  padding-left: 15px;
  display: flex;
  align-items: center;
  color: inherit;
}
.header_right_arrow_arrow_title {
  font-weight: 600;
  font-size: 15px;
  margin-right: 15px;
}
.header_right_arrow_arrow_arrow {
  position: relative;
  width: 30px;
  height: 2px;
  background: var(--enable);
}
.header_right_arrow_arrow_arrow:before,
.header_right_arrow_arrow_arrow:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  background: var(--enable);
  width: 10px;
  height: 2px;
  transform-origin: 100% center;
}
.header_right_arrow_arrow_arrow:before {
  transform: rotate(45deg);
}
.header_right_arrow_arrow_arrow:after {
  transform: rotate(-45deg);
}
.poptopcenter {
  display: flex;
  padding: 3px;
  color: var(--enablecontrast);
  background: var(--enable);
  border: 1px solid var(--enable);
  margin-top: 5px;
  position: relative;
  justify-content: center;
}
.poptopcenter_arrowwrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
}
.poptopcenter_arrow {
  width: 0px;
  height: 0px;
  position: relative;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid var(--enable);
}
.poptopcenter_arrow:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  color: var(--enablecontrast);
  border-bottom: 10px solid var(--enable);
  left: -10px;
  top: 1px;
}
.poptopcenter_text {
  font-weight: 500;
}

/* ========== MODAL OPEN ============ */
.modal-address-form {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-address-close {
  position: absolute;
  top: 0;
  right: 0;
  color: #535353;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

/* end address form items */

/* media queries custom */

@media only screen and (max-width: 600px) {
  .sticky-top {
    width: 95% !important;
  }
}

@media only screen and (max-width: 600px) {
  .topTopage {
    right: 86%;
    bottom: 75px;
  }
}
/* end header sticky custom */

/* start auth view login page custom css */
.auth-page-content {
  width: 330px;
  padding: 40px 30px;
  background: #fefefe;
  border: 3px solid #efefef;
  border-radius: 50% 50% 50% 50% / 5% 5% 5% 5%;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.2);
}
.auth-page-content .text {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #595959;
}
.auth-page-field {
  height: 50px;
  width: 100%;
  display: flex;
  position: relative;
}
.auth-page-field:nth-child(2) {
  margin-top: 20px;
}
.auth-page-field input {
  height: 100% !important;
  width: 100% !important;
  padding: 0 45px !important;
  outline: none !important;
  border: none !important;
  font-size: 18px !important;
  background: #dde1e7 !important;
  color: #595959 !important;
  border-radius: 25px !important;
  box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73 !important;
}
.auth-page-field input:focus {
  box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #ffffff73 !important;
}
.auth-page-field > span {
  position: absolute !important;
  color: #595959 !important;
  width: 50px !important;
  line-height: 50px !important;
  text-align: center !important;
}
.auth-page-field label {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: 45px !important;
  pointer-events: none !important;
  color: #666666 !important;
  transition: 0.2s ease all !important;
  -moz-transition: 0.2s ease all !important;
  -webkit-transition: 0.2s ease all !important;
}

.auth-page-forgot-pass {
  text-align: right;
  width: 100%;
  margin: -25px 10px 0 0;
}
.auth-page-forgot-pass a {
  font-size: 14px !important;
  color: #3498db !important;
  text-decoration: none !important;
}
.auth-page-forgot-pass:hover a {
  text-decoration: underline !important;
}
.auth-page-content button {
  margin: 15px 0 !important;
  width: 100% !important;
  height: 50px !important;
  font-size: 18px !important;
  line-height: 50px !important;
  font-weight: 600 !important;
  background: #dde1e7 !important;
  border-radius: 25px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  color: #595959 !important;
  box-shadow: 2px 2px 5px #babecc, -5px -5px 10px #ffffff73 !important;
  transition: 0.3s !important;
}

.auth-page-content button:hover {
  background-color: #4caf50 !important;
  color: white !important;
}

.auth-page-content button:active {
  background-color: #4caf50 !important;
  color: white !important;
  transform: scale(0.95) !important;
}

.auth-page-field input:focus {
  outline: none !important;
}

.auth-page-field input:focus ~ label,
.auth-page-field input:valid ~ label,
.auth-page-field input:-webkit-autofill ~ label {
  top: -10px !important;
  font-size: 14px !important;
  color: #3498db !important;
}

/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
  from {
    background: #3498db;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #3498db;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #3498db;
  }
  to {
    width: 0;
    background: transparent;
  }
}
/* end auth view login page custom css */

/* start success-checkmark custom css */
.success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4caf50;
}
.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: #fff;
  transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4caf50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #fff;
}
@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
.success-message span {
  animation: successMessage 0s 0.5s forwards;
  opacity: 0;
  color: #4caf50;
  font-size: 18px;
  font-weight: 600;
  font-family: monospace;
  transition: 0.5s all;
}
@keyframes successMessage {
  to {
    opacity: 1;
  }
}
/* end success-checkmark custom css */
 