﻿/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: robo;
    background-color: #f8f9fa;
}*/

.wizard {
    margin-top: 20px;
}

.accordion-button {
    display: flex;
    align-items: center;
}

.step-image {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.step-head {
    color: #fff;
    background-color: #d72d26;
    border-color: #d72d26;
    /*color: #fff;
    background-color: #899499;
    border-color: #899499;*/
}

.selected-option {
    margin-left: auto;
    font-weight: bold;
}

.option-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.result-card {
    text-align: center;
    margin-top: 20px;
}

.card {
    margin: 10px;
}


/* Hide the original radio buttons */
.RadioButtonList1 input[type="radio"] {
    display: none;
}

/* Style the labels to look like option buttons */
.RadioButtonList1 label {
    display: inline-block;
    padding: 10px 20px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    /*background-color: #f9f9f9;*/
    /*background-color: #3a526a;
    border-color: #3a526a;*/
    
    color: #fff;
    background-color: #899499;
    border-color: #899499;

    transition: background-color 0.3s, border-color 0.3s;
    min-width: 200px;
    text-align: center !important;
}

/* Change background color and border when the option is selected */
.RadioButtonList1 input[type="radio"]:checked + label {
    background-color: #3a526a;
    border-color: #3a526a;
    color: #fff;
    /*background-color: #007bff;
    border-color: #007bff;*/
}

/* Optional: Add hover effect */
.RadioButtonList1 label:hover {
    background-color: lightgray; /*#e0e0e0;*/
    color: #d72d26;
    font-weight: 700;
}

.bg-colored {
    background-color: #3a526a !important;
}

.text-white {
    color: #fff !important;
}

.link-more {
    color: #fff;
    background-color: #d72d26;
    border-color: #d72d26;
}

    .link-more:hover {
        color: #fff;
        background-color: #283849;
        border-color: #243342;
    }

.card-head {
    color: #fff;
    background-color: #d72d26;
    border-color: #d72d26;
}

p {
    text-align: justify !important;
}

.text-justify {
    text-align: justify !important;
}


@media (max-width: 600px) {
    .RadioButtonList1 label {
        width: 90%;
    }

    .mobile-margin {
        margin-left: 10px;
        margin-right: 10px;
    }
}
