body {
    /* background-color: #fafafa; */
    padding: 5px 20px !important;
    font-size: 100%;
    line-height: 1.6875;
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.stepwizard {
    margin: 10px 0;
}

.stepwizard-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* Reduced space between steps */
}

.stepwizard-step {
    text-align: center;
    position: relative;
    flex: 1;
    /* Ensure steps are evenly distributed */
    display: none;
}

.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    font-size: 18px;
    line-height: 40px;
    border: 2px solid #ddd;
    background-color: #fff;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-circle i {
    font-size: 20px;
}

.step-label {
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #555;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    white-space: nowrap;
}

.stepwizard-step:hover .step-label {
    display: block;
}

.card {
    width: 100%;
    margin: 0 auto;
}

.col-md-8 {
    width: 66.67%;
}

.toggle-button-group {
    display: flex;
    border: 2px solid #ccc;
    /* Border for the toggle switch */
    border-radius: 34px;
    /* Rounded corners */
    overflow: hidden;
    /* Prevents the buttons from exceeding the rounded edges */
    width: 300px;
    /* Set width for the toggle */
}

.toggle-button {
    flex: 1;
    /* Equal width for both buttons */
    padding: 5px;
    /* Add some padding */
    background-color: #000000;
    color: #ffcb08;
    /* Default background color */
    border: none;
    /* Remove border */
    cursor: pointer;
    /* Change cursor on hover */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.toggle-button.active {
    background-color: #ffcb08;
    /* Active button color */
    color: #000000;
    /* Active button text color */
}

.toggle-button.active:hover {
    background-color: #ffae42;
}

.toggle-button:not(.active):hover {
    background-color: #ddd;
    color: #000000;
    /* Hover effect for inactive button */
}

.border {
    border: 1px solid #dee2e6 !important;
    padding: 30px 20px !important;
    border-radius: 8px !important;
}

/* @media screen and (max-width: 30em) {
    .card .card-body {
        width: 100% !important;
    }
} */

.bg-form {
    border-radius: 10px !important;
    padding: 40px 20px;
    background-color: #ffcb08;
}

.title-form {
    font-size: 30px;
    text-decoration: none;
    line-height: 1.2;
    color: #000;
}

.note-form {
    font-size: 15px;
    text-decoration: none;
    line-height: 1.1;
    color: #000;
}

.times24-form-control {
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 40px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-form {
    color: #fff;
    background-color: #000;
}

.btn-form:hover {
    background-color: #d2232a;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 7px 50px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 50px;
}

.select-btn {
    display: inline-block;
    padding: 5px 29px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 50px;
}

.bg-form-2 {
    padding: 20px;
    background-color: #fff200;
    border-radius: 8px;
}

.bg-record {
    background-color: #ffdb78;
    border-radius: 6px;
    padding: 15px;
}

input[type="checkbox"] {
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

@media screen and (max-width: 30em) {
    .btn {
        display: inline-block;
        padding: 7px 25px !important;
        margin-bottom: 0;
        font-size: 18px !important;
        font-weight: normal;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 50px;
    }
}

@media screen and (max-width: 20em) {
    .btn {
        display: inline-block;
        padding: 7px 20px !important;
        margin-bottom: 0;
        font-size: 16px !important;
        font-weight: normal;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 50px;
    }
}

.c1,
.c2,
.c3,
.c4,
.c5,
.c6,
.c7,
.c8,
.c9,
.c10,
.c11,
.c12 {
    min-height: 1px;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.c12 {
    width: 100%;
}

.fs-7 {
    font-size: 0.75rem;
}