﻿.content-wrapper{
    min-height:0px
}
.radio-group {
    display: flex;
    gap: 20px;
}

.custom-radio {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 45px;
}

    .custom-radio input[type="radio"] {
        display: none; /* Hide the default radio button */
    }

    .custom-radio .radio-label {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: 20px;
        font-weight: bold;
        background-color: #fff;
        border: 2px solid #94949c;
        border-radius: 12px; /* Makes it square, remove for circular */
        cursor: pointer;
        transition: 0.3s ease;
    }

        .custom-radio .radio-label:hover {
            border: 2px solid #7367F0;
            background-color: #7367F0;
            color: white;
        }

    .custom-radio input[type="radio"]:checked + .radio-label {
        background-color: #7367F0;
        color: #fff;
        border-color: #7367F0;
    }

ul.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.tabs li {
        background: none;
        color: #222;
        display: inline-block;
        padding: 10px 15px;
        cursor: pointer;
        width: 33%;
        font-size: 20px;
    }

        ul.tabs li.current {
            background: #7367F0;
            color: white;
        }

        ul.tabs li.tab-link:hover {
            background: #7367F0;
            color: white;
        }

.tab-content {
    display: none;
    background: #white;
    padding: 15px;
}

    .tab-content.current {
        display: inherit;
    }

.form-control {
    background-color: white;
}

.checkboxes__item {
    padding: 0 15px;
    width: 100%;
}

.checkbox.style-e {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
}

    .checkbox.style-e input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .checkbox.style-e input:checked ~ .checkbox__checkmark {
            background-color: #7367F0;
        }

            .checkbox.style-e input:checked ~ .checkbox__checkmark:after {
                left: 21px;
            }

    .checkbox.style-e:hover input ~ .checkbox__checkmark {
        background-color: #eee;
    }

    .checkbox.style-e:hover input:checked ~ .checkbox__checkmark {
        background-color: #7367F0;
    }

    .checkbox.style-e .checkbox__checkmark {
        position: absolute;
        top: 1px;
        left: 0;
        height: 22px;
        width: 40px;
        background-color: #eee;
        transition: background-color 0.25s ease;
        border-radius: 11px;
    }

        .checkbox.style-e .checkbox__checkmark:after {
            content: "";
            position: absolute;
            left: 3px;
            top: 3px;
            width: 16px;
            height: 16px;
            background-color: #fff;
            border-radius: 50%;
            transition: left 0.25s ease;
        }

    .checkbox.style-e .checkbox__body {
        color: #333;
        line-height: 1.4;
        font-size: 16px;
        transition: color 0.25s ease;
    }

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    height: 40px;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 6px;
        right: 1px;
        width: 20px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 38px;
    }

/* ======= Toast message ======== */

#toast {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 999999;
}

.toast {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 2px;
    padding: 20px 0;
    min-width: 400px;
    max-width: 450px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
    transition: all linear 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(calc(100% + 32px));
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.toasterror {
    display: flex;
    align-items: center;
    background-color: red;
    border-radius: 3px;
    padding: 20px 0;
    min-width: 400px;
    max-width: 450px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
    transition: all linear 0.3s;
}

    .toasterror .toasticon {
        color: white;
    }

.toast + .toast {
    margin-top: 24px;
}

.toasticon {
    font-size: 30px;
    position: absolute;
    top: 16px;
}

.toasticon,
.toastclose {
    padding: 0 16px;
    position: absolute;
}

.toastbody {
    flex-grow: 1;
}

.toasttitle {
    font-size: 16px;
    font-weight: 600;
    padding-left: 53px;
    color: white;
    margin-bottom: 0;
}

.toastmsg {
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.5;
    padding-left: 53px;
    color: white;
    margin-bottom: 0;
}

.toastclose {
    font-size: 20px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 0;
}

/* === HEADING STYLE #3 === */

.three h1 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
}

    .three h1:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 5px;
        width: 55px;
        background-color: #111;
    }

    .three h1:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        height: 1px;
        width: 95%;
        max-width: 255px;
        background-color: #333;
    }

/* Style 7 */

.seven h1 {
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

    .seven h1:after,
    .seven h1:before {
        content: " ";
        display: block;
        border-bottom: 2px solid grey;
        height: 5px;
        background-color: #f8f8f8;
    }

.horizontal-wizard {
    margin: 0px;
}

@media only screen and (max-width: 900px) {
    ul.tabs li {
        display: block;
        width: 100%;
    }

    .horizontal-wizard {
        margin: 0px;
    }
}

/* General styles for alignment */

.bs-stepper-header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.step {
    text-align: center;
}

@media (max-width: 768px) {
    .seven h1 {
        display: flex !important;
        font-size: 20px;
    }

    .bs-stepper .bs-stepper-header {
        flex-direction: row;
        margin: 0.25rem;
    }

    .bs-stepper-label {
        margin: 0.25rem;
        display: none;
    }
}

.bs-stepper-title,
.bs-stepper-subtitle {
    display: none;
}

.bs-stepper-header {
    flex-wrap: nowrap;
}

.line {
    display: none;
}
