.air-datepicker {
    --adp-z-index: 1000;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

/* Reset tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
    Spinner
*/
.spinner-cont {
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #B1B1B1;
    background-color: white;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}

#loader-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99999;
}

.spinner {
    -webkit-animation: spin 0.5s infinite linear;
    animation: spin 0.6s infinite linear;
    border: 3px solid #555;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    height: 20px;
    width: 20px;
    pointer-events: none;
    z-index: 4;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*
    Components - Panels
*/
.panel {
    background-color: #FFF;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
    border-radius: 3px;
}

.panel-content {
    height: 100%;
    padding: 25px;
}

.panel-title {
    display: block;
    padding: 5px 10px 5px 5px;
    font-weight: 500;
}

.panel-header {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-header.is-primary {
    background-color: #636363;
    color: white;
    font-weight: 400;
}

.panel-message {
    font-size: 20px;
    border-radius: 3px;
    padding: 20px;
    margin: 30px 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
}

.panel-message.is-success {
    background-color: var(--bs-success);
}

.panel-message.is-danger {
    background-color: var(--bs-danger);
}

.panel-message.is-warning {
    background-color: var(--bs-warning);
}

.panel-message.is-info {
    background-color: var(--bs-info);
}

.panel-buttonpane {
    width: 100%;
}


/*
    Helpers
*/

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

/*
    Csat. fileinput
*/
#ui-uvo-fileinput-wrapper {
    background-color: #E6E6E6;
    color: #555;
    font-size: 14px;
    padding: 8px 12px;
    font-weight: 400;
    border: 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 200px;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

#ui-uvo-fileinput-wrapper:hover {
    background-color: #DADADA;
    border: 0;
    font-weight: 400;
    color: #555;
}

input.ui-uvo-fileinput {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    opacity: 0;
    height: 100% !important;
    text-align: center;
    cursor: pointer;
}

#ui-uvo-filelist-wrapper input {
    margin-bottom: 7px;
}


.uvo-dropdown {
    position: relative;
    float: right;
}

.uvo-dropdown button {
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    padding: 15px 10px 15px 10px;
    margin: 4px;
    background: transparent;
    border: 0;
    border-radius: 3px;
}

.uvo-dropdown.uvo-dropdown-button:focus,
.uvo-dropdown.uvo-dropdown-button:active,
.uvo-dropdown.uvo-dropdown-button:hover {
    background-color: #eee;
}

.uvo-dropdown.uvo-dropdown-button:focus {
    box-shadow: 0 0 0 2px rgba(110, 110, 110, 0.3);
}

.uvo-dropdown i {
    margin-left: 5px;
}

.uvo-dropdown .uvo-dropdown-items {
    padding: 8px 0;
    margin: 0;
    background-color: #fff;
    border-radius: 3px;
    border: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    color: #444;
    font-size: 15px;
    width: auto;
    font-weight: 500;
    position: absolute;
    z-index: 999;
    text-transform: none;
    display: none;
}

.uvo-dropdown .uvo-dropdown-items li {
    list-style-type: none;
    white-space: nowrap;
    display: block;
    height: 35px;
    line-height: 35px;
    padding: 0 8px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 500;
}

.uvo-dropdown .uvo-dropdown-items li:focus {
    box-shadow: 0 0 0 2px rgba(85, 85, 85, 0.5);
}

.uvo-dropdown .uvo-dropdown-items li:hover {
    cursor: pointer;
    background: #eee;
}

.uvo-dropdown .uvo-dropdown-items li.selected {
    background: #eee !important;
}

.uvo-mask-loader {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.uvo-loader-cont {
    position: absolute;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #B1B1B1;
    background-color: white;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    display: block;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.uvo-loader-cont .uvo-loader {
    -webkit-animation: spin 0.5s infinite linear;
    animation: spin 0.6s infinite linear;
    border: 3px solid #555;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    height: 20px;
    width: 20px;
    pointer-events: none;
    z-index: 4;
}

.button-badge {
    position: absolute;
    top: 0;
    right: -5px;
    margin-left: 5px;
    border: 1px solid white;
    font-size: 10px;
    font-weight: bold;
    background: #f44336;
    color: #FFFFFF;
    height: 15px;
    width: 15px;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    opacity: .7;
}

.attachment-list {
    min-height: 75px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px;
    margin-bottom: 2px;
}

.attachment-table {
    width: 100%;
}

.attachment-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.attachment-table tr:hover {
    background-color: #EEE !important;
}

.attachment-table tr:nth-child(even) {
    background-color: #F9F9F9;
}

.attachment-button {
    padding: 2px;
    font-size: 12px;
    margin-left: 10px;
}

.attachment-file a {
    text-decoration: none;
}

.attachment-list a {
    color: #212121;
    text-decoration: none;
}

.attachment-list a:hover {
    text-decoration: none;
}

.attachment-icon {
    margin-right: 5px;
    font-size: 17px;
}

.cell-fake-link i {
    margin-right: 3px;
}

.grid-icon {
    display: inline-block;
    /* margin: 4px; */
    font-size: 12px;
}

.grid-action-icon {
    position: relative;
    display: inline-block;
    margin-right: 3px;
    width: 30px;
    text-align: center;
}

.grid-action-icon i {
    font-size: 12px;
}

.grid-action-icon-inactive {
    color: #CCC;
    position: relative;
    display: inline-block;
    font-size: 12px;
    text-align: center;
}

/* helpers */

.bg-white {
    background-color: white !important;
}

.form-error .badge {
    background-color: rgba(208, 68, 55, .8);
    color: #FFFFFF;
    border-radius: 3px;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    padding: 2px 5px 3px;
    text-align: center;
}

.form-address-input {
    height: 50px !important;
    resize: none;
}

.form-address-input:hover {
    cursor: pointer;
}
/* 
.autoComplete_wrapper {
    display: inline-block;
    position: relative;
}

.autoComplete_wrapper>input::placeholder {
    color: rgba(123, 123, 123, 0.5);
    transition: all 0.3s ease;
}

.autoComplete_wrapper>ul {
    position: absolute;
    width: 200px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    outline: none;
    padding: 8px 0;
    margin: 0;
    background-color: #fff;
    border-radius: 3px;
    border: 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    color: #444;
    font-size: 15px;
    font-weight: 500;
}

.autoComplete_wrapper>ul>li {
    list-style-type: none;
    white-space: nowrap;
    display: block;
    height: 35px;
    line-height: 35px;
    padding: 0 8px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 500;
    text-transform: none;
}

.autoComplete_wrapper>ul>li::selection {
    color: rgba(#ffffff, 0);
    background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer;
    background-color: rgba(123, 123, 123, 0.1);
}

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: rgba(255, 122, 122, 1);
    font-weight: bold;
}

.autoComplete_wrapper>ul>li mark::selection {
    color: rgba(#ffffff, 0);
    background-color: rgba(#ffffff, 0);
}

.autoComplete_wrapper>ul>li[aria-selected="true"] {
    background-color: rgba(123, 123, 123, 0.1);
}

@media only screen and (max-width: 600px) {
    .autoComplete_wrapper>input {
        width: 18rem;
    }
} */