/* =================================================================== 
 *  Imminent Vendor/Third Party CSS
 *  Template Ver. 1.0.0 
 *  09-19-2019
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  # slick slider
 *  # prettyprint GitHub Theme
 *
 * =================================================================== */


/* ===================================================================
 * # slick slider
 * http://kenwheeler.github.io/slick/
 * ------------------------------------------------------------------- */

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* -------------------------------------------------------------------
 * ## Radio button
 * ------------------------------------------------------------------- */

* {
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background-color: black;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.input-container {
  position: relative;
  height: 7rem;
  width: 7rem;
  margin: 0.5rem;
}

.radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #079ad9;
  border-radius: 5px;
  padding: 1rem;
  transition: transform 300ms ease;
}

.icon svg {
  fill: #079ad9;
  width: 3rem;
  height: 3rem;
}

.radio-tile-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #079ad9;
}

.radio-button:checked + .radio-tile {
  background-color: #079ad9;
  border: 2px solid #079ad9;
  color: white;
  transform: scale(1.1, 1.1);
}

.radio-button:checked + .radio-tile .icon svg {
  fill: white;
  background-color: #079ad9;
}

.radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
  background-color: #079ad9;
}


/* -------------------------------------------------------------------
 * ## intro content notify
 * ------------------------------------------------------------------- */
.intro-content__notify button {
  width: 140px;          /* Example: set fixed width (adjust as needed) */
  max-width: 100%;       /* Optional: don't exceed container width */
  text-align: center;    /* Center text inside the button */
  z-index: 2;
  font-size: 2.7rem;  /* Increase font size as needed */
  margin: 0;
  height: 8.0rem !important;
  line-height: 5.4rem !important;
  border: 0.7px solid #ffffff !important;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  border-radius: 4px;
}

.intro-content__notify button svg {
  fill: #ffffff;
  height: 2.0rem;
  width: 2.0rem;
  margin-left: .4rem;
}

.intro-content__notify button::before {
  z-index: -1;
  content: "";
  height: 100%;
  width: 0;
  background-color: #349aed;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.intro-content__notify button:hover {
  color: #ffffff;
}

.intro-content__notify button:hover svg {
  fill: #ffffff;
}

.intro-content__notify button:hover::before {
  width: 100%;
  border-radius: 4px;
}

/* Base button */
.btn {
  display: inline-block;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .3rem;
  line-height: 1;
  padding: 1.2rem 3.2rem;
  margin: 0 0.8rem 1.6rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  background-color: transparent;
}

/* Stroke style */
.btn--stroke {
  border: 2px solid #000000;
  color: #000000;
  background-color: transparent;
}

.btn--stroke:hover,
.btn--stroke:focus,
.btn--stroke:active {
  background-color: #000000;
  color: #ffffff;
  border-radius: 4px;
}

/* Small size */
.btn--small {
  font-size: 1.2rem;
  padding: 1rem 2.4rem;
}

/* Optional modal trigger – can be used for JS hooks */
.modal-trigger {
  /* No styling needed unless you want hover or JS targeting */
}

/* Optional: Button SVG icon styling */
button svg {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  fill: currentColor;
}


.share-box {
    display: inline-flex;
    align-items: center;
    background-color: #349aed;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
  }
  .share-box svg {
    fill: white;
  }
  

  .how-its-work {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* horizontal and vertical spacing between boxes */
}

.how-its-work .hc {
  flex: 1 1 200px; /* grow and shrink, minimum width 200px */
  height: 150px;   /* fixed height */
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-sizing: border-box;
  
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  gap: 8px; /* space between h2, h3, p */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Optional: Smaller font sizes to fit content nicely */
.how-its-work .hc h2 {
  font-size: 20px;
  margin: 0;
}
.how-its-work .hc h3 {
  font-size: 16px;
  margin: 0;
}
.how-its-work .hc p {
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
}


/* ===================================================================
 * # Collapse and expand
 *
 * ------------------------------------------------------------------- */

    .card {
      border: none;
      border-bottom: 1px solid #ddd;
    }
    .card:last-child {
      border-bottom: none;
    }
    .card-header {
      background-color: #f9f9f9;
      cursor: pointer;
      padding: 15px 20px;
      position: relative; /* important for positioning icon */
    }
    .card-header a {
      color: #003366;
      text-decoration: none;
      display: block;
      font-size: 18px;
      font-weight: 600;
      padding-right: 60px; /* space for icon on right */
      position: relative;
    }
    /* The circular icon */
    .toggle-icon {
      position: absolute;
      top: 50%;
      right: 20px; /* extreme right with some padding */
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      border: 2px solid #003366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #003366;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    /* Hover effect on the header */
    .card-header:hover .toggle-icon {
      background-color: #003366;
      color: white;
    }
    /* Collapsible content */
    .collapse {
      display: none;
      padding: 15px 20px;
      color: #003366;
      background: #fff;
      line-height: 1.5;
    }
    .collapse.show {
      display: block;
    }
    .toggle-icon {
  line-height: 0;
  }


 #otp-input {
            display: flex;
            column-gap: 8px;
        }

        #otp-input input {
            text-align: center;
            padding: 10px 8px 10px 8px;
            border: 1px solid #adadad;
            border-radius: 4px;
            outline: none;
            height: 64px;
            width: 50px;
        }

        #otp-input input:focus {
            border: 1px solid #497e76;
        }

        #otp-input input:focus::placeholder {
            color: transparent;
        }

        #otp-input input::-webkit-outer-spin-button,
        #otp-input input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        #otp-input input[type="number"] {
            -moz-appearance: textfield; /* Firefox */
        }  

/* ===================================================================
 * # prettyprint GitHub Theme
 *
 * ------------------------------------------------------------------- */
.prettyprint {
  background: #efefef;
  font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.538;
  border-radius: 4px;
  border: none;
}

.pln {
  color: #333333;
}

@media screen {
  .str {
    color: #dd1144;
  }

  .kwd {
    color: #333333;
  }

  .com {
    color: #999988;
  }

  .typ {
    color: #445588;
  }

  .lit {
    color: #445588;
  }

  .pun {
    color: #333333;
  }

  .opn {
    color: #333333;
  }

  .clo {
    color: #333333;
  }

  .tag {
    color: navy;
  }

  .atn {
    color: teal;
  }

  .atv {
    color: #dd1144;
  }

  .dec {
    color: #333333;
  }

  .var {
    color: teal;
  }

  .fun {
    color: #990000;
  }

}

@media print, projection {
  .str {
    color: #006600;
  }

  .kwd {
    color: #006;
    font-weight: bold;
  }

  .com {
    color: #600;
    font-style: italic;
  }

  .typ {
    color: #404;
    font-weight: bold;
  }

  .lit {
    color: #004444;
  }

  .pun,
  .opn,
  .clo {
    color: #444400;
  }

  .tag {
    color: #006;
    font-weight: bold;
  }

  .atn {
    color: #440044;
  }

  .atv {
    color: #006600;
  }

}

.lefthiden {
  visibility: hidden;
}


/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
}

/* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L4,
li.L5,
li.L6,
li.L7,
li.L8,
li.L9 {

  /* */
}

/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {

  /* */
}

/*# sourceMappingURL=vendor.css.map */
