﻿.loadHome {
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    z-index: 10000000;
    display: block;
    overflow: hidden;
    opacity: 1;
}

.disable {
    pointer-events: none;
    /*opacity: 0.5;*/
    background-color: #eaecf4;
}

.disablepointer {
    pointer-events: none;
    /*opacity: 0.5;*/
}

.disable-bg-white {
    pointer-events: none;
    /*opacity: 0.5;*/
    background-color: #fff;
}

.edit {
    background-color: #f8f9fc;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    margin: auto;
    display: none;
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    float: right;
    overflow-y: scroll;
    height: auto;
    width: 90%;
    max-height: 100px;
    border-radius: 0.5rem;
}

.custom-scroll::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border-radius: 0.5rem;
    background-color: #f8f9fc;
}

.custom-scroll::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #f8f9fc;
}

.custom-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: #4e73df;
}

.autocomplete-items div {
    padding-top: 10px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 0.5rem;
    border-bottom: 1px solid #d4d4d4;
}

    /*when hovering an item:*/
    .autocomplete-items div:hover {
        background-color: #e9e9e9;
    }

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.dot {
    height: 20px;
    width: 20px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.input-note {
    border-bottom: 1px solid #e3e6f0;
    border-left: none;
    border-right: none;
    border-top: none;
}

    .input-note:focus {
        outline: none;
    }

.alert-cookie-policy {
    display: none;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    z-index: 10000001;
}

    .alert-cookie-policy .alert {
        border-radius: 0;
    }
.selector-no-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.hidden-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hidden-scroll {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}