/*AUTHORIZED MENU KEY ITEMS CSS*/
[data-authorized-menu-key] {
    display: none;
}

.personel-ddl {
    padding: 5px 0px !important;
    height: 60px !important;
}

.user-img {
    width: 50px;
    border-radius: .25rem !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

/*CUSTOM LABEL*/
div.custom-label-wrapper {
    display: flex;
}

div.custom-label {
    font-weight: bold;
}

div.custom-label-colon::after {
    content: ":";
    font-weight: bold;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

/*TOASTIFY*/
.toastify-info {
    background: linear-gradient(to right, #3fc3ee, #3fc3ee) !important;
    box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%), 0 10px 36px -4px #3fc3ee4d !important;
}

.toastify-success {
    background: linear-gradient(to right, #2eb85c, #2eb85c) !important;
    box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%), 0 10px 36px -4px #2eb85c4d !important;
}

.toastify-warning {
    color: #292929 !important;
    background: linear-gradient(to right, #f9b115, #f9b115) !important;
    box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%), 0 10px 36px -4px #f9b1154d !important;
}

.toastify-danger {
    background: linear-gradient(to right, #dc3545, #dc3545) !important;
    box-shadow: 0 3px 6px -1px rgb(0 0 0 / 12%), 0 10px 36px -4px #dc35454d !important;
}
/*TOASTIFY*/


.loading {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(150, 150, 150, 0.5);
}

    .loading > i {
        margin-bottom: 5px !important;
    }

    .loading::after {
        font-weight: bold;
        content: 'Yükleniyor...';
    }

.card-hover:hover {
    background-color: #f5f2ee !important;
}

textarea {
    resize: none;
}

.border-red {
    border: 2px solid #e33b3b;
}

.bg-red {
    background-color: #e33b3b !important;
}

.border-green {
    border: 2px solid #6cd790;
}

.bg-green {
    background-color: #6cd790 !important;
}

.bg-light-green {
    background-color: #e4ffed !important;
}

.border-blue {
    border: 2px solid #3fc3ee;
}

.bg-blue {
    background-color: #3fc3ee !important;
    color: #fff !important;
}

.border-yellow {
    border: 2px solid #e3c73b;
}

.bg-yellow {
    background-color: #e3c73b !important;
}

.border-grey {
    border: 2px solid #3c4b64;
}

.bg-grey {
    background-color: #3c4b64 !important;
}

.required-field {
    font-size: 10px !important;
    font-weight: 400 !important;
    color: #fff !important;
    background-color: #dc3545 !important;
    border-radius: 0.25rem !important;
    padding: 0.25rem;
}

    .required-field::after {
        content: 'Zorunlu Alan !';
    }

/*SEARCH FILTERS HAS VALUE*/
.input-has-value {
    border: 1px solid !important;
    border-color: #f9b115 !important;
    background-color: #fffaeb !important;
}

/*ERROR PAGE*/
.error-code {
    line-height: 6rem;
    font-size: 6rem;
    font-weight: 200;
    margin: 0px;
    background: linear-gradient(130deg, #ffa34f, #ff6f68);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.error-message {
    text-transform: uppercase;
    letter-spacing: 3px;
}