
    .g-recaptcha {
      display: none;
    }

    .loader {
      width: 13px;
      padding: 2px;
      height: 13px;
      border: 2px solid #898989;
      border-top: 2px solid rgb(211 211 211);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    .container {
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }

    .dropdown input[type="tel"] {
      font-size: 16px;  
        border: none;
        outline: none;
        width: 100%;
        box-sizing: border-box;
        background-color: transparent;
      } 

      input[type="tel"]:focus {
        border: none;
        outline: none;
        box-shadow: none;
        
      }

    .dropdown {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 8px;
      width: 80%;
      cursor: pointer;
      padding: 10px 6px;
      gap: 6px;
      width: 100%;
    }

    .selected {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .options {
      display: none;
      position: absolute;
      background-color: white;
      border: 1px solid #000000;
      width: 100%;
      max-height: 96px;
      overflow-y: auto;
      z-index: 999;
      font-size: 14px;
      top: 43px;
      left: -1px;
      overflow-y: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      border-radius: 10px;
    }

    .options::-webkit-scrollbar {
      display: none;
      /* Chrome, Safari */
    }

    .option {
      padding: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .flag-icon {
      width: 23px;
      height: 15px;
    }

    .selected-content {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .dropdown-arrow {
      font-size: 9px;
      color: #555;
      pointer-events: none;
      /* so clicks only toggle dropdown */
    }


    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }
  