@media screen and (max-width: 768px) {
    .mobile-mt-10 {
        margin-top: 10px;
    }
}

.select2-selection__rendered {
    line-height: 34px !important;
}
.select2-container .select2-selection--single {
    margin-top: 1px;
    height: 37px !important;
}
.select2-selection__arrow {
    height: 36px !important;
}

.bg-login-image-custom {
    background: url("/assets/img/undraw_logistics_x4dc.svg");
    background-position: center;
    background-size: cover;
}

/* HOMEPAGE START */

/* SESSION MESSAGE */
.session-alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.35rem;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.session-alert.success {
    background-color: green;
}

.session-alert.failed {
    background-color: red;
}

/* HOMEPAGE-MODAL  */
.modal-wrapper {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-form {
    width: 60%;
    max-height: 90%;
    overflow-y: auto;
}

.text-danger {
    color: rgb(171, 24, 24);
}

/* HOMEPAGE END */
