/*
* custom.css
******************************************************************************/
.auth-lang-switcher {
    color: #14a085;
}

.auth-lang-switcher:hover {
    color: #111;
}

.submit-buttons {
    color: #fff !important;
    background-color: #14a085 !important;
    border-color: #14a085 !important;
}

.submit-buttons:hover {
    color: #fff !important;
    background-color: #128b73 !important;
    border-color: #128b73 !important;
}

.input-group:focus-within .form-control,
.input-group:focus-within .input-group-text,
.form-control:focus,
.form-select:focus {
    border-color: #14a085 !important;
}

.auth-lang-switcher.active {
    font-weight: bold;
    color: #007bff;
    background-color: #7367f014;
}

.notify {
    z-index: 999;
    margin-top: 80px;
}

.layout-navbar {
    height: 5rem;
}

.search_in .radio-label {
    cursor: pointer;
    user-select: none;
}

.search_in .radio-input {
    display: none;
}

.search_in .radio-text {
    padding: 10px;
}

.radio-label.checked .radio-text,
.radio-input:checked + .radio-text {
    font-weight: bold;
    color: #7367f0;
}

/*nav .search_result {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    width: 100%;*/
/*    right: 0;*/
/*    left: 0;*/
/*    border-radius: 10px;*/
/*}*/

.search_result {
    background-color: #FFF;
    box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
    position: absolute;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 3px;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    z-index: 1;
    top: 100%;
    right: 0;
}

.search_result .result_list {
    list-style: none;
    padding: 0;
}

.search_result .result_list .result_item {
    border-bottom: 1px solid #ddd;
    padding: 10px 5px;
}

.search_result .result_list .result_item:last-of-type {
    border-bottom: none;
}

.search_result .result_list .result_item:hover {
    background-color: #F1F1F1;
}


.loading {
    position: relative;
    padding: 20px 0;
}

.loading .spin {
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
    position: absolute;
    font-weight: 900;
    z-index: 9999;
    right: 50%;
    top: 50%;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

