body {
    background-color: #F1F0ED;
    margin: 0;
    padding: 0;
    font-family: 'PublicSans';
    font-weight: normal;
    /* overflow-y: hidden; */
    /* overflow-x: hidden; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.coral_slash_hover::before {
    content: "/";
    font-family: 'PublicSans';
    font-weight: bold;
    color: #EE686A;
}

.coral_slash_hover:hover::before {
    content: "/";
    font-family: 'PublicSans';
    font-weight: bold;
    color: #ffffff;
}

.coral_slash::before {
    content: "/";
    font-family: 'PublicSans';
    font-weight: bold;
    color: #EE686A;
}

.coral_slash_navy::before {
    content: "/";
    font-family: 'PublicSans';
    font-weight: bold;
    color: #EE686A;
}

.coral_slash_navy {
    color: #000D44;
}

.coral_slash_disabled::before {
    content: "/";
    font-family: 'PublicSans';
    font-weight: bold;
    color: #5B5A5A;
}

.no_style {
    color: white;
    text-decoration: none;
}

.no_style_navy {
    color: #000D44;
    text-decoration: none;
}

.form_content {
    flex: 1;
}

.content {
    position: relative;
    background-color: #F1F0ED;
    display: flex;
    flex-direction: row;
    gap: 0.5vw;
    
    width: 100%;
    height: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    
}

.bold {
    font-weight: bold;
}


/* Buttons */
.primary_option {
    cursor: pointer;
    color: white;
    background-color: #000D44;
    /* border-radius: 8px; */
    border-style: none;
}

.primary_option:hover {
    color: #000D44;
    background-color: #EE686A;
    border-style: none;
}

.primary_option:hover a {
    color: #000D44;
}

.secondary_option {
    background-color: white;
    border: #000D44 solid 2px;
}

.secondary_option:hover {
    background-color: #EE686A;
    color: #000D44;
    border: solid 2px transparent;
}

.secondary_option:hover a {
    border: none;
}

.disabled_option {
    background-color: #E3E3E2;
    color: #5B5A5A;
    border-style: none;
}

.disabled_option a {
    color: #5B5A5A;
}

.disabled_option_text {
    color: #5B5A5A;
}

.a_inside_div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a_inside_div_justify_start {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.button_inside_div {
    border-radius: 8px;
    height: 5vh;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
}

.button_flat_style {
    border-style: none;
}

.text-16 {
    font-size: 16px;
}

.desktop_methods_info {
    display: block;
}

.spinner {
    position: fixed;
    bottom: 10vh;
    left: calc(50vw - 20px);
    align-self: center;
    justify-self: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FF7777;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


#form {
    height: 100%;
}

.vd-selector {
    box-sizing: border-box;
    cursor: pointer;
    height: 48px;
    max-width: 350px;
    width: 100%;
    background-color: white;
    border: 2px solid #737999;
    border-radius: 8px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    margin-top: 4px;
}

.vd-selector:hover {
    border: 2px solid #EE686A;
}

.vd-selector-text {
    color: #00051C;
}

.vd-border-blue {
    border: 2px solid #737999;
    border-radius: 8px;
    padding: 16px;
}

.vd-align-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;

}

/* Half desktop */
@media (min-width: 660px) and (max-width: 1100px) {
    body {
        background-color: #F1F0ED;
        margin: 0;
        font-family: 'PublicSans';
        font-weight: normal;
        overflow-y: scroll;
    }

    .content {
        background-color: #F1F0ED;
        display: flex;
        flex-direction: column;
        
        width: 100%;
        height: 100%;
        justify-content: space-between;
    
    }   
}
/* Mobile */
@media (max-width: 660px) {
    body {
        background-color: #F1F0ED;
        margin: 0;
        font-family: 'PublicSans';
        font-weight: normal;
        justify-content: flex-start;
        overflow-y: scroll;
    }
    
    .form_content {
        height: auto;
    }

    .content {
        background-color: #F1F0ED;
        display: flex;
        flex-direction: column;
        
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        gap: 1vw;
    }
    
    .desktop_methods_info {
        display: none;
    }

    .vd-selector {
        max-width: none;
        width: 100%;
    }
    
    .vd-selector:hover {
        border: 2px solid #EE686A;
    }
}

