/* PAYMENT PAGE ADDITIONAL STYLES */
/* Used to override some webflow default styles and add custom styles */

label {
  font-weight: inherit;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
}

/* If tag applied to dropdown increase right padding */
.input-wrap:has(.dropdown_wrap) .input-tag-optional {
  right: 2.75rem;
}

.checkbox_input:checked {
  background-color: #5645e1;
}

.checkbox_input:checked::after {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0px;
  width: 0.3125rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
  border-radius: 0.125rem;
  transform: rotate(45deg);
}

/* Disabled Pseudo-class */
.btn-main:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Phone input */
.iti {
  width: 100%;
}

/* Hide arrows in WebKit browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: none;
}

/* SCROLLBAR */
/* all scrollbars except page scrollbar (html/body) */
*:not(html):not(body)::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

*:not(html):not(body)::-webkit-scrollbar-track {
  background: rgb(226, 226, 226);
  border-radius: 4px;
}

*:not(html):not(body)::-webkit-scrollbar-thumb {
  background: rgba(44, 44, 52, 0.35);
  border-radius: 4px;
}

*:not(html):not(body)::-webkit-scrollbar-thumb:hover {
  background: rgba(44, 44, 52, 0.5);
}

/* SLIDER (additional to WF styles) */
.slider_wrap.is-dragging .slider_track {
  transition: none;
}

.slider_wrap.is-dragging,
.slider_wrap.is-dragging .slider_viewport,
.slider_wrap.is-dragging .slider_track {
  cursor: grabbing !important;
  cursor: -webkit-grabbing !important;
}

.slider_prev.is-disabled,
.slider_next.is-disabled,
.slider_prev:disabled,
.slider_next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* iframe is NOT interractive by default (to prevent ruining swipe) */
.slider_video iframe {
  pointer-events: none;
}

/* After interactive mode is enabled */
.slider_video.is-interactive iframe {
  pointer-events: auto;
}

.slider_video.is-interactive .slider_iframe-shield {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .slider_track {
    transition-duration: 0ms;
  }
  .slider_dot {
    transition-duration: 0ms;
  }
}
