/* sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    background: #11101D;
    padding: 6px 14px;
    z-index: 99;
    transition: all .5s ease;
}

.sidebar.open {
    width: 250px;
}

.mobile-sidebar-button {
    display: none;
}

.sidebar .logo-details {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar .logo-details .icon {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 8px;
    transition: all .5s ease;
    opacity: .3;
}

.sidebar .logo-details .logo_name {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    opacity: 0;
    transition: all .5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
    opacity: 1;
}

.sidebar .logo-details .open-menu {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all .4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all .5s ease;
    transition: all .5s ease;
    color: #FFF;
}

.sidebar.open .logo-details .open-menu {
    text-align: right;
    right: 0;
}

.sidebar .bx-chevron-right:before {
    background-color: #FFF;
    color: #000;
    font-size: 21px;
    border-radius: 50%;
    box-shadow: 0 2px 1px #00000020;
}

.sidebar i {
    color: #999;
    height: 60px;
    min-width: 42px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
    transition: color .2s ease-in-out;
}

.sidebar .nav-list {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0px;
    padding-bottom: 80px;
    height: 87vh;
    width: 222px;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sidebar .nav-list::-webkit-scrollbar {
    display: none;
}

.sidebar li {
    position: relative;
    margin: 5px 0;
    list-style: none;
}

.sidebar li .tooltip-menu {
    position: absolute;
    top: -20px;
    left: calc(40px + 25px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: 0s;
}

.sidebar li:hover .tooltip-menu {
    opacity: 1;
    pointer-events: auto;
    transition: all .4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar .subtitle {
    display: block;
    width: 20px;
    height: 1px;
    color: #11101D;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    padding-left: 12px;
    overflow: hidden;
    background: #32313c;
    margin: 5px 0 5px 11px;
    cursor: default;
}

.sidebar.open .subtitle {
    color: #99999950;
    width: 100%;
    height: 18px;
    margin: 16px 0 0;
    background: transparent;
}

.sidebar.open li .tooltip-menu {
    display: none;
}

.sidebar input {
    font-size: 14px;
    color: #FFF;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 42px;
    border: none;
    border-radius: 12px;
    transition: all .5s ease;
    background: #1d1b31;
}

.sidebar.open input {
    padding: 0 20px 0 42px;
    width: 100%;
}

.sidebar .bx-search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    height: 50px;
    line-height: 50px;
    background: #1d1b31;
    color: #FFF;
    border-radius: 12px;
    cursor: pointer
}

.sidebar.open .bx-search:hover {
    background: #1d1b31;
    color: #FFF;
}

.sidebar .bx-search:hover {
    background: #FFF;
    color: #11101d;
}

.sidebar li a {
    display: flex;
    height: 100%;
    width: 42px;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all .4s ease;
}

.sidebar.open li a {
    width: 100%;
}

.sidebar li a:hover,
.sidebar li a.active {
    background: #FFFFFF20;
}

.sidebar li a .links_name {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}

.sidebar.open li a .links_name {
    opacity: 1;
    pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i,
.sidebar li a.active .links_name,
.sidebar li a.active i {
    transition: all .5s ease;
    color: #FFF;
}

.sidebar li i {
    height: 38px;
    line-height: 34px;
    font-size: 17px;
}

.sidebar li.profile {
    position: fixed;
    height: 60px;
    width: 70px;
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #1d1b31;
    transition: all .5s ease;
    overflow: hidden;
}

.sidebar.open li.profile {
    width: 250px;
}

.sidebar li .profile-details {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sidebar li img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.sidebar li.profile .job {
    font-size: 12px;
    opacity: .6;
}

.sidebar .profile .logout {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #1d1b31;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    cursor: pointer;
    transition: all .5s ease;
    border: none;
    outline: 0;
}

.sidebar.open .profile .logout {
    width: 50px;
    background: none;
}

.sidebar.open ~ .home-section {
    left: 250px;
    width: calc(100% - 250px);
}

.home-section {
    position: relative;
    background: #E4E9F7;
    min-height: 100vh;
    top: 0;
    left: 70px;
    width: calc(100% - 70px);
    transition: all .5s ease;
    z-index: 2;
    padding-bottom: 20px;
}

.home-section .text {
    display: inline-block;
    color: #11101d;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 18px
}

/* mystyle */

.btn-detail {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: .4rem;
}

.btn-jadwal-navigate {
    color: #fffbed;
    background-color: #eaaf0160;
    border-radius: 50%;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 51px;
    font-size: 2rem !important;
    margin-left: 5px;
}

/* auth */
.line {
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}

.line::before {
    content: 'Atau';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}

#forms-top {
    padding: 0 20px;
    height: 100px;
    display: flex;
    align-items: center;
    background-color: white;
    border-bottom: dotted 1px #CCC;
}

#forms-top img {
    width: 65px;
    height: 65px;
}

#forms-top .right-time {
    font-size: 1.1em;
    font-weight: bold;
    color: #00000040;
}

.forms {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    width: 100%;
}

.form-content {
    padding-bottom: 40px;
}

.form-login {
    width: 480px;
    background-color: var(--light);
    padding: 30px 25px;
    box-shadow: 1px 4px 10px 4px #00000006;
    border-radius: 16px;
}

.btn-password {
    border: 0;
    background-color: transparent;
    height: 31px;
    width: 31px;
    line-height: 34px;
    padding: 0 0 0 1px;
    position: absolute;
    right: 8px;
    top: 13px;
    border-radius: 16px;
    text-align: center;
    transition: all .2s ease-in-out;
}

.btn-password > i {
    color: #888;
    font-size: 18px;
}

.btn-password:hover > i {
    color: var(--bs-gray);
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CACACA;
    border-radius: 10px;
    background: var(--light);
    height: 50px;
    position: relative;
}

.btn-google .google-img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    object-fit: cover;
    padding: 6px;
    background-color: #E3E3E3;
}

.btn-google span {
    opacity: 0.8;
    color: #232836;
}

/* custom bs */
