@media (min-width: 577px) {
    .area {
        position: static;
        height: calc(100vh - 3rem);
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }
}

.area {
    margin: 0;
    padding: 15px;
}

#ajax-loader {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    text-align: center;
    display: none;
}

.loader {
    position: absolute;
    top: 35%;
    left: 45%;
    padding: 2px;
    z-index: 9999;
    opacity: 1;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.snackbar {
    visibility: hidden;
    min-width: 250px;
    position: fixed;
    z-index: 99999999;
    right: 10px;
    top: 65px;
    font-size: 17px;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 65px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 65px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 65px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 65px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

input[type=radio] {
    margin-right: 7px;
    margin-left: 7px;
}

a {
    text-decoration: none;
}

.calendarDay {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip {
    display: inline-block;
    margin: 5px;
    padding: 5px 12px 5px 12px;
    background-color: #f1f1f1;
    border-radius: 25px;
}

.close-btn {
    cursor: pointer;
    margin-left: 10px;
    color: #ff0000;
    font-weight: bold;
    font-size: 16px;
}

#wrapper {
    height: 100%;
    width: 100%;
    text-align: center;
    display: table;
    position: absolute;
}


#wrapper canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

#canvas {
    z-index: 1;
}

#canvasbg {
    z-index: -10;
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    filter: blur(3px);
    opacity: 0.6;
}

:root, [data-bs-theme=light] {
    --bg1: #343a40;
    --br1: rgb(34, 31, 34);
    --bgh: #495057;
    --bgp: #8c8c8c;
    --bgs: #0d6efd;
}

[data-bs-theme=dark] {
    --bg1: #343a40;
    --br1: rgb(34, 31, 34);
    --bgh: #495057;
    --bgp: #8c8c8c;
    --bgs: #0d6efd;
}

.breadcrumb-step {
    font: 1.25em sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-step li {
    margin-right: 5px;
}

.breadcrumb-step li a, .breadcrumb-step li span {
    background-color: var(--bg1);
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    max-height: 2em;
    padding: 0.5em 3em 0.5em 3em;
    position: relative;
    text-decoration: none;
    transition: 0.25s;
    text-align: center;
}

.breadcrumb-step li a:before, .breadcrumb-step li span:before {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid var(--br1);
    content: "";
    position: absolute;
    top: 0;
    right: -1.25em;
    z-index: 1;
}

.breadcrumb-step li a:after, .breadcrumb-step li span:after {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid var(--bg1);
    content: "";
    position: absolute;
    top: 0;
    right: -1em;
    transition: 0.25s;
    z-index: 1;
}

.breadcrumb-step li a:hover, .breadcrumb-step li span:hover {
    background-color: var(--bgh);
}

.breadcrumb-step li a:hover:after, .breadcrumb-step li span:hover:after {
    border-left-color: var(--bgh);
}

.breadcrumb-step li a.selected, .breadcrumb-step li span.selected {
    background-color: var(--bgs);
}

.breadcrumb-step li a.selected:after, .breadcrumb-step li span.selected:after {
    border-left-color: var(--bgs);
}

.breadcrumb-step li a.passive, .breadcrumb-step li span.passive {
    background-color: var(--bgp);
}

.breadcrumb-step li a.passive:after, .breadcrumb-step li span.passive:after {
    border-left-color: var(--bgp);
}

.offcanvas-custom {
    width: 250px !important;
}

.selection33 tr {
    float: left;
    width: 33%;
}

.selection50 tr {
    float: left;
    width: 50%;
}

.mt-6 {
    margin-top: 3.7rem !important
}