@import url("variables.css");


.form-popup{
    display: none;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    background-color: var(--token--surface--primary);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.step-2, .step-3, .step-4, .step-5, .step-6, .step-7{
    display: none;
}
.form-steps{
    display: none;
    position: absolute;
    bottom: 2.5rem;
}
.form-step{
    background-color: #DDDFE6;
    width: 2.5rem;
    height: 0.25rem;
    border-radius: 2rem;
}
.form-step.is--active{
    background-color: #090A0D;
}

.input:focus{
    border-color: #090A0D;
    outline: none;
}

.input{
    height: 3rem;
    border-radius: 4px;
    border: 0.5px solid #DDDFE6;
    background-color: transparent;
    padding: 0px 8px;
    font-size: 1rem;
}
.input::placeholder{
    color: #CCCED6;
}
.inputs-wrapper{
    width: 400px;
}

input[type="radio"], input[type="checkbox"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    min-width: 1.5rem;
    min-height: 1.5rem;
    border-radius: 4px !important;
    background-color: transparent;
    border: 0.5px solid #DDDFE6;
    margin: 0px;
}
input[type="radio"]:checked, input[type="checkbox"]:checked {
    background-image: url('/images/checkbox-checked.svg'); 
    background-size: cover;
  }
  label {
    font-weight: 400 !important;
    cursor: pointer;
}
.radio-wrapper{
    height: 3rem;
    border-radius: 4px;
    border: 0.5px solid #DDDFE6;
    background-color: transparent;
    padding: 0px 8px;
    font-size: 1rem;
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
    cursor: pointer;
}
.checkbox-wrapper{
    padding: 12px 8px;
    display: flex;
    column-gap: 0.5rem;
    align-items: start;
}
.conditional-input{
    display: none;
}
.error-msg{
    display: none;
    color: var(--token--ink--negative);
}

.close-popup{
    position: absolute;
    top: 2.5rem;
    right: 4rem;
    cursor: pointer;
}

.ch15{
    max-width: 15ch;
}
.ch20{
    max-width: 20ch;
}
.ch38{
    max-width: 38ch;
}
.ch42{
    max-width: 42ch;
}
.yellow-span{
    background-image: linear-gradient(360deg, #0000 18%, var(--token--spot--yellow) 15% 79%, #0000 79%);
}

@media screen and (max-width: 479px) {
.inputs-wrapper{
    width: 300px;
}
.close-popup{
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    cursor: pointer;
}

}