*,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a,
a:hover {
    text-decoration: none;
    color: #444;
}

body {
    background: #F2F2F2;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

main {
    width: 500px;
    height: 100vh;
    margin: auto;
}

main.wrapper {
    background: #0E2148;
    position: relative;
}

.top i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FFF;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.menus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
}

.menus li a {
    color: #444;
}

.menus li a:hover i,
.menus li a.active i {
    background: #000;
    color: white;
    font-weight: 600;
}

.menus li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #444;
    font-size: 16px;
    margin-bottom: 5px;
    transition: .5s;
}

.menus li small {
    display: block;
    text-align: center;
}

.transaksi {
    padding-bottom: 80px;
}

.transaksi ul li {
    background: #FFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px dashed #ddd;
}

.transaksi ul li:hover {
    background: #dcdcdc;
}

.transaksi ul li h3 {
    font-size: 14px;
}

.transaksi ul li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #444;
    font-size: 16px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.mobile-menu {
    position: fixed;
    list-style-type: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 480px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu li {
    position: relative;
}

.mobile-menu li a {
    padding: 5px;
    display: block;
    text-align: center;
    color: #444;
}

.mobile-menu li a:hover small,
.mobile-menu li a:hover i {
    font-weight: 600;
}

.mobile-menu li a.active small,
.mobile-menu li a.active i {
    font-weight: 600;
}

.mobile-menu li a i {
    display: block;
    font-size: 20px;
}

.blur {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.318);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.slide-modal {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    background: #FFF;
    border-radius: 10px 10px 0 0;
    padding: 25px;
    z-index: 999;
    transition: .5s;
}

.slide-modal.show {
    bottom: 0;
}

.slide-modal .fa-times {
    position: absolute;
    right: -20px;
    top: -20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    color: #FFF;
    font-size: 18px;
}

.form-input textarea {
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #aeacac;

}

.form-input select,
.form-input input {
    width: 100%;
    border-radius: 7px;
    height: 40px;
    padding: 10px;
    border: 1px solid #cacaca;
}

.form-input textarea:focus,
.form-input input:focus {
    border: 1px solid #444;
    outline: none;
    resize: none;
}

.button-68 {
    appearance: none;
    backface-visibility: hidden;
    background-color: #27ae60;
    border-radius: 5px;
    border-style: none;
    box-shadow: rgba(39, 174, 96, .15) 0 4px 9px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 13px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-68:hover {
    background-color: #1e8449;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-68:active {
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-68:hover {
    box-shadow: rgba(39, 174, 96, .2) 0 6px 12px;
}

body.bg-black {
    background: #0E2148;
    color: #c8c8c8;
}

.bg-black .transaksi li,
.bg-black .card {
    background: #ffffff16;
    color: #c8c8c8;
}

.bg-black .transaksi ul li {
    border: 1px dashed #dddddd1c;
}

.bg-black .menus li small {
    color: #c8c8c8;
}

.bg-black .top i,
.bg-black .menus li i {
    background: #f2f2f224;
    color: white;
}

.card-utama {
    background: url('https://image.web.id/images/clipboard-image-1750931182.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.bg-black .mobile-menu li a:hover small,
.bg-black .mobile-menu li a:hover i {
    color: #27ae60;
}

.bg-black .mobile-menu li a {
    color: #c8c8c8;
}

.bg-black .mobile-menu {
    background: #020d21;
}

.bg-black .slide-modal {
    background: #1e1e1e;
}

.bg-black .form-input textarea,
.bg-black .form-input select,
.bg-black .form-input input {
    background: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
}

.bg-black .transaksi ul li:hover {
    background: #000;
}

.bg-black .menus-img li small {
    color: #c8c8c8;
}

.menus-img {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
    list-style-type: none;
}

.menus-img li {
    font-size: 12px;
    text-align: center;
    width: 100%;
}

.menus-img li img {
    width: 50px;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: .5s;
}

.menus-img li small {
    display: block;
}

.menus-img li a:hover img {
    background: #020d21;
    transform: scale(1.1);
}

.menu-utama i.far {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0E2148;
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    border: 5px solid #fff;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.horizontal-scroll {
    width: 100%;
    scrollbar-color: transparent transparent;
    overflow-x: scroll;
    scroll-snap-type: mandatory;
}

.horizontal-scroll ul {
    display: flex;
    gap: 10px;
    width: max-content;
    list-style-type: none;
}

.horizontal-scroll ul li {
    width: 100px;
    scroll-snap-type: center;
    position: relative;
}

.horizontal-scroll ul li input:checked+label {
    background: #1e8449;
    color: white;
    border: 1px solid #1e8449;
    font-weight: 600;
}

.horizontal-scroll ul li input {
    display: none;
}

.horizontal-scroll ul li label {
    width: 100%;
    padding: 10px;
    border: 1px dashed #bebebe;
    text-align: center;
    border-radius: 4px;
    background: #FFF;
    overflow: hidden;
}

.form-login {
    border-radius: 40px 40px 0 0;
    background: #FFF;
    padding: 27px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 480px;
    max-height: 70%;
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 100px;
}



/* CSS */
.outline {
    border-radius: 6px;
    border-width: 0;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    border: 1px solid #405cf5;
    display: block;
    color: #405cf5;
    width: 100%;
    background: transparent;
}

.button-9 {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .1) 0 2px 5px 0, rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, sans-serif;
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s, box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

.button-9:disabled {
    cursor: default;
}

.button-9:focus {
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

.border-dashed {
    border-bottom: 2px dashed #ddd;
    padding-bottom: 8px;
}

.user-img {
    width: 80px;
    height: 80px;
    background: #ffffff58;
    border-radius: 50%;
    padding: 10px;
}

.wrapper svg {
    position: absolute;
    top: 0;
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
}

.checkin {
    background: #ededed;
    padding: 30px;
    border-radius: 20px;
}

i.fa-alarm-clock {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #405bf51d;
    font-size: 19px;
    color: #405cf5;
}
.task {
    padding-bottom: 100px;
}
.task ul::before{
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    border-left: 2px dashed #9b9b9b;
}
.task  ul{
    list-style-type: none;
    position: relative;
}
.task ul li{
    border-radius: 15px;
    padding: 20px;
    background: #FFF;
    margin-bottom: 10px;
    margin-left: 40px;
    position: relative;
}
.task ul li::before{
    content: '';
    position: absolute;
    left: -39px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    border: 4px solid #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.task ul li:last-child::after{
    content: '';
    position: absolute;
    left: -39px;
    bottom: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #27ae60;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width:768px) {
    .task ul li p{
        font-size: 12px;
    }
    .wrapper svg {
        width: 100% !important;
    }

    .form-login {
        width: 95%;
    }

    main {
        width: 100%;
    }

    .mobile-menu {
        width: 100%;
    }

    .slide-modal {
        width: 95%;
        padding: 20px;
    }

    .slide-modal .fa-times {
        position: absolute;
        right: 5px;
        top: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #000;
        color: #FFF;
        font-size: 12px;
    }
}
