﻿@font-face {
    font-family: 'IRANSans';
    src: url('/fonts/IRANSans.ttf?v=4.1.0') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
  position: relative;
  min-height: 100%;
}
* {
    font-family: IRANSans !important;
}
body {

    font-size: 14px !important;
  margin-bottom: 60px;
}



/*Image Viewer*/
#image-viewer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

#image-viewer .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
    }

#image-viewer .modal-content {
        animation-name: zoom;
        animation-duration: 0.6s;
    }

@keyframes zoom {
     from {
         transform: scale(0)
     }

     to {
         transform: scale(1)
     }
 }

#image-viewer .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

#image-viewer .close:hover,
#image-viewer .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    #image-viewer .modal-content {
        width: 100%;
    }

    #sidebar[class*="active"] {
        position: fixed !important;
        width: 100% !important;
        z-index: 10 !important;
    }
        #sidebar[class*="active"] .sidebar-wrapper {
            position: fixed !important;
            width: 100%!important
        }
   .sidebar-header {
        text-align: center!important
    }

 
 }
.RequestIsArchive {
    background-color: darkred;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    padding: 2px;
    cursor: pointer;
}

.RequestIsNotArchive {
    border: 1px solid darkred;
    color: #000;
    border-radius: 5px;
    font-size: 10px;
    padding: 2px;
    cursor: pointer;
}
.ModulePermission {
    opacity: 0.7;
    pointer-events: none;
}




.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
}

.lds-ellipsis div {
    position: absolute;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #0e7eb6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

input[readonly][data-jdp] {
    background-color: #fff;
}

input.bs-timepicker[readonly] {
    background-color: #fff;
}