.site-logo{
    width: 100px;
    max-height: 60px;
    padding-bottom: 6px
}
.site-logo.login{
    width: 200px;
    max-height: 150px;
    padding-bottom: 0px
}

.material-half-bg .cover{
    background-color: var(--primary-dark);
}

/************ File Upload Button ************/
.button-upload-file {
    position: relative;
    cursor: pointer;
    transition: all .8s linear;
    width: 150px;
}

.button-upload-file .upload-success {font-size: 22px;}

.value-input-file{display: none;}

.button-upload-file .input-file {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.upload-file-content-icon.left{
    margin-right: 5px;
}
.upload-file-content-icon.right{
    margin-left: 5px;
}

.input-error{
    font-size: 15px;
    color: #b7000c;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

#map {
    height: 500px;
    width: 100%;
    margin: auto;
}
.control-link{
    font-size: 18px;
    padding-left: 8px;
    cursor: pointer;
}
.control-link.edit{
    color: #0cac00;
}
.control-link.edit:hover{
    color: #096000;
}
.control-link.remove{
    color: #ca0900;
}
.control-link.remove:hover{
    color: #761b18;
}
.page-message{
    font-size: 17px;
    font-weight: 700;
}
.page-message.success{
    border-color: #bce0c5;
}
.page-message.danger{
    border-color: #e0bcbc;
}

.app-sidebar__toggle{
    position: relative;
    padding: 0 20px;
}
.app-sidebar__toggle i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-58%);
    font-size: 20px;
}
.toggle-flip label{
    position: relative;
}
.toggle-flip input[type="checkbox"]{
 position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.selects{
    display: none;
}


.full-box-img{
    max-width: 100%;
    max-height: 100%;
}

.delete-slider{
    margin: 5px auto ;
}

.option-box{
    background-color: #f7f7f7;
    border-bottom: 1px solid #eee;
    padding: 10px;
    margin: 10px 0;
}

.order-info label{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #555;
    padding: 0;
    margin: 0;
}
.order-info .value{
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.text-size-15{font-size: 15px;}
.text-size-16{font-size: 16px;}
.text-size-17{font-size: 17px;}
.text-size-18{font-size: 18px;}
.text-size-18{font-size: 19px;}
.text-size-20{font-size: 20px;}


.color-primary{color: var(--primary);}

.color-primary-dark{color: var(--primary-dark);}

.color-sub{color: #555;}

.text-with-icon{
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 16px;
    background-color: #fafafa;
    border-radius: 5px;
}
.text-with-icon .icon{
    padding: 7px 10px;
    display:inline-block;
    background-color: #f2f2f2;
    border-radius: 5px 0 0 5px;

}
.text-with-icon .text{
    display:inline-block;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
}
.widget-small .info{
    overflow: hidden;
}
.widget-small .info h4{
    font-size: 15px;
}
.widget-small .info p{
    font-size: 22px;
    color: #666;
}

.login-errors{
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #690400;
    width: auto;
    perspective: 800px;

    transform: translateX(-50%) rotateY(270deg);
    padding: 6px 24px 10px;
    border-radius: 0 0 4px 4px;
    box-shadow:  0 0 15px rgb(49, 5, 5);
    animation-name: errors_effect;
    animation-fill-mode:forwards;
    animation-duration: 1.2s;

}
@keyframes errors_effect {
    0%{
        transform: translateX(-50%) rotateX(180deg) rotateY(90deg);
    }
    100%{
        transform: translateX(-50%) rotateX(0deg) rotateY(0deg);
    }
}
.login-errors ul{
    list-style: none;
    font-weight: 600;
    font-size: 17px;
    padding: 0;
    margin: 0;
    color: #f2f2f2;
}

.verfiy-box{
    position: relative;
    min-width: 200px;
    min-height: 200px;
    padding: 40px 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 29px 147.5px 102.5px rgb(0 0 0 / 5%), 0px 29px 95px 0px rgb(0 0 0 / 16%);
    box-shadow: 0px 29px 147.5px 102.5px rgb(0 0 0 / 5%), 0px 29px 95px 0px rgb(0 0 0 / 16%);
    -webkit-perspective: 800px;
    perspective: 800px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tree-container {
    padding: 10px;
}
.tree{
    list-style-type: none;
    padding: 0;
}
.has-tree .tree{ display: none;}
.tree li div.node{
    color: #555;
    font-size: 16px;
    border: 1px solid #eee;
    padding: 10px 10px;
    background-color: #f6f6f6;
    margin-bottom: 4px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
}
.tree li div.node.action-tree{
    cursor: pointer;
}
.tree li div.node.open i.arrow{
    transform: rotate(90deg);
    transition: .6s;
}
.tree li div.node > i.arrow{
    font-size: 18px;
    color: #333;
    margin-right: 7px;


}

.tree li div.node > .node-details{
    padding: 7px;
    background-color: #fff;
    font-size: 14px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 400;


}
.tree li{
    padding-left: 25px;


}
.uploaded-images{
}
.uploaded-images .img-container{
    height: 100px;
    display: inline-block;
    margin-right: 5px;
}
.uploaded-images .img-container img{
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/**************** Start CheckBox ***************/
.checkbox-correct{display: inline-block;}
.checkbox-correct input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background-color: #d5d5d5;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;

}
.checkbox-correct input[type="checkbox"]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f00c';
    font-size: 30px;
    color: #fff;
    display: inline;
    opacity: 0;
}

.uploaded-video .video-container{
    height: 100px;
    display: inline-block;
    margin-right: 5px;
}


.uploaded-video .video-container video{
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-correct input[type="checkbox"]:checked { background-color: var(--primary); box-shadow:  0px 0px 5px #105198;}

.checkbox-correct input[type="checkbox"]:checked::after {opacity: 1;}

.checkbox-correct.size-1 input[type="checkbox"]{width: 20px;height: 20px;}

.checkbox-correct.size-1 input[type="checkbox"]::after{font-size: 13px;}

.checkbox-correct.size-2 input[type="checkbox"]{width: 25px;height: 25px;}

.checkbox-correct.size-2 input[type="checkbox"]::after{font-size: 17px;}

.checkbox-correct.size-3 input[type="checkbox"]{width: 30px;height: 30px;}

.checkbox-correct.size-3 input[type="checkbox"]::after{font-size: 19px;}

.checkbox-correct.size-4 input[type="checkbox"]{width: 35px;height: 35px;}

.checkbox-correct.size-4 input[type="checkbox"]::after{font-size: 23px;}

.checkbox-correct.size-5 input[type="checkbox"]{width: 45px;height: 45px;}

.checkbox-correct.size-5 input[type="checkbox"]::after{font-size: 33px;}

.field-view{
    background-color: var(--primary);
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 5px;
    margin-bottom: 5px;

    color: #f2f2f2;
    border-radius: 5px;
    display: inline-block;
}

.page-wrap {
    min-height: 100vh;
}
.error-page .code{
    font-size: 140px;
}
