::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-content-primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--color-content-primary);
}

.hidden {
    display: none;
}

.temporaryHide {
    display: none;
}

.mt-100 {
    margin-top: 100px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.overflow-auto {
    overflow: auto;
}

.pay-hr {
    margin: 0.5rem 0;
    background-color: var(--color-content-primary);
    max-width: 90%;
}

.nav-img-content {
    margin-right: 10px;
}

.d-flex-content {
    display: flex;
    flex-direction: column;
}

.d-flex-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d-flex-content p {
    margin: 0;
}

.d-flex-content span {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 1px;
}


/* ===== Keyframes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.text-col {
    font-size: 12px;
    font-weight: 400;
}

.text-col.active {
    font-weight: 600;
}

/** Payment Page Style **/

.payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.payment-info p {
    font-weight: 700;
    font-size: 16px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.image-check {
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #00a78e;
    border-radius: 50%;
    text-align: center;
    line-height: 17px;
    color: white;
    position: relative;
    right: 8px;
    bottom: 10px;
    font-size: 11px;
}

.image-check::before {
    content: "\2713";
}


.pay-list {
    display: flex;
    align-items: center;
    padding: 0 70px;
    justify-content: space-between;
}

.pay-list-total {
    display: flex;
    justify-content: space-between;
}

.pay-list-total p {
    font-size: 16px;
    font-weight: 700;
}

/** Bootstrap Datepicker **/
.datepicker {
    margin: auto;
}

.datepicker>.form-control {
    padding: 7px;
}

.datepicker .datepicker-switch,
.datepicker .next,
.datepicker .prev,
.datepicker tfoot tr th {
    color: var(--color-content-primary);
    font-size: 18px;
    font-weight: 600;
}

.datepicker .datepicker-switch:hover {
    background: none;
}

.datepicker .next:hover {
    background: none;
}

.col-form-label {
    color: var(--color-content-primary);
}

.col .row {
    margin-bottom: 1.5rem;
}

.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
    background-color: var(--color-content-primary) !important;
}

.datepicker table tr td.active {
    background-image: none !important;
    background-color: var(--color-content-primary) !important;
    color: var(--color-content-bg) !important;
}

.datepicker-days {
    display: flex;
}

.datepicker td,
.datepicker th {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50%;
    vertical-align: middle !important;
}

td.day.available {
    background-color: color-mix(in srgb, var(--color-content-primary) 30%, white) !important;
    color: var(--color-content-primary) !important;
}

td.day.available:hover {
    background-color: color-mix(in srgb, var(--color-content-primary) 50%, white) !important;
}

.datepicker {
    width: 100%;
}

div.datepicker.deactive {
    opacity: 0.5;
}

.datepicker-inline {
    width: 100%;
    margin: auto;
}

.dateParent {
    display: flex;
    flex-direction: column;
    transition-property: max-width, opacity, max-height, visibility, margin;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

.dateTimePicker .table-condensed {
    min-width: 100%;
    border-collapse: separate;
}

@media (max-width: 575.98px) {

    .courseForm {
        padding: 2%;
    }

    .form-container {
        padding: 0.2rem !important;
    }

    .form-container .row {
        flex-direction: column;
    }

    .datepicker {
        width: 100% !important;
    }

    .dateParent {
        margin: 2rem auto !important;
    }

    .dateParent.selected {
        visibility: hidden !important;
        opacity: 0;
        overflow: hidden;
        max-height: 0;
        margin: 0 !important;
    }

    #timePicker {
        transition: opacity 1s ease-in-out;
        animation: fadeInUp 500ms;
    }

    #appointment_detail_List {
        animation: fadeInUp 500ms;
    }
}

@media (max-width:960px) {

    /* big landscape tablets, laptops, and desktops */
    .form-container .row {
        flex-direction: column;
    }

    .courseForm {
        padding: 2%;
    }

    .form-container .row {
        flex-direction: column;
    }

    .datepicker {
        width: 100% !important;
    }

    .dateParent {
        margin: 2rem auto !important;
    }

    .dateParent.selected {
        visibility: hidden !important;
        opacity: 0;
        overflow: hidden;
        max-height: 0;
        margin: 0 !important;
    }

    #timePicker {
        transition: opacity 1s ease-in-out;
        animation: fadeInUp 500ms;
    }

    #appointment_detail_List {
        animation: fadeInUp 500ms;
    }
}

@media (min-width:1025px) {
    /* For Laptops/Desktop*/

}

@media (min-width:1280px) {

    /* hi-res laptops and desktops */
    .dateParent.selected {
        max-width: 40%;
    }

    #timePicker {
        transition: 1s ease-in-out;
    }
}

