/* Public Styles ------------------------------------------------------------*/
@font-face{
    font-family: yekan;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/yekan.ttf') ;
}
@font-face{
    font-family: iransans;
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/IRANSansWeb.ttf') ;
}
*{
    font-family: 'Ubuntu', iransans, yekan, Tahoma;
}
body{
    margin: 0;
    background: #f3f4f8;
}
.bgMain{
    background: #12182b;
}
/* Public Classes------------------------------------------------------------*/
.drtl{direction: rtl}
.dltr{direction: ltr}
.dnone{display: none}
.dib{display: inline-block}
.dta{display: table}
.dtr{display: table-row}
.dtc{display: table-cell}
.vat{vertical-align: top}
.vam{vertical-align: middle}
.vab{vertical-align: bottom}
.p0{padding: 0}
.pt0{padding-top: 0}
.pr0{padding-right: 0}
.pb0{padding-bottom: 0}
.pl0{padding-left: 0}
.fs0{font-size: 0}
.cb{clear: both}
.tac{text-align: center}
.tal{text-align: left}
.tar{text-align: right}
.taj{text-align: justify}
.w-250{width: 250px !important;}
.w-200{width: 200px !important;}
/* Public Styles-------------------------------------------------------------*/
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="button"],
button,
textarea,
select{
    direction: inherit;
    width: 300px;
    height: 30px;
    padding: 0 10px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="button"]:focus,
button:focus,
textarea:focus,
select:focus{
    border: 1px solid #ffd28f;
}
textarea{
    height: 100px;
    padding: 10px;
    resize: none;
    border-radius: 10px;
}
input[type="button"], button{
    background-image: linear-gradient(#fbb040, #f78e34);
    border: none;
    cursor: pointer;
}
input[type="button"]:hover, button:hover{
    box-shadow: 0 0 7px #fbb040;
    cursor: pointer;
}
input[type="button"]:active, button:active{
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}
.errorInForm{
    border: 1px red solid;
}
.filterDatePlace input{
    width: 110px !important;
    text-align: center;
    min-height: 25px;
}
/* Tables Styles-------------------------------------------------------------*/
.mainTableC2{
    width: 100%;
    text-align: center;
    border-spacing: 2px;
    color: #444;
}
.mainTableC2 .titleTR{
    height: 40px;
    background: #d4d4d4 !important;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}
.mainTableC2 tr{
    height: 30px;
    transition: all .7s;
}
.mainTableC2 tr td:first-child{
    border-radius: 0 5px 5px 0;
}
.mainTableC2 tr td:last-child{
    border-radius: 5px 0 0 5px;
}
.mainTableC2.dltr tr td:first-child{
    border-radius: 5px 0 0 5px;
}
.mainTableC2.dltr tr td:last-child{
    border-radius: 0 5px 5px 0;
}
.mainTableC2 tr:nth-child(even){
    background: #fafafa;
}
.mainTableC2 tr:nth-child(odd){
    background: #f0f0f0;
}
.mainTableC2 tr:hover{
    background: rgba(248, 156, 51, 0.1);
}
/* Loading Styles------------------------------------------------------------*/
#load{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    overflow: hidden;
    background: #eee;
    border-radius: 2px;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
#load:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f59c22;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation: progressbar-infinite 2s linear infinite;
    animation: progressbar-infinite 2s linear infinite;
}
@-webkit-keyframes progressbar-infinite{
    0%{-webkit-transform: translateX(-10%) scaleX(0.1)}
    25%{-webkit-transform: translateX(30%) scaleX(0.6)}
    50%{-webkit-transform: translateX(100%) scaleX(1)}
    100%{-webkit-transform: translateX(100%) scaleX(1)}
}
@keyframes progressbar-infinite{
    0%{transform: translateX(-10%) scaleX(0.1)}
    25%{transform: translateX(30%) scaleX(0.6)}
    50%{transform: translateX(100%) scaleX(1)}
    100%{transform: translateX(100%) scaleX(1)}
}
#totalDIV{
    position: relative;
    /*top: 35px*/;
    width: 100%;
    margin: 0 auto;
    font-size: 13px;
}
#swipTablePlace{
    width: 100%;
    height: 100%;
    overflow-y: visible;
    overflow-x: hidden;
}
#swipTableDIV{
    float: right;
    position: relative;
}
#swipReportDIV{
    float: left;
    position: relative;
}
/* Lightbox Styles ---------------------------------------------------------*/
#lightBoxParent{
    direction: rtl;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100
}
#lightBoxParent #lightBoxBack{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
#lightBoxParent #lightBoxContentMar{
    position: relative;
    margin: 100px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 101;
}
#lightBoxParent #lightBoxClose{
    position: absolute;
    top: 5px;
    left: 5px;
    cursor: pointer;
    z-index: 105;
}
#lightBoxParent #lightBoxContent{
    direction: rtl;
    position: relative;
    width: 900px;
    padding: 0px;
    background: #f3f4f8;
    border-radius: 10px;
    overflow: auto;
    font-size: 13px;
    z-index: 102;
}
#lightBoxParent #lightBoxContent2{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 900px;
    overflow: hidden;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    z-index: 106;
}
/* Login Styles ------------------------------------------------------------*/
#loginMainDIV{
    direction: ltr;
    position: absolute;
    top: 40%;
    right: 10%;
    width: 300px;
    margin: auto;
    padding: 30px 10px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}
