.blue_button_small {
    width: auto;
    height: auto;
    padding: 11px 24px;
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--blue);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.blue_button_small:hover {
    background-color: var(--darkblue);
}

.grey_button_small {
    width: auto;
    height: auto;
    padding: 11px 24px;
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--grey);
    cursor: pointer;
    text-decoration: none;
}

.red_button_small {
    width: auto;
    height: auto;
    padding: 11px 24px;
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--iscared_darker);
    cursor: pointer;
    text-decoration: none;
}

h1 {
    font-family: 'SUSE', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 3rem;
    font-feature-settings: "cv02", "cv03", "cv04";
    line-height: 3.5rem;
    margin-bottom: 1rem;
}

.form-check-input {
    border: 1px solid #333333;
}

@media only screen and (max-width: 768px) {
    .col-9 {
        width: 90vw;
        margin: 0 auto 0 auto;
    }

    .col-4 {
        width: 90vw;
        margin: 0 auto 0 auto;
    }

    .col-3 {
        width: 90vw;
        margin: 0 auto auto;
    }
}

.dropdown-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-option:hover {
    background-color: #ffff66;
}

.color-box {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #000;
}

.dropdown-menu {
    max-height: 250px;
    overflow-y: auto;
}

.card-body {
    height: 220px;
}

.submitBtn {
    display: none !important;
}

.card-input-element {
    display: none !important;
}

.background_lightblue {
    background-color: #cfd6ea;
}

.container {
    max-width: 1440px;
}

.accordion-button {
    background-color: var(--verylightblue) !important;
}

.text-success {
    background-color: white !important;
}

button.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.accordion-item.border-success {
    border-width: 2px !important;
    border-color: #28a745 !important;
}

.accordion-button.text-success::after {
    display: none !important;
    /* This hides the ▼ chevron */
}

.accordion-item {
    transition: border-color 0.3s ease-in-out;
}

.accordion-button {
    transition: color 0.3s ease-in-out;
}

.accordion-button i.bi-check-circle-fill {
    color: #28a745;
    font-size: 1.1em;
    vertical-align: middle;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

.accordion-button i.icon-pending {
    opacity: 0;
    transform: scale(0.5);
}

.accordion-item.animate-complete {
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
    transition: box-shadow 0.5s ease-in-out;
}

#completeMessage {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#process-container,
.container,
.row,
.col-3 {
    overflow: visible !important;
}

#sticky-summary {
    position: sticky;
    top: 10px;
    width: 100%;
    z-index: 200029302200;
}

#sticky-summary .row {
    --bs-gutter-x: 0;
}

/* ipad styles */
@media only screen and (max-width: 1480px) {

    #sticky-summary {
        position: fixed;
        top: 50px;
    }

}

.font_size_0_9 {
    font-size: 0.9rem;
}

.font_size_0_8 {
    font-size: 0.8rem;
}

.font_size_0_7 {
    font-size: 0.7rem;
}

.container {
    max-width: 1440px !important;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.option input {
    display: none;
}

.option img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: 0.3s;
}

.option input:checked+img {
    border-color: #007BFF;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}

.option h5 {
    margin-top: 8px;
    text-align: center;
}

.option .tooltip {
    visibility: hidden;
    opacity: 0;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    z-index: 1000;
    font-size: 14px;
}

.option:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.input_line_100 {
    width: 100% !important;
    min-height: 30px;
    background-color: #ffffff;
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 4px 8px;
}

.textarea_100 {
    width: 100% !important;
    height: 120px;
    background-color: #ffffff;
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 4px 8px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .card-header {
        .card-header {
            height: 80px;
            line-height: 1rem;
        }
    }

    .card-header {
        height: 80px;
        line-height: 1.1rem;
    }

    .card {
        height: 220px;
    }
}

#offerte_form select,
#offerte_form input,
#offerte_form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#offerte_form textarea {
    min-height: 140px;
    resize: vertical;
}

#offerte_form button,
#offerte_form .blue_button,
#offerte_form .g-recaptcha {
    max-width: 100%;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.options-grid .option {
    display: block;
    width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-sizing: border-box;
    text-align: center;
}

.options-grid .option img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.options-grid .option h5 {
    margin: 12px 0 6px;
    font-size: 1.1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {

    .screen_width {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .tr,
    .td_25,
    .td_75,
    .td_100,
    .td_65_auto,
    .td_25_auto,
    .td_10_auto,
    .td_100_auto,
    .td_50 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #offerte_form .td_25 {
        margin-bottom: 6px;
        font-weight: 600;
    }

    #offerte_form .td_75 {
        margin-bottom: 18px;
    }

    #offerte_form button,
    #offerte_form .g-recaptcha {
        width: 100%;
        text-align: center;
    }

    .options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .options-grid .option {
        padding: 10px;
        display: flex;
    }

    .options-grid .option h5 {
        font-size: 0.95rem;
        margin: 8px 0 4px;
    }

    .options-grid .option .tooltip {
        position: static !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: none !important;
        padding: 0 !important;
        margin-top: 6px;
        font-size: 0.75rem;
        color: #666;
    }

    .td_25_auto {
        margin-top: 30px;
    }

    .td_25_auto img {
        max-width: 180px;
        margin: 0 auto 20px;
        display: block;
    }

    /* headings iets compacter */
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .options-grid .option h5 {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

.options-grid {
    display: grid !important;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .options-grid .option {
        width: auto !important;
        max-width: 100% !important;
    }
}

.options-grid .option * {
    max-width: 100%;
}

#profielModalTechWrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}