@media (min-width: 1440px) {

    /* hi-res laptops and desktops */
    .dateParent.selected {
        max-width: 40%;
    }

    #timePicker {
        transition: 1s ease-in-out;
    }
}

#appointment_detail_List {
    transition: opacity 1s ease-in-out;
}

.datepicker table tr td.today.disabled {
    background: unset !important;
    background-color: unset !important;
    position: relative;
}


.datepicker table tr td.today.disabled::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 52%;
    width: 4px;
    height: 4px;
    margin-top: 14px;
    border-radius: 50%;
    background-color: var(--color-content-primary);
    transform: translate(-50%, -50%);
}

.form-container {
    padding: 2rem;
}

.home-sel-content {
    display: block !important;
    padding: 5px 0 5px 0 !important;
}

.invisible {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
    height: 0;
    max-width: 0;
    margin-left: 0;
    animation: fadeOut 500ms;
}


div#timePicker.active {
    visibility: visible !important;
    opacity: 1;
    max-width: 100%;
    height: 100%;
}

div#appointment_detail_List.active {
    transition: opacity 1s ease-in-out;
    visibility: visible !important;
    opacity: 1;
    max-width: 100%;
    height: 100%;
}

.listed_items {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

#time_Picker_List {
    max-height: 80vh;
    overflow-y: scroll;
}

.time_Picker_List_Element button {
    width: 100%;
    height: 52px;
    border: 1px solid color-mix(in srgb, var(--color-content-primary) 70%, white) !important;
    color: var(--color-content-primary);
    font-weight: 700;
    transition: all .3s ease;
    transition-property: width, transform;
    border-radius: 5px;
    background-color: unset;
}

.time_Picker_List_Element button.active {
    border: 3px solid color-mix(in srgb, var(--color-content-primary) 100%, white) !important;
}


.time_Picker_List_Element button:hover {
    border: 3px solid color-mix(in srgb, var(--color-content-primary) 100%, white) !important;
}

.time_Picker_List_Element button div {
    margin-right: auto;
    margin-left: auto;
}

.dateTimePicker {
    position: relative;
    display: flex;
}

.row:before,
.row:after {
    display: none !important;
}

.row:before,
.row:after {
    width: 0px !important;
    height: 0px !important;
}

.col:before,
.col:after {
    display: none !important;
}

.d-flex {
    flex: 1 0 auto !important;
}

.container {
    flex: 0 0 auto !important;
}

#selected_date {
    font-weight: 600;
    color: var(--color-content-primary);
}

.form-step {
    display: none;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

.courseForm {
    padding: 6%;
}

.calenderBlock {
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    color: black;
}

.spinner-grow {
    color: var(--color-content-primary);
}

.full_screen {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0px;
    opacity: 0.5;
    filter: alpha(opacity=50);
    display: flex !important;
    align-items: center;
    background-color: #00000030;
}

.btn-42,
.btn-42 *,
.btn-42 :after,
.btn-42 :before,
.btn-42:after,
.btn-42:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-42 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: var(--color-content-primary);
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.7em;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(var(--color-content-primary), #fff);
    padding: 0;
    width: 100%;
}

.btn-42:disabled {
    cursor: default;
}

.btn-42:-moz-focusring {
    outline: auto;
}

.btn-42 svg {
    display: block;
    vertical-align: middle;
}

.btn-42 [hidden] {
    display: none;
}

.btn-42 {
    border-radius: 999px;
    box-sizing: border-box;
    display: block;
    font-weight: 900;
    -webkit-mask-image: none;
    padding: 1rem;
    position: relative;
    text-transform: uppercase;
}

.btn-42:before {
    --thickness: 4px;
    border: var(--thickness) solid var(--color-content-primary);
    border-radius: 999px;
    content: "";
    inset: calc(var(--thickness) * -1);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(1.3);
    transition: transform 0.2s, opacity 0.2s;
}

.btn-42:hover:before {
    opacity: 1;
    transform: scale(1);
}

.btn-42:hover {
    background-color: transparent;
    color: black;
}

.card.p-3 {
    padding: 0.5rem 0.7rem !important;
}

.card {
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
}

.card:hover {
    border: 2px solid var(--color-content-primary);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card.active {
    border: 2px solid var(--color-content-primary);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card_heading {
    color: var(--color-content-primary);
    font-weight: 500;
}

.c-details span {
    font-size: 13px
}

.progress {
    height: 10px;
    border-radius: 10px
}

.progress div {
    background-color: var(--color-content-primary);
}

.capacity_info {
    font-size: 14px;
}

.capacity_info .text1 {
    font-weight: 600
}

.capacity_info .text2 {
    color: #a5aec0
}