#loginMainDIV ::placeholder{
    color: #f1f1f1;
    opacity: 1; /* Firefox */
}
#loginMainDIV :-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #f1f1f1;
}
#loginMainDIV ::-ms-input-placeholder{ /* Microsoft Edge */
    color: #f1f1f1;
}
#loginMainDIV input[type="text"],
#loginMainDIV input[type="password"]{
    direction: ltr;
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    padding: 2px 20px;
    box-sizing: border-box;
    background: rgba(100, 100, 100, 0.6);
    border: none;
    border-radius: 20px;
    color: #fff;
    font: 14px Tahoma;
    letter-spacing: 2px;
    outline: none;
}
#loginMainDIV input[type="button"]{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    box-sizing: border-box;
    font: bold 14px arial !important;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #145cd5, #0b3780);
    color: #fff;
    outline: none;
}
.loginErrors{
    direction: rtl;
    position: relative;
    margin: 7px 5px 5px 0;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    background: #fefefe;
    border-bottom: 1px solid red;
    color: red;
    opacity: 0;
    filter: alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
}
/*---------------------------------------------------------------------------*/
.baseFormDIV{
    padding: 10px 30px;
    box-sizing: border-box;
}
.baseFormTable{
    width: 100%;
}
.baseFormDIV .bfDIV{
    position: relative;
    padding-bottom: 10px;
    font-size: 0;
}
.baseFormDIV .bfl{
    display: block;
    margin: 0 5px 1px 0;
    font-size: 14px;
}
.baseFormDIV .bfDIV.forceField .bfl:before{
    content: '*';
    color: #ff0000;
    margin-left: 3px;
}
.baseFormDIV .bfl .bfOtherSelected{
    font-size: 90%;
    opacity: .7;
}
.baseFormDIV td:first-child{
    width: 250px;
}
.baseFormDIV input[type="text"],
.baseFormDIV input[type="number"],
.baseFormDIV textarea,
.baseFormDIV select{
    width: 100%;
}
.baseFormDIV input[type="button"]{
    width: 100%;
}
.baseFormDIV .baseFormTitleLegend{
    margin: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.baseFormDIV .baseFormTitleLegend span{
    display: inline-block;
    position: relative;
    top: 1px;
    padding: 5px 5px 5px 10px;
    border-bottom: 2px solid #f59c22;
}
/* Public Styles-------------------------------------------------------------*/
.ptrPanelPlaces{
    margin: 0 auto 15px;
    padding: 10px;
    box-sizing: border-box;
    background: #f0f0f0;
    border-radius: 10px;
}
.ptrPanelLegend{
    margin: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.ptrPanelLegend span{
    display: inline-block;
    position: relative;
    top: 1px;
    padding: 5px 5px 5px 10px;
    border-bottom: 2px solid #f59c22;
}
/*---------------------------------------------------------------------------*/
.dashboardBox{
    width: 23%;
    height: 100px;
    background: #fff;
    border-radius: 10px;
}
.dashboardTicket .zmdi-email{
    color: #39f;
}
.dashboardTicket .zmdi-email-open{
    color: #333;
}
.dashboardTicket .zmdi-block{
    color: #f00;
}
/*---------------------------------------------------------------------------*/
.switch{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}
.slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before{
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 2px;
    background-color: #ddd;
    -webkit-transition: .4s;
    transition: .4s;
}
.sliderTitle{
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 10px;
}
input:checked + .slider + .sliderTitle{
    left: 20px;
}
input:checked + .slider:before{
    background-color: #0a197e;
}
input:focus + .slider{
    box-shadow: 0 0 1px #2196f3;
}
input:checked + .slider:before{
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
    /*-webkit-transform: translateX(0px);*/
    /*-ms-transform: translateX(0px);*/
    /*transform: translateX(0px);*/
}
.slider.round{
    border-radius: 34px;
}
.slider.round:before{
    border-radius: 50%;
}
.filterOptions{
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}
.filterOptions p{
    margin: 0;
}
/*-------------------------------------------*/
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 0px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}