html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

.page-wrapper-search {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.tab-content-custom {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: -10px;
}

.select-with-native-arrow {
    display: block;
    width: 100%;
    padding: 0.375rem 0.55rem;
    padding-inline-end: 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select-with-native-arrow:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.custom-circle {
    display: inline-block;
    border-radius: 50%;
    background-color: white;
    padding: 8px;
}

.padding-x-1 {
    padding-right: 2px;
    padding-left: 2px;
}

.sb-bottom {
    width: 100%;
    height: 1px;
    background-color: #0a0d13;
}

.content {
    flex: 1;
}

.pad-8 {
    padding: 8px;
}

.border-none {
    border: none !important;
}

.align-center {
    display: flex;
    align-items: center;
}

.full-screen {
    height: 100vh;
    overflow: hidden;
}

.max-width-login {
    max-width: 460px;
    margin: 0;
}

.text-justify {
    text-align: justify;
}

.small-font {
    font-size: 0.75rem;
}

.title-font {
    font-size: 4rem;
}

.large-font {
    font-size: 2rem;
}

.semi-large-font {
    font-size: 1.25rem;
}

.normal-font {
    font-size: 1rem;
}

.navbar-custom {
    background-color: #24A1B2 !important;
}

.navbar-nav-align {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav-line {
    border-left: 2px solid #e4e4e4;
    height: 20px;
}

.btn-back {
    top: 30px;
    left: 50px;
}

.error-color {
    color: #b90050 !important;
}

.full-screen-div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.left-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 4px solid rgb(58, 58, 58);
    height: 100%;
    font-weight: bold;
}

.right-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#title {
    width: 100% !important;
}

.sticky-div {
    position: sticky;
    top: 15px;
    z-index: 1000;
}

@media (max-width: 575.98px) {
    .phone-hidden {
        display: none !important;
    }

    .btn-back {
        top: 10px;
        left: 20px;
    }

    .semi-large-font {
        font-size: 1rem;
    }

    .page-wrapper-search {
        display: flex;
        flex-direction: column;
        padding-right: 20px;
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .tablet-hidden {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .desktop-hidden {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .left-div {
        align-items: center;
    }

    .left-div {
        border-right: none;
    }

    .sticky-div {
        position: static;
        box-shadow: none;
    }
}