@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background: #2386C1;
}

.rbtnList {
    color: white;
    list-style: none;
    padding: 0;
}

    .rbtnList input[type="radio"] {
        display: none;
    }

    .rbtnList label {
        display: block;
        padding: 10px;
        border: 1px solid white;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 5px;
        transition: background-color 0.3s, color 0.3s;
    }

    .rbtnList input[type="radio"]:checked + label {
        background-color: #1D3A64;
        color: white;
    }

    .rbtnList label:hover {
        background-color: #1D3A64;
    }



.red-star {
    color: red;
}



fieldset {
    margin-bottom: 2%;
}

legend, .legend {
    text-align: center;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: bold;
}

textarea {
    height: 80px;
    resize: none;
}

.LoadingIcon {
    display: none;
    width: 47px;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
}

    .AlseinTable td:nth-child(3n+1) {
        color: #1D3A64;
        width: 12px;
        text-align: center;
    }

    .AlseinTable td:nth-child(3n+2) {
        padding: 3px;
        border: 1px solid black;
        color: #1D3A64;
        border-radius: 5px;
        width: 150px;
        text-align: center;
        font-weight: bold;
        background: #fff;
    }