.rtl {
    direction: rtl !important;
}

.ltr {
    direction: ltr !important;
}

.serial {
    border-radius: 3px;

}

.cap label {
    width: 25% !important;
    background: #BDBDBD;
}

.gui-input-error {
    border: rgba(179, 0, 2, 0.74) solid 2px !important;
}

.m-up {
    margin-bottom: 0px !important;
}

.red {
    color: crimson;
}

.mrup {
    padding-top: 10px;
    padding-bottom: 10px;
}

.green {
    color: seagreen;
}

.blue {
    color: steelblue;
}

.acew {
    float: right;
    margin-left: 5px;
}

.info-btn {
    background: #237EB4 !important;
    color: #fff !important;
}

.gray {
    color: #5F5F5F !important;
}

.steps {
    overflow: hidden;
    counter-reset: Number;
    width: 100%;
    margin: 0px auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.steps a {
    text-decoration: none;
    outline: none;
    display: block;
    float: right;
    font-family: yekan;
    font-size: 14px;
    line-height: 33px;
    color: #77787b;
    padding: 0px 50px 0px 10px;
    background: #d9d9d9;
    position: relative;
    width: 25%;
}

@media only screen and (max-width: 600px) {
    .steps a {
        font-size: 13px !important;
        padding-right: 20px !important;
    }

    .steps a:before {
        display: none !important;
    }

}

.steps a:first-child {
}

.steps a:first-child:before {
    right: 15px;
    text-align: center;
}

.steps a:last-child {
}

.steps a:before {
    counter-increment: Number;
    content: counter(Number);
    /*content: counter(Number) ".";	*/
    border-radius: 100%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 21px;
    margin: 7px 0;
    position: absolute;
    right: 20px;
    background: #77787b;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}

.steps a.active:before {
    background: #fff;
    color: #34495e;
    font-size: 14px;
    text-align: center;
}

.steps a.active {
    background: #34495e;
    color: #fff;
}

.steps a.done {
    background: #27ae60;
    color: #fff;
}

.steps a.done:before {
    background: #fff;
    color: #27ae60;
    font-size: 14px;
}

.steps a:after {
    content: '';
    position: absolute;
    top: 3px;
    left: -12px;
    width: 26px;
    height: 26px;
    transform: scale(0.808) rotate(225deg);
    z-index: 1;
    background: #d9d9d9;
    box-shadow: 1px -1px 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 0 3px 0 50px;
}

.steps a.active:after {
    background: #34495e;
}

.steps a.done:after {
    background: #27ae60;
}

.steps a:last-child:after {
    content: none;
}

.ac-container {
    max-width: 100%;
    border-radius: 3px;
}

.ac-container label {
    height: 36px !important;
    line-height: 24px !important;
    font-size: 13px !important;
    font-family: yekan;
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    color: #6e6e6e;
    line-height: 35px;
    font-size: 19px;
    border: 1px solid #eee;
    font-size: 12px;
    height: 30px;
    line-height: 20px;
}

.dlist {
    display: inline-block;
}

.ac-container {
    width: 100%;
    text-align: right;
}

.ac-container label:hover {
    background: #efefef;
    transion: background-color .25s ease-in-out;
    -webkit-transition: background-color .25s

}

.ac-container input:checked + label, .ac-container input:checked + label:hover {
    background: #34495e;
    color: #fff;
    height: 35px;
    line-height: 25px;
    font-size: 15px;
}

.ac-container label:hover:after, .ac-container input:checked + label:hover:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
}

.ac-container input:checked + label:hover:after {
}

.ac-container input {
    display: none;
}

.ac-container article {
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    height: 0;
    position: relative;
    z-index: 10;
}

.ac-container article p {
    font-style: normal;
    color: #777;
    line-height: 23px;
    font-size: 12px;
    padding: 20px;
    font: normal normal 12px yekan;
}

.ac-container input:checked ~ article {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;

}

.ac-container input:checked ~ article.ac-small {
    height: auto;
}

.ac-container input:checked ~ article.ac-medium {
    height: auto;
}

.ac-container input:checked ~ article.ac-large {
    height: auto;
}

.modal {
    /* Overlay page content */
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

/* Content */
.modal > div {
    width: 600px;
    background: #fff;
    position: relative;
    margin: 10% auto;

    /* Prettify */
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
    background: #fff;
    text-shadow: 0 1px 0 #fff;
}

.modal h2 {
    font-size: 36px;
    padding: 0 0 20px;
}

/* Modal close link */
.modal-close {
    position: absolute;
    right: 0;
    top: 0;
    color: transparent;
}

/* Create close button */
.modal-close:after {
    content: 'X';
    display: block;

    /* Position */
    position: absolute;
    right: -10px;
    top: -10px;
    width: 24px;
    height: 24px;
    padding: 3px 3px 3px 3px;

    /* Style */
    text-decoration: none;
    text-shadow: none;
    text-align: center;
    font-weight: bold;
    background-color: crimson;
    color: #fff;
    border-radius: 5px;
    line-height: 26px;
    font-size: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.modal a[href="#close"]:focus:after,
.modal a[href="#close"]:hover:after {
    transform: scale(1.1, 1.1);
}

.modal a[href="#close"]:focus:after {
    outline: 1px solid #000;
}

.inf {
    background-color: #34495e !important;
    color: #fff !important;
    width: 100% !important;
}

@media only screen and (max-width: 600px) {
    .inf {
        font-size: 10px !important;
    }

    .modal > div {
        width: 90% !important;
    }
}

.switch-field {
    font-family: yekan;
    overflow: hidden;

}

.switch-title {
    margin-bottom: 6px;
    line-height: 25px;
    float: right;
    text-align: right;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    float: left;
}

.switch-field label {
    display: inline-block;
    width: 50px;
    background-color: #e4e4e4;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 0px 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #16a085;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table-check td, .table-check tr {
    padding: 0px;
    border: 0px;
}

.table-check {
    border-spacing: 0px;
    border-collapse: separate;
    padding: 0px;
    border: 0px;
    border-radius: 4px !important;
    overflow: hidden;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.dsf {
    border: 2px solid #bdc3c7 !important;
    background: #FFF !important;
}

.error {
    display: none;
}

.rdal {
    border-radius: 4px 0px 0px 4px !important;
}

.rdar {
    border-radius: 0px 4px 4px 0px !important;
}

.bgi {
    background: #ECF0F1;
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }

    .remove-top-padding {
        margin-top: 0px !important;
    }

    @page {
        margin: 0;
    }

    body {
        margin: 0;
        width: 20.99cm;
        height: 14.852cm;

    }

    .smart-wrap {
        box-shadow: none;
    }

    .smart-container {
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    .p-title {
        color: #333333 !important;
    }
}

.office-address-block {
    line-height: 25px;
}

.jobTable {
    border-collapse: collapse;
    border: 1px solid #000000;
}

.jobTableHeader {
    text-align: center;
    background: none repeat scroll 0 0 #34495e;
    border-bottom: 1px solid #000000;
    color: #fff;
    padding: 2px;
}

.jobTableOddRow {
    text-align: center;
    background: none repeat scroll 0 0 #FFFFFFF;
}

.jobTableEvenRow {
    text-align: center;
    background: none repeat scroll 0 0 #16a085;
}

.disableJobRow {
    text-align: center;
    background: none repeat scroll 0 0 #d9d9d9;
}

.runningJobRow {
    text-align: center;
    background: none repeat scroll 0 0 #16a085;
}

.normalJobRow {
    text-align: center;
    background: none repeat scroll 0 0 #ffffff;
}

.otherJobRow {
    text-align: center;
    background: none repeat scroll 0 0 bisque;
}

.errorJobRow {
    text-align: center;
    background: none repeat scroll 0 0 indianred;
}

.cmbDisabled{
    background-color: #f4f6f6;
    border-color: #d5dbdb !important;
    cursor: default;
    color: #d5dbdb;
    opacity: .7;
}

.plus{
    background : url("../portal/resources/images/plus.html");
    background-repeat: no-repeat;
}
