  * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f5f5f5;
    }
    

    header {
      background-color: #ffffff;
      border-bottom: 1px solid #ddd;

      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header h1 {
      margin: 0;
      font-size: 20px;
    }

    header nav a {

    text-decoration: none;
    color: #fff;
    background: #d41608;
    border-radius: 5px;
    }

    .top-banner {
        background-color: #467db1;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    }

    .container {
      max-width: 1000px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 25px;
    }

    h2.section-title {
      font-size: 22px;
      color: #007eb6;
      margin-bottom: 10px;
    }

    .section {
      border-top: 1px solid #eee;
      padding-top: 20px;
      margin-top: 20px;
    }

    label {
      display: block;

      margin-bottom: 6px;
    }

    input, select,textarea {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
    
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      min-width: 250px;
      margin-bottom: 15px;
    }

    .checkbox {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

  

    button {
        background-color: #5dc1e4;
        color: white;
        border: none;
        padding: 13px 50px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
    }

    button:hover {
      background-color: #4ba6c4;
    }

    footer {
      text-align: center;
      padding: 20px;
      font-size: 15px;
      color: #777;
    }

    footer a {
      color: #007eb6;
      text-decoration: none;
    }

    /* Base popup */
  .success-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
  }
  .success-popup .popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    text-align: center;
  }

  /* Success state (green) */
  .success-popup.success .popup-content {
    border: 2px solid #28a745;
    color: #155724;
    background: #d4edda;
  }
  .success-popup.success #ok-btn{
      background-color: #22a02d;
  }
  .success-popup.success #ok-btn:hover{
    background-color: #128f1d;
  }

  /* Failed state (red) */
  .success-popup.failed .popup-content {
    border: 2px solid #cb0c1f;
    color: #721c24;
    background: #f8d7da;
  }
  .success-popup.success #ok-btn{
    background-color: #22a02d;
  }
  .success-popup.success #ok-btn:hover{
  background-color: #128f1d;
  }
  .success-popup.failed #ok-btn{
    background-color: #cb0c1f;
  }
  .success-popup.failed #ok-btn:hover{
  background-color: #a10313;
  }
  label.error{
    color: red;
  }
  #bottom-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #totalAmount{
    font-weight: 700;
  }
  @media only screen and (max-width: 399px) {
    .logo img{
        height: 25px;
      }
  }
  @media only screen and (min-width:400px) and (max-width:767px){
    .logo img{
        height: 35px;
      }
  }
  @media only screen and (max-width: 767px) {
    span.rs-highlight,.price-abs,label{
      font-size: 15px;
    }

    .popup-content {
        width: 95%;
        padding: 20px;
    }
    header nav a {
      margin-left: 10px;
      padding: 8px;
      font-size: 12px;
    }
    header {
      padding: 15px 10px
    }
    .container {
      margin: 30px 10px;
    }
    .radio_input{
      flex-direction: column;
    }
    .radio_input .container_radio {
      width: 100%;
    }
    .form-row {
      gap: 10px;
    }
  }
  @media only screen and (min-width: 768px) {
    .form-row {
      gap: 20px;
    }
    label {
      font-size: 16px;
    }
    .radio_input .container_radio {
      width: 50%;
    }
    .popup-content {
        width: 50%;
        padding: 50px;
    }
    .logo img{
      height: 50px;
    }
    header nav a {
        margin-left: 20px;
    padding: 10px 20px;
    }
    header {
      padding: 15px 20px;
    }
    .container {
      margin: 60px auto 30px;
    }
  }
  @keyframes textglowing{
    0% {
      background-color: #B20000;
      box-shadow: 0 0 3px #B20000;
    }
    50% {
      background-color: #FF0000;
      box-shadow: 0 0 40px #FF0000;
    }
  }

  .blinks-email,.blinks-email:hover,.blinks-email:visited{
    color: #d41608;
  }

  .form-group {
    position: relative;
  }

  .container_check.version_2 {
    padding: 14px 15px;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ddd;
    min-height: 30px;
    font-weight: 400;
  }

  .dropdown-item {
    display: none;
    overflow: hidden;
    transition: all 1.3s ease;
  }

  .form-group .downarrow {
    font-size: 18px;
    font-size: 1.125rem;
    position: absolute;
    right: 10px;
    top: 15px;
    color: #ccc;
    width: 20px;
    height: 20px;
    display: block;
    font-weight: 400 !important;
  }

  .dropdown.current {
    border-top: 1px solid #1dbe72;
    border-right: 1px solid #1dbe72;
    border-left: 1px solid #1dbe72;
  }

  .dropdown.current .downarrow {
    transform: rotate(181deg);
    right: 10px;
    top: 8px;
  }

  .dropdown.current .downarrow {
    transform: rotate(181deg);
    right: 10px;
    top: 8px;
  }

  .dropdown-item.current {
    position: absolute;
    width: 100%;
    display: block;
    top: 40px;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
    border-bottom: 1px solid #1dbe72;
    border-right: 1px solid #1dbe72;
    border-left: 1px solid #1dbe72;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }

  .dropdown-item .container_check {
    position: relative;
    background: transparent !important;
    border: 0px !important;
  }

  .price-abs {
    display: block;
    width: 75%;
    text-align: left;
    margin-left: 30px;
  }

  .container_check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .container_check.version_2 .checkmark {
    height: 24px;
    width: 24px;
    top: 14px;
    left: 10px;
  }

  .container_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  span.rs-highlight {
    position: absolute;
    right: 10px;
    color: red;
    font-weight: 700;
  }

  .container_check input:checked~.checkmark {
    background-color: #1dbe72;
    border: 1px solid transparent;
  }

  .container_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .container_check input:checked~.checkmark:after {
    display: block;
  }

  .container_check.version_2 .checkmark:after {
    top: 5px;
    left: 8px;
    width: 5px;
    height: 10px;
  }

  .container_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .popup-content {
    position: relative;
  }

  .popup-content {
    background-color: #fff;
    margin: 15% auto;
    border: 1px solid #888;
  }

  .popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
  }

  .upload-btn {
    margin-top: 20px;
  }

  #document-verification {
    padding: 5px 15px;
  }

  .close {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    background: #5dc1e4;
    padding: 5px 12px;
    color: #fff;
    font-size: 24px;
  }


  .radio_input {
      display: flex;
    gap: 20px;
  }
  .radio_input .container_radio {
      display: flex;
      align-items: center;
      font-size: 16px;
      padding: 15px 20px 15px 40px;
      border: 1px solid #ccc;
      border-radius: 2px;
    line-height: 1.3;
    position: relative;
  }
  .radio_input .container_radio {
      margin: 5px 0 0 0;
  }
  .container_radio input {
      position: absolute;
      opacity: 0;
  }
  .container_radio .checkmark {
      position: absolute;
      top: 15px;
      left: 10px;
      height: 20px;
      width: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 50%;
  }
  .container_radio .checkmark {
      position: absolute;
      top: 15px;
      left: 10px;
      height: 20px;
      width: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 50%;
  }
  .container_radio input:checked ~ .checkmark:after {
      opacity: 1;
  }
  .container_radio .checkmark:after {
      display: block;
      content: "";
      position: absolute;
      opacity: 0;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      top: 3px;
      left: 3px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #1dbe72;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
  }
  .text-danger{
    color: red;
  }
  .radio_input .price-abs{
    margin-left: 0px;
  }
  .sans-font{
    font-family: sans-serif;
  }