.logo-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-center img{
    width: 90px;
    display: block;
    margin-bottom: 15px;
}

.btn-theme{
    background-color: #1b5e8c;
    border-color: #1b5e8c;
    color: #fff;
}

.btn-theme:hover,
.btn-theme:active
{
    background-color: #2174ac;
    border-color: #2174ac;
    color: #fff;
}

.text-theme{
    color: #1b5e8c;
}

.btn-login{
    margin-top: 30px;
}

*[data-alert="inline"]{
    display: none;
}

.spinner-button{
    width: 1.5rem;
    height: 1.5rem;
}

.btn-success-theme{
    background-color: #1abd36 !important;
    border-color: #1abd36 !important;
}

.btn-danger-theme{
    background-color: #ff3b30 !important;
    border-color: #ff3b30 !important;
}

.password-box{
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.password-box .control-password{
    position: absolute;
    right: 10px;
    opacity: 0.7;
    color: #2174ac;
}

.password-box .control-password:hover{
    opacity: 1;
    cursor: pointer;
}

.password-box input{
    padding-right: 20px;
}

.brand-logo span{
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
}

.page-content{
    border-radius: 5px;
}

.form-control-full{
    padding: 0px;
}

.form-control-full .form-control{
    border: none;
    outline: none;
    box-shadow: none;
}

.nav-body-child{
    padding-left: 20px;
}

.nav-body-child .custom-control-inline{
    display: block;
}

.header-with-button{
    position: relative;
    top: 0;
    left: 0;
}

.header-with-button .header-button{
    position: absolute;
    right: 0;
    top: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #1abd36;
    background-color: #1abd36;
}

/* delete modal */
.delete-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 99;
}

.delete-modal .footer{
    display: flex;
}

.delete-modal button{
    border: none;
    border-radius: 6px;
    font-size: 16px;
    height: 50px;
    flex: 1;
    margin-right: 10px;
}

.delete-modal button:last-child{
    margin-right: 0px;
}

.delete-modal button:hover{
    cursor: pointer;
}

.delete-modal .body{
    margin-bottom: 20px;
}

.delete-modal .body input{
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 18px;
    margin-top: 10px;
    outline: none;
    box-shadow: 0px;
}

.delete-modal .body p{
    display: block;
    padding-top: 15px;
    padding-bottom: 10px;
}

*[data-radio-row]:hover{
    cursor: pointer;
}

.display-avatar{
    width: 70px;
    height: 70px;
    margin-top: 10px;
}

.no-padding{
    padding: 0px;
}

.general-settings *[data-target]{
    display: none;
}

.general-settings .btn-primary.focus, .general-settings .btn-primary:focus{
    box-shadow: none;
}

.active-nav-link {
    color: #212837 !important;
    font-weight: 600;
}

.page-header .time{
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    display: block;
}

.button-center{
    display: flex;
    align-items: center;
}

#sidebar-bootstrap .btn{
    width: 150px;
}

.ticket-info{
    display: flex;
    flex-direction: column;
}

.ticket-info .title{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.6;
}

.ticket-body-header img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.ticket-body-header-name{
    padding-left: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.ticket-body-header-name h2{
    font-size: 18px;
    margin-bottom: 2px;
}

.ticket-body-header{
    margin-bottom: 10px;
}

.ticket-body-text{
    font-size: 16px;
}

/* PRELOADER */
.preloader-line{
    width: 100%;
    height: 20px;
    background: var(--gray-color);
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.preloader-line:nth-child(1){ width: 95%;}
.preloader-line:nth-child(3){ width: 97%;}
.preloader-line:nth-child(5){ width: 92%;}
.preloader-line:nth-child(7){ width: 85%;}

.preloader-line:after{
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 50%;
    content: "";
    background-color: #f5f5f5;
    animation-name: preload;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0s;

}

.preloader-line:nth-child(1)::after{ animation-delay: 0.1s;}
.preloader-line:nth-child(3)::after{ animation-delay: 0.2s;}
.preloader-line:nth-child(5)::after{ animation-delay: 0.25s;}
.preloader-line:nth-child(7)::after{ animation-delay: 0.3s;}
.preloader-line:nth-child(9)::after{ animation-delay: 0.35s;}

@keyframes preload{
    to{
        left: -50%;
    }
}

@-webkit-keyframes preload{
    to{
        left: -50%;
    }
}

*[data-preloader-inline="yes"]{
    visibility: hidden;
}

#dashboard *[data-preloader-inline="yes"]{
   visibility: hidden;
   max-height: 200px;
}

.error-screen{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-screen .error-icon{
    width: 50px;
    height: 50px;
    background-image: url('../img/icon/cancel.png');
    background-size: cover;
    margin-bottom: 10px;
}

.table-image{
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    object-fit: cover;
    border-radius: 5px;
}


.gallery-row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-row{
    margin-bottom: 10px;
}

.app-content:not(.dashboard) {
    margin-left: 0px;
}

#rate-settings .form-group{
    display: flex;
}

#rate-settings .form-group select{
    appearance: none;
    -webkit-appearance: none;
    width: 60px;
    margin-left: 10px;
}

.transfer-modal{
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255,255,255,0.9);
    z-index: 99;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.transfer-modal-inner{
    width: 500px;
    height: auto;
    background-color: #fff;
    position: relative;
    top: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.transfer-modal-inner #content{
    max-height: 450px;
    overflow: scroll;
}

.transfer-modal-inner .close-btn{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff3b30;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    border: none;
    line-height: 0;
    cursor: pointer;
}

@media only screen and (max-width: 500px)
{
    .transfer-modal-inner{
        width: 95%;
    }
}