/* 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: #e6e6e6;
}
.bgMain{
    background: #000;
}
/* Public Classes------------------------------------------------------------*/
.drtl{direction: rtl}
.dltr{direction: ltr}
.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}
/* 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: #d2ab67;
    border: none;
    cursor: pointer;
}
input[type="button"]:hover, button:hover{
    box-shadow: 0 0 7px #d2ab67;
    cursor: pointer;
}
input[type="button"]:active, button:active{
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}
/* 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: #d2ab67;
    -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{
    direction: rtl;
    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: relative;
    top: 20%;
    /*right: 10%;*/
    width: 300px;
    margin: 0 auto;
}
#loginMainDIV ::placeholder{
    color: #92969c;
    opacity: 1; /* Firefox */
}
#loginMainDIV :-ms-input-placeholder{ /* Internet Explorer 10-11 */
    color: #92969c;
}
#loginMainDIV ::-ms-input-placeholder{ /* Microsoft Edge */
    color: #92969c;
}
#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(255, 255, 255, 0.2);
    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: #cdab51;
    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;
}
/* Product Panel-------------------------------------------------------------*/
.proItemBrands{
    display: inline-block;
    position: relative;
    width: 12%;
    height: 70px;
    margin: 5px .25%;
    padding: 10px 5px;
    overflow: hidden;
    box-sizing: border-box;
    background: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all .3s;
}
.proItemBrands:hover{
    background: #d0d0d0;
}
.proItemBrands img{
    position: absolute;
    left: 5%;
    width: 90%;
    transition: all 0.3s;
}
.proItemBrands.proItemBrandActive{
    background: #fff;
}
.proItemBrands .brandImgC{top: -100px}
.proItemBrands .brandImgG{top: 10px}
.proItemBrands.proItemBrandActive .brandImgC{top: 10px}
.proItemBrands.proItemBrandActive .brandImgG{top: 100px}
.catSelectorLB{
    display: flex;
    direction: ltr;
    justify-content: space-between;
}
.catSelectorLB div{
    width: 24%;
    height: 270px;
    overflow: auto;
    padding: 5px;
    box-sizing: border-box;
    background: #e0e0e0;
    border-radius: 10px;
}
.catSelectorLB div ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.catSelectorLB li{
    margin-bottom: 1px;
    padding: 5px;
    box-sizing: border-box;
    white-space: nowrap;
    background: #ccc;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
}
.catSelectorLB li:hover{
    background: #bbb;
}
.catSelectorLB li.catItemActive{
    background: #f59c22;
}
/*--------------------------------------*/
#sellBasketPanelBut{
    display: inline-block;
    position: fixed;
    top: 71px;
    left: -52px;
    padding: 2px 15px 2px 5px;
    background: #000000;
    border-radius: 0 7px 7px 0;
    color: #d2ab67;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
    user-select: none;
    z-index: 10;
}
#sellBasketPanelBut i{
    vertical-align: middle;
    margin-left: 15px;
}
#sellBasketPanelBut span{
    display: inline-block;
    vertical-align: middle;
}
#sellBasketPanelBut:hover{
    left: 0px;
}
#sellBasketPanelMonitor{
    position: fixed;
    top: 100px;
    left: -250px;
    width: 250px;
    height: 600px;
    background: #ccc;
    border-radius: 0 10px 10px 0;
    transition: all 0.4s;
    z-index: 10;
}
#sellBasketPanelMonitor.sellBasketActive{
    left: 0;
}
/*---------------------------------------------------------------------------*/
.allProdPanelGrandPA{
    position: relative;
}
#allProdPanelSwiper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 15px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all .4s;
    transform: scale(0, 0);
    z-index: 3;
}
.allProdPanelSwiperActive{
    transform: scale(1, 1) !important;
}
.allProdPanel{
    direction: ltr;
    display: table;
    width: 100%;
    margin-bottom: 20px;
    border-spacing: 2px;
}
.allProdPanel .allProdPanelBox{
    padding: 7px;
    vertical-align: top;
    box-sizing: border-box;
    background: #bbb;
    border-radius: 10px;
}
.allProdPanel .allPPReportPlace{
    /*height: 150px;*/
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    /*padding: 10px;*/
    box-sizing: border-box;
    /*background: #f5f5f5;*/
    border: 1px solid #e5e5e5;
    border-bottom-width: 0;
    /*box-shadow: 0 2px 7px rgba(0, 0, 0, 0.07);*/
    border-radius: 10px;
    color: #fff;
    font-size: 11px;
}
.allPPIndicatorChart{
    display: flex;
    justify-content: flex-start;
    position: relative;
    top: 10px;
    width: 100%;
    height: 5px;
    border-radius: 0px;
    text-align: center;
}
.allPPIndicatorChart div{
    position: relative;
    width: 0;
    height: 5px;
    white-space: nowrap;
    transition: all .3s;
}
.allPPIndicatorChart div span{
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    text-align: center;
}
.allPPIndicatorChart div span b{
    font-weight: normal;
}
.allPPIndicatorChart div:nth-child(2n){
    background: #054368;
    color: #054368;
}
.allPPIndicatorChart div:nth-child(2n+1){
    background: #0091ca;
    color: #0091ca;
}
.allPPPagerPlace span{
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    cursor: pointer;
    vertical-align: middle;
    transition: all .3s;
}
.allPPPagerPlace span:hover{
    border: 1px solid #bbb;
}
.allPPPagerPlace span i{
    vertical-align: middle;
    font-size: 15px;
}
.allPPPagerPlace span.pagerActive{
    background: #0091ca;
    color: #fff
}
.allProdPanel .allPPCards{
    display: inline-block;
    position: relative;
    width: 32%;
    min-width: 320px;
    max-width: 420px;
    min-height: 200px;
    margin: 6px .5%;
    padding: 5px 2px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
}
.allProdPanel .allPPCards:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.allPPCards .allPPIndex{
    display: inline-block;
    min-width: 22px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 2px;
    line-height: 22px;
    background: #777;
    border-radius: 10px 0 10px 0;
    color: #fff;
    text-align: center;
    font-size: 10px;
    box-sizing: border-box;
    z-index: 2;
}
.allPPCards .allPPQuarantine{
    display: inline-block;
    height: 22px;
    line-height: 22px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    background: #fbb040;
    border-radius: 0 10px 0 10px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    z-index: 2;
}
.allPPCards .allPPImagePlace{
    display: inline-block;
    width: 80px;
    height: 80px;
    padding: 3px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
}
.allPPCards .allPPImagePlace img{
    max-width: 90%;
    max-height: 90%;
}
.allPPCards .allPPPrice{
    width: 90%;
    margin: 0 auto;
    padding: 5px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.allPPCards .allPPButtons{
    display: inline-block;
    width: 90%;
    height: 20px;
    margin: 2px 5px;
    line-height: 20px;
    font-size: 10px;
    font-weight: bold;
    background: #e5e5e5 /*#03547b*/;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}
.allPPCards .allPPOrderCodes{
    margin: 0 0 5px;
    text-align: left;
}
.allPPCards .allPPTextItems{
    display: flex;
    justify-content: space-between;
    margin: 0 0 2px;
}
.allPPCards .allPPCategory{
    min-width: 50px;
    padding: 5px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}
.allPPCards .allPPCategory:first-child{
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-weight: normal;
}
.allPPCards .allPPCardsSimilarity{
    display: flex;
    justify-content: space-between;
    width: 95%;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 2.5%;
    padding: 5px 5px 2px;
    box-sizing: border-box;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}
.allPPCards .allPPCardsSimilarity .similarityPercent{
    display: inline-block;
    margin-bottom: 5px;
}
.allPPCards .allPPCardsSimilarity .similarityProgress{
    position: relative;
    top: 5px;
    width: 50%;
    height: 3px;
    margin: 0 auto 2px;
    background: #555;
    border-radius: 3px;
}
.allPPCards .allPPCardsSimilarity .similaritySickbar{
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #39f;
    border-radius: 3px;
    transition: all .3s;
}
.allPSortingButtons{
    direction: rtl;
    text-align: right
}
.allPSortingButtons span{
    display: inline-block;
    min-width: 25px;
    height: 25px;
    line-height: 25px;
    padding: 0 5px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    cursor: pointer;
    vertical-align: middle;
    transition: all .3s;
}
.allPSortingButtons span:hover{
    background: #eee;
}
.allPSortingButtons span.activeSorting{
    background: #0091ca;
    color: #fff;
}
.filterBoxes{
    position: relative;
    margin: 0 auto 15px;
    padding: 5px 10px 10px;
    box-sizing: border-box;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-bottom-width: 0;
    border-radius: 10px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    font-size: 11px;
    overflow: hidden;
    /*height: 40px;*/
    transition: all 0.4s;
}
.filterBoxes .zmdi-chevron-down{
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s;
}
.filterBoxes.boxOpen .zmdi-chevron-down{
    transform: rotate(180deg);
}
.filterBoxes .filterBoxTitle{
    position: relative;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
    color: #14234e;
    font-weight: bold;
    line-height: 20px;
    z-index: 2;
    cursor: pointer;
}
.filterBoxes .filterBoxTextes{
    max-height: 300px;
    overflow: auto;
    user-select: none;
}
.filterBoxes .filterBoxTextes p,
.filterBoxes .selectedFilters p{
    margin: 0;
    padding: 4px 0;
}
.filterBoxes .selectedFilters{
    overflow: hidden;
}
.filterBoxes .selectedFilterP{
    position: relative;
    left: -300px;
    width: 95%;
    margin: 5px 0 0 !important;
    padding: 5px 10px !important;
    background: rgba(3, 84, 123, 0.1);
    border: 1px solid rgba(3, 84, 123, 0.3);
    border-radius: 5px;
    box-sizing: border-box;
    color: rgb(3, 84, 123);
    transition: all .3s;
}
.filterBoxes .selectedFilterP i{
    margin-right: 5px;
    font-weight: bold;
    vertical-align: middle;
}
.filterBoxes .selectedFilterP label{
    display: inline-block;
    vertical-align: middle;
}
.filterBoxes .filterBoxSearchInput{
    width: 95%;
    height: 20px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1)
}
.filterBoxes .filterBoxSearchInput + i{
    position: absolute;
    top: 3px;
    right: 15px;
    color: #aaa;
    font-size: 15px;
    opacity: 1;
    transition: all .3s;
}
.filterBoxes .filterBoxSearchInput:focus + i{
    opacity: 0;
}
/*---------------------------------------------------------------------------*/
.allPPContentBoxes{
    margin: 7px 7px 15px;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.allPPCBBut{
    display: block;
    position: relative;
    margin-bottom: 2px;
    line-height: 35px;
    box-sizing: border-box;
    text-align: center;
    background: #eee;
    border-right-width: 50px;
    border-right-style: solid;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: all .4s;
}
.allPPCBBut:hover{
    background: #ddd;
}
.allPPCBBut i{
    position: absolute;
    top: 7px;
    right: -35px;
    font-size: 20px;
    color: #fff;
}
/*---------------------------------------------------------------------------*/
.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: #70a800;
}
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;
}
/*---------------------------------------------------------------------------*/

