.absolute-100 {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    object-fit: contain;
    background-color: #000;
    filter: brightness(60%);
    transition: 10ms;
}

.bg-overlay_olsa {
    background: url("../images/background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.form-group {
    margin-bottom: 1rem !important;
}



.custom-radio {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.custom-radio input[type="radio"] {
    display: none;
}

.radio-label {
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.radio-circle {
    width: 17px;
    height: 15px;
    border: 2px solid #ffcc00;
    border-radius: 50%;
    margin-right: 5px;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.radio-text {
    font-size: 12px;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.radio-a {
    font-size: 15px;
    color: #333;
}

.custom-radio input[type="radio"]:checked+.cs-radio {
    background-color: #ffcc00;
}

.custom-radio input[type="radio"]:checked+.cs-radio .radio-circle {
    border-color: #fff;
    background-color: #ffcc00;
}

.custom-radio input[type="radio"]:checked+.cs-radio .radio-text {
    color: #64748b;
}