
:root{
  --primary: #5454e9;
  --secondary: #95d31d;
  --background: #F7F8FE;
  --border: #e9e9e9;
  --white: #fff;
}

.vs_forms_oficiona_internacional_espaniol{
  position: relative;
  padding: 0;

  .wrapper-fields{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 20px;

    .wrap-radio{
      label{
        margin-right: 10px;
        &:last-child{
          margin-right: 0;
        }
      }
    }
  }

  .wrap-list{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border);
    background-color: var(--white);
    @media screen and (max-width: 1023px){
      border: none;
      border-bottom: 1px solid var(--border);
    }

    .img-selected{
      width: 32px;
      height: 24px;
    }

    .wrapper-filter-flags{
      background-color: var(--background);
      position: absolute;
      left: 0;
      top: 105%;
      width: 100%;
      visibility: hidden;
      z-index: 99;
      &.show-list{
        visibility: visible;
      }
      
      input{
        background-color: #fff;
        width: 100%;
        @media screen and (max-width: 1023px){
          padding: 8px;
        }
      }
      
      .wrap-options{
        overflow-y: scroll;
        max-height: 180px;
        height: auto;
    
        .wrap-country-data{
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 5px;
          &:hover{
            background-color: var(--secondary);
          }
    
          .flag-country{
            width: 24px;
          }
    
          span{
            color: #3F4159;
          }
        }
      }
    }
  }

  .wrap-fields{
    display: flex;
    gap: 8px;
    position: relative;

    .list-countries{
      width: fit-content;

      label{
        width: max-content;
      }
      .browser-default{
        display: none;
      }
    }
    
    .input-phone {
      flex: 1 1 auto;
    }
  }
}