/*input[type=checkbox]{
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}
input[type=checkbox] + label{
    display: inline-block;
    height: 15px;
    padding-left: 20px;
    line-height: 15px;
    vertical-align: middle;
    font-size: inherit;
    cursor: pointer;
    transition: none;
    background: url(http://csscheckbox.com/checkboxes/web-two-style.png) no-repeat 0 0;
    background-size: 15px;
}
input[type=checkbox]:checked + label{background-position: 0 -15px;}*/
/*---------------------------------------------------------------------------*/
.formComboWidth{
    width:230px;
}
/*---------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------dashboard*/
.topBoxD{
    position: relative;
    min-height: 1px;
    /*padding-left: 15px;*/
}

.smalBoxTD{
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.smalBoxTDT{
    padding: 10px;
    color: #fff !important;
    direction: ltr;
}

.smalBoxTDH{
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    white-space: nowrap;
    padding: 0;
    line-height: 1.1;
}

.smalBoxTDP{
    font-size: 15px;
    margin: 0 0 10px;
}

.smalBoxTDI{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 0;
    font-size: 45px;
    color: rgba(0,0,0,0.15);
    transition: all .3s linear;
}

.smalBoxTDL{
    cursor: pointer;
    transition: all .3s linear;
    font-size: 45px;
}

.smalBoxTDL:hover{
    font-size: 55px;
}

.smalBoxTDBT{
    position: relative;
    text-align: center;
    padding: 3px 0;
    color: rgba(255,255,255,0.8);
    /*z-index: 10;*/
    background: rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
}

.info-box{
    color: #fff;
    display: block;
    min-height: 50px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    border-radius: 2px;
    margin: 0;
    direction: ltr;
}

.info-box-icon{
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    float: left;
    height: 80px;
    width: 90px;
    text-align: center;
    font-size: 35px;
    line-height: 80px;
    background: rgba(0,0,0,0.2);
}

.info-box-content{
    padding: 5px 10px;
    margin-left: 90px;
}

.info-box-number{
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.progress{
    position: relative;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    margin: 5px 0px;
    height: 2px;
    box-shadow: none;
}

.progress-bar{
    background: #fff;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 3s;
}

.progress-description{
    direction: rtl;
    margin: 0;
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.w0i{
    width: 0% !important;
}
