.login-logo-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo-img {
    width: -webkit-fill-available;
}

#snackbar {
    visibility: hidden;
    width: 300px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    top: 30px;
    right: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
    z-index: 10000;
}

.challanType {
    display: flex;
}

@media (max-width:767px) {
    .challanType {
        flex-direction: column;
    }

    .login-logo-div {
        display: none;
    }
}

@-webkit-keyframes fadein {
    from {
        right: 0;
        opacity: 0;
    }

    to {
        right: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        right: 0;
        opacity: 0;
    }

    to {
        right: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        right: 30px;
        opacity: 1;
    }

    to {
        right: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        right: 30px;
        opacity: 1;
    }

    to {
        right: 0;
        opacity: 0;
    }
}

.success-snackbar {
    background-color: green !important;
}

.error-snackbar {
    background-color: red !important;
}

.navbar-vertical .navbar-nav .nav-item .sub-menu {
    display: none;
}

.hidden {
    display: none;
}

.sidenav .navbar-brand-name {
    padding: 0.5rem 2rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #DF924A !important;
    color: white
}

/* Radio Button Start */
/* The container */
.container-radio {
    display: block;
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked~.checkmark {
    background-color: #DF924A;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Radio Button End */


.modal .modal-dialog .modal-content .modal-header {
    padding: 8px 16px !important;
}

.modal .modal-dialog .modal-content .modal-header .close span {
    font-size: 30px !important;
}

.custom-modal-message {
    font-size: 1rem !important;
}

div.required-field label::after {
    content: "*";
    color: red;
}

.bold {
    font-weight: 700;
}

@media (max-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
    }

    .nursery-view {
        justify-content: space-between;
        flex-direction: column;
    }
}

@media (min-width: 992.1px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .nursery-view {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nursery-view .select2 {
        min-width: 200px;
    }
}