/* html {
    font-size: 14px;
}   */

body {
    overflow-y: scroll;
}

.w-10 {
    width: 10%;
}

.bg-emidea {
    padding: .75rem .75rem;
    background-color: #ebebeb;
    border-radius: 1rem;
}

.circle {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.bg-login {
    /* background-color: #275a35; */
    background: rgb(39,90,53);
    background: linear-gradient(180deg, rgba(39,90,53,1) 0%, rgba(133,135,150,1) 100%);
}

.bg-su {
    background-color: #ccc;
}

@-webkit-keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }
    80%, 100% {
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }
    80%, 100% {
        opacity: 0;
    }
}
@-webkit-keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}
@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}

/* Autocomplete */
.selected-item .item, .selected-item-checkbox .item {
    align-items: center;
    background: #ebebeb;
    border-radius: 15px;
    color: #000;
    display: flex;
    margin: 2px 5px 2px 0;
    padding: 5px 35px 5px 10px;
    position: relative;
}

.selected-item, .selected-item-checkbox {
    display: flex;
    flex-wrap: wrap;
    font-size: .8em;
}

.count-number, .count-number-checkbox {
    bottom: 0;
    font-size: .8rem;
    height: 25px;
    left: 5px;
    line-height: 24px;
    margin: auto;
    position: absolute;
    text-align: center;
    top: 0;
    width: 25px;
}

.auto-search-wrapper.count input {
    padding: 12px 65px 12px 40px;
}

.selected-item button:hover, .selected-item-checkbox button:hover {
    background: #4e73df;
}

.selected-item button, .selected-item-checkbox button {
    align-items: center;
    background: #ebebeb;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 25px;
    justify-content: center;
    position: absolute;
    right: 3px;
    width: 25px;
}

.auto-search-wrapper ul {
    list-style: none;
    margin: 0;
    overflow: auto;
    padding: 0;
}

.auto-search-wrapper.count:before {
    background: #bbb;
    bottom: 0;
    content: "";
    height: 25px;
    left: 32px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 1px;
}

.auto-search-wrapper ul li:not(:last-child) {
    border-top: none;
}

.auto-search-wrapper ul li {
    cursor: pointer;
    margin: 0;
    overflow: hidden;
    padding: 10px;
    position: relative;
}

.checkbox {
    font-size: 1.1rem;
    margin-left: 40px;
    position: relative;
}

.checkbox-selected {
    background: #ebebeb;
}

.checkbox:after {
    border-radius: 4px;
}

.checkbox:after {
    background: #fff;
    border: 1px solid #4e73df;
    content: "";
    height: 22px;
    left: -40px;
    position: absolute;
    top: 0;
    transition: border .2s,background .2s ease-in-out;
    width: 22px;
}

/* input[type=checkbox] {
    height: 22px;
    opacity: 0;
    position: absolute;
    width: 22px;
}

input[type=checkbox]:checked~.checkbox:before {
    color: #fff;
    content: "✓";
    font-size: .8rem;
    left: -34px;
    position: absolute;
    top: 1px;
    z-index: 1;
}

input[type=checkbox]:checked~.checkbox:after {
    background: salmon;
} */


.ac-checkbox {
    height: 22px;
    opacity: 0;
    position: absolute;
    width: 22px;
}

.ac-checkbox:checked~.checkbox:before {
    font-family: Arial, sans-serif;
    color: #fff;
    content: "✓";
    font-size: .8rem;
    font-weight: bold;
    left: -34px;
    position: absolute;
    top: 1px;
    z-index: 1;
}

.ac-checkbox:checked~.checkbox:after {
    background: #4e73df;
}

mark {
    padding: 0 0;
    margin: 0 0;
    background-color: lightgreen;
}

/* Nested modal */

body.modal-open[style] {
    /* padding-right: 0px !important; */
    overflow-y: hidden;
}

body.modal-open .modal {
    overflow-y: scroll; /* Override when .modal-open is present on parent */
}

.datetime-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 200px;
}
