/* Minification failed. Returning unminified contents.
(193,19): run-time error CSS1030: Expected identifier, found ','
(193,26): run-time error CSS1031: Expected selector, found ')'
(193,26): run-time error CSS1025: Expected comma or open brace, found ')'
(197,18): run-time error CSS1030: Expected identifier, found ','
(197,25): run-time error CSS1031: Expected selector, found ')'
(197,25): run-time error CSS1025: Expected comma or open brace, found ')'
(1245,1): run-time error CSS1035: Expected colon, found '}'
(1726,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-table-bg'
(1728,41): run-time error CSS1039: Token not allowed after unary operator: '-bs-table-accent-bg'
(1974,29): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-width'
(1974,52): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-style'
(1974,75): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-color'
(2030,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(2039,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-form-check-bg'
(2040,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-form-check-bg-image'
(2044,18): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-width'
(2044,47): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-color'
(2057,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5763,59): run-time error CSS1030: Expected identifier, found 'td'
(5763,61): run-time error CSS1031: Expected selector, found ')'
(5763,61): run-time error CSS1025: Expected comma or open brace, found ')'
(6058,70): run-time error CSS1030: Expected identifier, found ','
(6058,90): run-time error CSS1031: Expected selector, found ')'
(6058,90): run-time error CSS1025: Expected comma or open brace, found ')'
(7222,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
 */
.fi::before {
    font-family: uicons-regular-rounded !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.top-10 {
    top: 10% !important;
}

.sp-hidden {
    display: none !important;
}

.modal {
    background: rgba(0,0,0,0.5)
}

    .modal.show .modal-dialog, .modal-backdrop {
        background: none;
    }

/*.fade {
    transition-duration: 2s;
}*/

.popover-minWidth {
    min-width: 30%;
}

.popover-header {
    border-bottom: 2px solid #1264bd !important;
}

    .popover-header p {
        margin-bottom: 0;
    }

.popover-footer button {
    line-height: 1 !important;
}

.toast-container {
    z-index: 15000 !important;
}


.toast-notification {
    position: relative;
    right: 0;
    top: 0;
    z-index: 15000;
    background-color: #fff !important;
    padding: 5px;
    border-radius: 5px 0 0 5px;
}

    .toast-notification::before {
        content: '';
        width: 10px;
        height: 100%;
        position: absolute;
        inset: 0;
        border-start-start-radius: 5px;
        border-end-start-radius: 5px;
    }

    .toast-notification i {
        font-size: 19px;
    }

    .toast-notification.success i {
        color: #4B922C !important;
    }

    .toast-notification.success::before {
        background-color: #4B922C;
    }

    .toast-notification.error i {
        color: #FF3B30 !important;
    }

    .toast-notification.error::before {
        background-color: #FF3B30;
    }

    .toast-notification.information i {
        color: #007AFF !important;
    }

    .toast-notification.information::before {
        background-color: #007AFF;
    }

    .toast-notification.warning i {
        color: #FF9500 !important;
    }

    .toast-notification.warning::before {
        background-color: #FF9500;
    }

    .toast-notification h2 {
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        margin: 0;
    }

    .toast-notification p {
        color: #303030;
        font-size: 14px;
        margin: 0;
        font-weight: 400;
    }

/* Slide-in animation */
@keyframes slideInLTR {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLTR {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInRTL {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRTL {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Apply animations to the toast */
.toast {
    animation: slideInLTR 0.5s ease-out forwards;
    will-change: transform, opacity;
}

    .toast.hiding {
        animation: slideOutLTR 0.5s ease-out forwards !important;
        will-change: transform, opacity !important;
    }

body.rtl .toast {
    animation: slideInRTL 0.5s ease-out forwards;
    will-change: transform, opacity;
}

    body.rtl .toast.hiding {
        animation: slideOutRTL 0.5s ease-out forwards !important;
        will-change: transform, opacity !important;
    }

.toast:not(.hiding, .show) {
    display: none;
}

.fade:not(.hiding, .show) {
    opacity: 0;
}

div.jtable-main-container table.jtable > thead th.jtable-column-header-sortable div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-sortable.png) no-repeat right;
}

div.jtable-main-container table.jtable > thead th.jtable-column-header-sorted-asc div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-asc.png) no-repeat right;
}

div.jtable-main-container table.jtable > thead th.jtable-column-header-sorted-desc div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-desc.png) no-repeat right;
}

body.rtl div.jtable-main-container table.jtable > thead th.jtable-column-header-sortable div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-sortable.png) no-repeat left;
}

body.rtl div.jtable-main-container table.jtable > thead th.jtable-column-header-sorted-asc div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-asc.png) no-repeat left;
}

body.rtl div.jtable-main-container table.jtable > thead th.jtable-column-header-sorted-desc div.jtable-column-header-container {
    background: url(../../Content/images/metro/column-desc.png) no-repeat left;
}

.cls-help-buttone {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20000;
}

body.rtl .cls-help-buttone {
    left: 10px;
    right: auto;
}

.clshelpdiv {
    background-color: #fff;
    box-shadow: 0px 0px 4px 0px #0000000D;
    border-radius: 8px;
    width: 500px;
    max-width:calc(100% - 30px);
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 20000;
}

body.rtl .clshelpdiv {
    right: auto;
    left: 15px;
}

.clshelpdiv .btn {
    width: 60px;
    justify-content: center;
}

.clshelpdiv::after {
    content: '';
    position: absolute;
    bottom: -9px; /* Adjust this to control the triangle's distance */
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff; /* Match the background color */
}

body.rtl .clshelpdiv::after {
    right: auto;
    left: 20px;
}

.clshelpdiv::before {
    content: '';
    position: absolute;
    bottom: -11px; /* Adjust this to control the triangle's distance */
    right: 19px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #0000000D; /* Match the background color */
}

body.rtl .clshelpdiv::before {
    right: auto;
    left: 19px;
}

.clshelpdiv h2 {
    font-size: 16px;
    font-weight: 500;
    color: #1B1212;
    border-bottom: 1px solid #DDDDDD;
}

.clshelpdiv h3 {
    font-size: 14px;
    font-weight: 500;
    color: #1B1212;
    margin: 0
}

.clshelpdiv p {
    color: #747474;
    font-size: 12px;
    font-weight: 400;
}

.clscopyright {
    text-align: center;
    margin: 16px 0;
}

.language-box {
    display: flex;
    gap: .375rem;
    padding: 0rem .25rem
}

    .language-box a {
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .4rem;
        border: 1px solid rgba(255,255,255,.2);
        color: rgba(255,255,255,.8);
        border-radius: .25rem;
        padding: 0rem .5rem;
        transition: all .3s ease;
        text-decoration: none;
    }

        .language-box a img {
            width: 1.25rem;
            height: auto
        }

        .language-box a:hover {
            background-color: rgba(255,255,255,.2)
        }

    .language-box .active {
        color: #fff;
        background-color: rgba(255,255,255,.2) !important
    }

/*button.btn-36 i.fi {
    margin-top: 8px;
}*/

.bg-info,
.btn-info {
    opacity: 1;
    background-color: #0377df !important;
}

/*********************************************************************/

.modal-link {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.87);
    overflow: auto;
    z-index: 10000;
}

@media screen and (min-width:768px) {
    .modal-link {
        display: flex;
        align-items: center;
    }

    /*.main-img {
        height: 262px;
    }*/
}

@media screen and (max-height:502px) {
    .modal-link {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .modal-linkpopup > .row > div:nth-child(2), .modal-linkpopup > .row > div:nth-child(3) {
        margin-bottom: 20px !important;
    }
}

.modal-linkpopup:not(.app-downloads) {
    /*background: #dadee7;*/
    background: #fff;
    /*background: -moz-linear-gradient(top, #dadee7 0%, #ffffff 30%, #ffffff 50%, #ffffff 70%, #dadee7 100%);
    background: -webkit-linear-gradient(top, #dadee7 0%,#ffffff 30%,#ffffff 50%,#ffffff 70%,#dadee7 100%);
    background: linear-gradient(to bottom, #dadee7 0%,#ffffff 30%,#ffffff 50%,#ffffff 70%,#dadee7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dadee7', endColorstr='#dadee7',GradientType=0 );*/
    width: 96%;
    max-width: 1010px;
    padding: 15px;
    margin: 20px auto;
    position: relative;
}

.app-downloads {
    padding: 75px 0;
    position: relative;
    margin: -0.5rem;
}

.modal-linkpopup h3 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    text-transform: unset
}

.modal-linkpopup h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
    border: none !important;
    text-transform: unset;
    color: #225781;
}

/*    .modal-linkpopup a {
        height: 44px;
        display: inline-flex;
        color: #000 !important;
        border-radius: 5px;
        justify-content: center;
        align-items: center;
        border: 1px solid #767676;
        font-weight: 600;
        font-size: 14px;
        padding: 0 19px;
        line-height: 12px;
        text-align: left;
        text-decoration: none;
        margin-bottom: 10px;
        width: 182px
    }*/

body.rtl .modal-linkpopup a {
    text-align: right;
}

    body.rtl .modal-linkpopup a:not(.link) {
        font-size: 12px;
        padding: 0 10px;
        justify-content: flex-start;
    }

.modal-linkpopup a img {
    margin-right: 15px
}

body.rtl .modal-linkpopup a img {
    margin-left: 10px;
    margin-right: 0;
}

.modal-linkpopup a.link img {
    margin: 0 5px 0 0;
    width: 15px;
    display: inline-block;
    vertical-align: middle;
}

.modal-linkpopup a.link {
    display: block;
    text-align: left;
    font-size: 12px;
    padding: 2px 0;
    cursor: pointer;
    color: #1e74b1;
    text-decoration: underline;
}

.modal-linkpopup a:not(.link) {
    height: 44px;
    display: inline-flex;
    color: #000 !important;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    border: 1px solid #B5B6B6;
    font-weight: 600;
    font-size: 14px;
    padding: 0 19px;
    line-height: 12px;
    text-align: left;
    text-decoration: none;
    margin-bottom: 10px;
    width: 182px;
    background: rgb(209,209,216);
    background: -moz-linear-gradient(top, rgba(209,209,216,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 70%, rgba(209,209,216,1) 100%);
    background: -webkit-linear-gradient(top, rgba(209,209,216,1) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,1) 70%,rgba(209,209,216,1) 100%);
    background: linear-gradient(to bottom, rgba(209,209,216,1) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,1) 70%,rgba(209,209,216,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1d1d8', endColorstr='#d1d1d8',GradientType=0 );
}

.modal-linkpopup > .row > div:nth-child(2) {
    margin: 0 5px;
    padding: 0 5px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(197,226,255,1) 30%, rgba(197,226,255,1) 70%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(197,226,255,1) 30%,rgba(197,226,255,1) 70%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(197,226,255,1) 30%,rgba(197,226,255,1) 70%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 );
}

.modal-linkpopup > .row > div:nth-child(3) {
    margin: 0 5px;
    padding: 0 5px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(227,225,254,1) 30%, rgba(227,225,254,1) 70%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(227,225,254,1) 30%,rgba(227,225,254,1) 70%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(227,225,254,1) 30%,rgba(227,225,254,1) 70%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 );
}

.modal-linkpopup > .row > div:nth-child(4) {
    margin: 0 5px;
    padding: 0 5px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(178,255,233,1) 30%,rgba(173,255,232,1) 32%,rgba(173,255,232,1) 70%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(178,255,233,1) 30%,rgba(173,255,232,1) 32%,rgba(173,255,232,1) 70%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=0 );
}

span.close-popup {
    color: #c0392b;
    position: absolute;
    right: 15px;
    top: 5px;
    cursor: pointer;
}

#dvNewTasksList th, #dvInProgressTasksList th, #dvFinishedTasksList th, #dvReviewedTasksList th, #dvReviewedTasksList th, #dgRecievedTasks th {
    white-space: nowrap
}

#dvNewTasksList table {
    min-width: 900px;
}

#dvInProgressTasksList table {
    min-width: 1130px;
}

#dvFinishedTasksList table {
    min-width: 1000px
}

#dvReviewedTasksList table {
    min-width: 980px;
}

#dgRecievedTasks table, #dgReturnedTasks table {
    min-width: 775px;
}

@media screen and (min-width:945px) {
    span .main-img + .row .col-auto:first-child {
        border-right: 1px solid #0d6efd;
    }

    body.rtl span.main-img + .row .col-auto:first-child {
        border-left: 1px solid #0d6efd;
        border-right: 0;
    }
}

.app-downloads a {
    cursor: pointer;
    color: #1e74b1;
    text-decoration: underline;
}

@media screen and (max-width:767px) {
    #dvNewTasksList table, #dvInProgressTasksList table, #dvFinishedTasksList table, #dvReviewedTasksList table, #dgRecievedTasks table, #dgReturnedTasks table {
        min-width: unset;
    }
}
/*********************************************************************/



body {
    margin: 0;
    padding: 0
}

.help-modal {
    padding: 15px;
}

    .help-modal h2 {
        font-size: 1.8rem !important;
        font-weight: 700;
        margin: 10px 0 0;
    }

    .help-modal h3, .help-modal h4 {
        font-size: 1.3rem;
        color: #0377df;
        margin: 15px 0 5px;
        font-weight: 700;
    }

    .help-modal h4 {
        font-size: 1.1rem;
    }

    .help-modal p {
        margin-bottom: 5px;
    }

    .help-modal ul {
        display: block !important;
        list-style-type: disc;
        padding-left: 20px !important;
        margin-bottom: 2rem;
    }

body.rtl .help-modal ul {
    padding-left: 0px !important;
    padding-right: 30px !important;
}


.help-modal li {
    line-height: 30px;
    display: list-item !important;
    padding: 0 !important;
    list-style: disc;
}

.help-modal ul ul {
    margin: 0;
}

    .help-modal ul ul li {
        list-style-type: circle;
    }

    .help-modal ul ul ul li {
        list-style-type: square;
    }

    .help-modal ul ul ul ul li {
        list-style-image: url("../images/list-bulet.png");
    }

.help-modal ol > li {
    list-style-type: decimal !important;
}

.text-invert {
    filter: invert(1);
}

.help-modal .form-control {
    width: 160px;
    pointer-events: none;
}

.help-modal .btn {
    pointer-events: none;
    margin: 2px 10px;
}

body.rtl .advancSearchArrow_img, body.rtl .advancSearchArrow2_img {
    margin: 2px 10px 0px 1px;
}

.icons_set-search {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -249px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-list {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -533px -173px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-detail {
    width: 20px;
    height: 20px;
    background: url(../../HelpSystem/images/icons_set.png) no-repeat -319px -78px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-return {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -505px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-forward {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -590px -78px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-withdraw {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -549px -100px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-wclose {
    width: 20px;
    height: 20px;
    background: #3498DB url(../helpsystem/images/icons_set.png) no-repeat -555px -175px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-greyclose {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -475px -104px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-author {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -527px -78px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-comments {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat 0px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-add {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -379px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-edit {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -21px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-delete {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -42px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-tick {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -75px -29px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-reject {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -589px -55px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-back {
    width: 23px;
    height: 23px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -324px 0px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-home {
    width: 30px;
    height: 25px;
    background: url(../helpsystem/images/icons_set.png) no-repeat 0px -30px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-reset {
    width: 13px;
    height: 13px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -90px 2px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-link {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -634px -100px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-structure {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -613px -100px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-list {
    width: 20px;
    height: 20px;
    background: url(../helpsystem/images/icons_set.png) no-repeat -533px -191px;
    display: inline-block;
    vertical-align: middle;
}

.tab-btn {
    background: #f0f0f0;
    color: #2f7dc0;
    padding: 5px 15px !important;
    font-size: 15px !important;
    border: solid 1px #f0f0f0 !important;
    display: inline-block
}

.help-modal a {
    color: #0377df !important;
    font-weight: bold;
}

.help-modal .green-button {
    border: none;
    background: #27ae60;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #FFF !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    pointer-events: none;
}

.help-modal .red-button {
    border: none;
    background: #e74c3c;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #FFF !important;
    display: inline-block;
    text-align: center;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .dred-button {
    border: none;
    background: #B94A48;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #000 !important;
    display: inline-block;
    text-align: center;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .browse-button {
    border: none;
    background: #72C6C7;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #FFF !important;
    display: inline-block;
    text-align: center;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .import-button {
    border: none;
    background: #FFA200;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #FFF !important;
    display: inline-block;
    text-align: center;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .proceed-button {
    border: none;
    background: #688E92;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #FFF !important;
    display: inline-block;
    text-align: center;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .yellow-button {
    background: #ecd078;
    border: none;
    color: #000;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .blue-button {
    background: #40739E;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .lightblue-button {
    background: #66ADFF;
    border: none;
    color: #FFF;
    height: 29px;
    border-radius: 3px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .black-button {
    background: #25292F;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 20px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .sblue-button {
    background: #CCF2F7;
    border: none;
    color: #000;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .dsblue-button {
    background: #37bec4;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .fblue-button {
    background: #37BEC4;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .sblue-button i, .fa-plus-circle {
    color: #27ae60
}

.w-auto {
    width: auto !important;
}

.help-modal .dropdown-arrow {
    background: #BBE0FF;
    border: none;
    color: #000;
    font-size: 18px;
    height: 29px;
    line-height: 29px;
    padding: 0 5px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .checkmark {
    height: 13px;
    background-color: #2196F3;
    width: 13px;
    border: 1px solid #96a1a2;
    display: inline-block;
    position: relative;
}

    .help-modal .checkmark.uncheck {
        background: none
    }

    .help-modal .checkmark:not(.uncheck)::after {
        content: "";
        position: absolute;
        left: 3px;
        top: 1px;
        z-index: 4;
        height: 8px;
        width: 5px;
        border-radius: 50%;
        display: block;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.help-modal .radiomark {
    height: 13px;
    background-color: #FFF;
    border: 1px solid #000;
    width: 13px;
    border-radius: 50%;
    border: 1px solid #96a1a2;
    display: inline-block;
    position: relative;
}

    .help-modal .radiomark:not(.uncheck)::after {
        Height: 5px;
        width: 5px;
        content: "";
        position: absolute;
        left: 3px;
        top: 3px;
        z-index: 4;
        background-color: #000;
        border-radius: 50%;
    }

.help-modal .c-black {
    color: #000 !important;
}

.help-modal h3 a {
    text-decoration: none;
}

.help-modal .up-down-arrow {
    padding: 5px;
    display: inline-block;
}

    .help-modal .up-down-arrow::before {
        content: url("../helpsystem/images/blue_down_arrow.png");
        display: inline-block;
    }

    .help-modal .up-down-arrow::after {
        content: url("../helpsystem/images/blue_up_arrow.png");
        display: inline-block;
    }

a.large-link {
    font-size: 14px;
    text-transform: uppercase;
    color: #225781 !important;
    font-weight: 600 !important;
}

.help-modal .select-all {
    background: #2A3E4F;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    color: #FFF;
    font-size: 13px;
    padding: 0 15px;
    font-weight: 500
}

    .help-modal .select-all::before {
        content: "";
        height: 13px;
        width: 13px;
        display: inline-block;
        background: #FFF;
        border: 1px solid #96a1a2;
        vertical-align: middle;
        margin-right: 5px
    }

.help-modal .blue-border {
    border: 2px solid #2196F3;
    padding: 4px 5px;
    border-radius: 3px
}

.number-arrows {
    display: inline-flex;
    flex-direction: column;
    padding: 0 5px;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    line-height: 10px
}

    .number-arrows::before {
        content: "\f0d8";
    }

    .number-arrows::after {
        content: "\f0d7";
    }

.color-field {
    padding: 1px 5px;
    border: 1px solid #ccc;
}

    .color-field::before {
        content: "";
        height: 10px;
        width: 60px;
        background: red;
        display: inline-block
    }

.plus-btn-icon {
    color: #535353;
    border: 1px solid #535353;
    line-height: 11px;
    font-size: 15px;
    text-align: center;
    font-family: arial;
    display: inline-block;
    width: 13px
}

    .plus-btn-icon::before {
        content: "+"
    }

body.rtl {
    direction: rtl;
    text-align: right
}

.help-modal span img {
    max-height: 23px;
}

/*Mr. Waqas update 2021-08-16*/

.icons_set-review {
    width: 20px;
    height: 20px;
    background: url(../HelpSystem/images/icons_set.png) no-repeat -401px -78px;
    display: inline-block;
    vertical-align: middle;
}

.icons_set-back-a {
    width: 20px;
    height: 20px;
    background: url(../HelpSystem/images/icons_set.png) no-repeat -505px -55px;
    display: inline-block;
    vertical-align: middle;
}

.help-modal .lightgreen-button {
    border: none;
    background: #78cd51;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #000 !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    pointer-events: none;
    r
}

.help-modal .lightred-button {
    border: none;
    background: #ff6c60;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #000 !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    pointer-events: none;
}

.help-modal .brown-button {
    border: none;
    background: #c2b49a;
    height: 29px;
    line-height: 29px;
    padding: 0 15px;
    color: #000 !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    pointer-events: none;
}

.icons_set-editmarker {
    width: 30px;
    height: 30px;
    background: url(../HelpSystem/images/icons_set.png) no-repeat -503px 0px;
    display: inline-block;
    vertical-align: middle;
}

/*Mr. Waqas update 2021-08-16*/

/*Mr. Waqas update 2021-08-23*/
.fa-unlink {
    color: #E74C3C;
    margin: 0 5px;
}

.fa-edit {
    color: #D35400;
    margin: 0 5px;
}

.fa-save {
    color: #16A085;
    margin: 0 5px;
}
/*Mr. Waqas update 2021-08-23*/

/*Mr. Waqas update 2021-08-30 start*/
.refresh-icon::before {
    content: url("../HelpSystem/images/icn_Refresh.png");
    display: inline-block;
    margin: 0px 0;
    width: 13px;
    vertical-align: middle;
}

.offence-white::before {
    content: url("../HelpSystem/images/offfence-icon-w.png");
    display: inline-block;
    margin: 0px 0;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    line-height: 28px
}

.offence-blue::before {
    content: url("../HelpSystem/images/offfence-icon-b.png");
    display: inline-block;
    margin: 0px 0;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    line-height: 28px
}

.download::before {
    content: url("../HelpSystem/images/download-icon.png");
    display: inline-block;
    margin: 0px 0;
    width: 30px;
    height: 27px;
    vertical-align: middle;
    line-height: 28px
}

span.collapsed, span.collapse {
    border: 1px solid #CDCDCD;
    background: #FFF;
    height: 15px;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0.25rem;
    z-index: 5
}

    span.collapse::before, span.collapsed::before {
        content: "";
        width: 7px;
        height: 1px;
        background: #000;
        display: block;
    }

    span.collapsed::after {
        content: "";
        height: 7px;
        width: 1px;
        background: #000;
        display: block;
        position: absolute;
        left: 6px;
        top: 3px
    }

.option-action-add {
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    border: 6px solid rgba(109, 184, 77, 0.20);
    display: inline-flex;
    align-items: center;
}

    .option-action-add i {
        height: 24px;
        width: 24px;
        display: flex;
        background: #6DB84D;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

.help-modal a.orange-link {
    text-decoration: none !important;
    color: #BF977C !important;
}

.help-modal .orange-button {
    background: #FFA274;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}
/*Mr. Waqas update 2021-09-29 end*/

/*Mr. Waqas update 2021-09-30 start*/

.help-modal .plgreen-button {
    background: #5AB097;
    border: none;
    color: #FFF;
    height: 29px;
    border-radius: 3px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .dhgreen-button {
    background: #808C5C;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

/*Mr. Waqas update 2021-09-30 end*/


.seperator {
    margin-left: 2px;
    margin-right: 2px;
}

.help-modal .summarybox {
    text-align: right;
    font-size: 40px;
    padding: 0.25rem 0.75rem !important;
    margin-left: 10px;
    margin-bottom: 10px;
    line-height: 40px;
    width: 350px;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

body.rtl .help-modal .summarybox {
    text-align: left;
    width: 300px
}

.summarybox.total-student {
    background: #e1f5fe;
}

.summarybox span {
    text-align: left;
    font-size: 16px;
    display: block;
    line-height: 20px;
}

body.rtl .summarybox span {
    text-align: right
}

.summarybox b {
    font-weight: normal;
}

.summarybox.attempt-exam {
    background: #e8f5e9;
}

.help-modal .summarybox.finish-exam {
    background: #ffebee;
}

.help-modal .summarybox.miss-exam {
    background: #fff3e0;
}

.help-modal .summarybox.notfinished-exam {
    background: #F0EFEB;
}

.help-modal .summarybox.uploaded-exam {
    background: #DFE7FD;
}

.help-modal .skyblue-button {
    background: #0bd4ff;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.help-modal .darkgrey-button {
    padding: 0 10px;
    text-decoration: none;
    background: #2a3e4f;
    color: #fff !important;
    border-radius: 3px;
    height: 21px;
    display: inline-block;
    line-height: 21px
}

.number-field-icon {
    height: 23px;
    width: 23px;
    display: inline-block;
    vertical-align: middle;
}

    .number-field-icon::before {
        content: url("../HelpSystem/images/number-field-icon.png");
    }

.fas.blue {
    color: #40739E
}

.help-modal input:not([type=checkbox]):not([type=radio]), .help-modal select {
    height: 30px;
    width: 160px;
}


.help-modal .rblue-button {
    background: #007BFF;
    border: none;
    color: #FFF;
    height: 29px;
    line-height: 29px;
    padding: 0 10px;
    display: inline-block;
    pointer-events: none;
    text-decoration: none !important;
}

.ws-img {
    width: 1000px;
    max-width: 100%
}

.advancesearch-white-icon {
    width: 7px;
    height: 7px;
    display: inline-block;
    background: url(../helpsystem/images/icons_set.png) no-repeat -67px 0px;
    margin: 2px 1px 0px 10px;
}

.help-modal .dgrey-button {
    padding: 0 10px;
    text-decoration: none;
    background: #283E4E;
    color: #fff !important;
    height: 29px;
    display: inline-block;
    line-height: 29px
}

.help-modal .gblue-button {
    padding: 0 10px;
    text-decoration: none;
    background: #00A2B6;
    color: #fff !important;
    height: 29px;
    display: inline-block;
    line-height: 29px
}

.score-lowest {
    color: #e45e5e;
}

.score-average {
    color: #db9817;
}

.score-highest {
    color: #93cb1c;
}

.score-my {
    color: #448dc8;
}

.bg-pink {
    background: #ffcccb;
}

input::-ms-reveal {
    display: none;
}

.sticky-navigation-bar .container .navgation-list > ul li.dropdown:hover ul {
    display: block
}

#spnLanauge, #notificationalert_popup.collapsed::after {
    display: none;
}


#headerslanguage::before {
    content: url("../../Content/images/lang-en.png");
}

.text-start-input {
    text-align:start !important;
}

.text-end-input {
    text-align: end !important;
}

#lblUser {
    font-size: 1rem;
    color: #ecf1f4;
    padding: 0px;
    margin-top: -0.25rem;
    width: 3.8rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.required {
    color: rgb(220, 53, 69)
}

/*body:not(.rtl) .popover {
    margin-left: -15px !important;
    max-width: calc(100% - 30px) !important;
}

body.rtl .popover {
    margin-right: -15px !important;
    max-width: calc(100% - 30px) !important;
}*/

.spn_CourseCode_FromCommon {
    background: #dfe5eb;
    border-radius: 20px;
}

#DisplayStudentPics {
    z-index: 1300 !important;
}

#divStudentsNotEffectedExams {
    z-index: 1400 !important;
}

.content-box {
    padding: 1rem;
    border-radius: 7px;
    background: #F5F5F5;
    flex-grow: 1
}

    .content-box > .bg-white {
        height: 100%
    }

.table-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: clip;
}

    .table, .table-container table, .jtable, .table-responsive table {
        width: 100%
    }

.jtable-child-table-container .jtable-main-container {
    width: 100%
}

div.jtable-main-container > div.jtable-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0 0;
}

    div.jtable-main-container > div.jtable-title .jtable-close-button {
        width: 8px;
        height: 8px;
        font-size: 0;
        padding: 0;
        border: none;
        background: url(../../Content/images/close-icon.png);
        margin-left: auto;
        margin-right: 10px;
    }

body.rtl div.jtable-main-container > div.jtable-title .jtable-close-button {
    margin-left: 10px;
    margin-right: auto;
}

.table-container table > :not(caption) > * > * {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table-container table > :not(caption) > * > * {
    border-width: 0 1px;
}

.table-container thead th {
    background-color: #213555 !important;
    color: #fff;
    border-color: rgba(255, 255, 255, .2) !important;
    font-size: 1.125rem !important;
    font-weight: 700;
    vertical-align: middle;
    text-align: left;
}

body.rtl .table-container thead th {
    text-align: right
}

body:not(.rtl) .table-container th:first-of-type {
    border-top-left-radius: .5rem;
}

body:not(.rtl) .table-container th:last-of-type {
    border-top-right-radius: .5rem;
}

body.rtl .table-container th:first-of-type {
    border-top-right-radius: .5rem;
}

body.rtl .table-container th:last-of-type {
    border-top-left-radius: .5rem;
}

#mycourses thead tr td {
    background: #ECF1F4 !important;
    font-weight: 400;
    font-size: 15px;
    padding: .25rem .5rem !important;
    border: 1px solid #DFDFDF;
    text-align: center !important;
}

#dvItemsList .table-container table:first-of-type td:last-child {
    padding: 0rem !important;
}

.gap-f5 {
    gap: 5px
}

.gap-f10 {
    gap: 10px
}

.table-container table td {
    font-weight: 400;
    border: 1px solid #DFDFDF;
    padding: .5rem .5rem;
    box-shadow: none !important;
    word-break: break-word;
}

    .table-container table td .btn-link {
        word-break: normal;
    }

.table-container tr:nth-child(even) td {
    background-color: #f8f8f8;
}

.table-container tr:nth-child(odd) td {
    background-color: #fff;
}

.table-container:not(.clstblListEActivites):not(.clstblGeneralAsActivites):not(.clstblFormativeAsActivites) tr:hover td {
    background-color: #f3f6f8;
}

.jtable-busy-panel-background {
    display: none !important;
}


.jtable-bottom-panel {
    position: relative;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jtable-left-area {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    order: 2;
}


span.jtable-page-list {
    display: flex !important;
    gap: 5px !important;
}

    span.jtable-page-list span {
        margin: 0 !important;
        color: #303030 !important;
        border: solid 1px #cdcdcd !important;
        height: 30px;
        padding: 0 11px !important;
        line-height: 30px;
        border-radius: 5px;
        font-size: 12px;
    }

        div.jtable-main-container > div.jtable-bottom-panel .jtable-page-list .jtable-page-number-active, span.jtable-page-list span[class]:hover {
            background: #2C3F4F !important;
            color: #FFF !important;
            border: solid 1px #2C3F4F !important;
        }

.jtable-page-list {
    color: #303030;
    font-size: 12px;
    order: 3;
}

body:not(.rtl) .jtable-page-list {
    margin-left: auto
}

body.rtl .jtable-page-list {
    margin-right: auto
}

.jtable-right-area {
    width: 100%;
    order: 1;
    color: #666;
    font-size: 1rem;
}

.jtable-goto-page, .jtable-page-size-change {
    display: flex;
    gap: 5px;
    align-items: center;
    white-space: nowrap
}

.jtable-bottom-panel .jtable-left-area select {
    background: #fff !important;
    color: #303030 !important;
    height: 30px !important;
    border-radius: 5px;
    border: 1px solid #cdcdcd !important;
    padding: 0 7px;
}

button {
    outline: 0px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.quickaccess {
    min-width: 15rem !important;
    height: 2.5rem;
    color: #0377df !important;
    border-radius: .5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    gap: .4rem;
    align-items: center;
    justify-content: center;
    padding: 0px .75rem;
    transition: all .2s ease;
    line-height: normal;
}

    .quickaccess i {
        height: 15px;
    }

    .quickaccess::after {
        margin-left: auto !important;
    }

    .quickaccess:hover, .quickaccess:focus {
        background-color: #f2f8fb;
    }


    .quickaccess + ul .dropdown-item {
        color: #0377DF !important;
        filter: grayscale(1);
    }

        .quickaccess + ul .dropdown-item:hover {
            filter: none;
        }


#layout_applogo {
    object-fit: contain;
    height: 70px;
    max-width: 140px;
}



ul#ulbd {
    list-style-type: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    color: #3592E5;
    font-size: 12px;
}

    ul#ulbd li + li::before {
        margin: 0 10px;
        content: "/";
        color: #1B1212;
    }

    ul#ulbd a {
        text-decoration: none;
        color: #1B1212;
    }

.fi {
    line-height: 1;
}

.nav-tabs, .exam-tabs {
    gap: 5px;
}

    .nav-tabs.border-bottom {
        border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
    }

    .nav-tabs .nav-link, .exam-tabs a {
        background-color: #f3f6f8;
        border: 1px solid #f3f6f8;
        border-top: .25rem solid #f3f6f8;
        color: #1b1212;
        font-size: 1.1rem;
    }

        .nav-tabs .nav-link:hover {
            color: #0d6efd;
        }

.border-bottom.nav-tabs a, .tabs_controll li {
    border-bottom: 1px solid #dee2e6 !important;
    cursor: pointer;
    /*text-transform: capitalize;*/
}

    .tabs_controll li:hover, .border-bottom.nav-tabs a:hover {
        color: #0377df
    }

.exam-tabs a {
    min-width: 120px;
    text-align: center;
    border-bottom: 1px solid #dee2e6 !important;
}

    .nav-tabs .nav-link.active, .exam-tabs a.active {
        background-color: #fff;
        border-top: .25rem solid #0377df;
        color: #0377df;
        border-bottom-color: #fff !important;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

.tabs_controll li a.active {
    margin-bottom: -2px;
    border-bottom: 2px solid #FFF;
}

.search-area {
    display: flex;
    gap: 10px;
    padding: 0 10px;
}

.LayoutSearchText img {
    height: 2.5rem
}

.multiselect-container input[type="checkbox"] {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
    border-radius: .25em;
    margin: 0;
    height: 15px;
    width: 15px;
}

    .multiselect-container input[type="checkbox"]:checked {
        background-color: #0d6efd !important;
        border-color: #0d6efd !important;
        --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
    }

.multiselect-container li {
    padding: 3px 0;
}

.search-area div.searchBar {
    background: #FFF;
    border: 1px solid #DFDFDF;
    color: #525252;
    border-radius: 5px;
    padding: 0 10px;
    gap: 5px !important;
    display: flex;
    align-items: center;
    height: 2.5rem;
}

    .search-area div.searchBar::before {
        content: url("../../content/images/searchb-icon.png");
        font-size: 0;
        display: none;
    }

    .search-area div.searchBar[style="display: none;"] + button {
        display: none;
    }

.search-area button {
    min-width: unset !important;
}

.search-area > button img {
    max-height: 2.5rem;
}

.search input:not([type="checkbox"]) {
    background: none;
    border: none;
    height: 34px;
    font-size: 1rem;
    flex-grow: 1;
    padding: 0;
    width: 200px;
    box-shadow: none;
}

.modal .modal-body {
    max-height: calc(100vh - 150px);
    overflow: auto;
}

#_liveZillaEmbedded, .highcharts-credits {
    display: none !important;
}

.toast-container {
    right: 0;
}

body.rtl .toast-container {
    left: 0;
    right: auto
}

label.check-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1 !important;
}

    label.check-container input {
        position: absolute;
        left: 0;
        opacity: 0 !important;
    }

body.rtl label.check-container input {
    left: auto;
    right: 0;
}

label.check-container span.checkmark {
    height: 15px;
    width: 15px;
    flex: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

label.check-container span.checkmark {
    background: #FFF;
    border: 1px solid #dee2e6;
}

label.check-container input:checked + span.checkmark {
    background: #0d6efd;
    border-color: #0d6efd;
}

label.check-container .checkmark + span {
    position: relative;
    top: 3px
}

body.rtl label.check-container .checkmark + span {
    top: 0px
}

label.check-container input[type="checkbox"] ~ span.checkmark {
    border-radius: 0.25em;
}

label.check-container input[type="checkbox"]:checked ~ span.checkmark {
    background: #0d6efd;
}

label.check-container input[type="checkbox"][disabled]:checked ~ span.checkmark {
    background-color: #d4d4d4 !important;
    border-color: #d4d4d4 !important;
}

label.check-container input[type="checkbox"]:checked ~ span.checkmark::before {
    content: "";
    height: 5px;
    width: 9px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-radius: 0;
    transform: rotate(-45deg);
    top: -1px;
    position: relative;
}

.check-container input:checked ~ span {
    font-weight: 600 !important;
}

label.check-container input[type="radio"]:checked ~ .checkmark::before {
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 50%;
    display: block;
    background: #FFF;
}

label.check-container .border {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-color: #CDCDCD !important;
    border-radius: 5px;
    pointer-events: none;
}

label.check-container input[type="radio"]:checked ~ .border {
    border-color: #0d6efd !important;
}


.table-container th label.check-container input[type="checkbox"] ~ span.checkmark {
    background: #FFF;
}

.table-container th label.check-container input[type="checkbox"]:checked ~ span.checkmark::before {
    border-left: 2px solid #2C3F4F;
    border-bottom: 2px solid #2C3F4F;
}

.modal-lg {
    max-width: 800px !important;
}
/*chosen dropdown style*/
.form-check-input {
    height: 15px;
    width: 15px;
}

th .form-check-input {
    height: 14px;
    width: 14px;
}

.chosen-container {
    width: 100% !important;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .chosen-container .chosen-single {
        border: 1px solid #dee2e6;
        padding: .375rem .75rem;
        border-radius: 0.375rem
    }

.chosen-container-active.chosen-with-drop .chosen-single {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.chosen-single {
    display: block;
}

.chosen-container-single .chosen-single div b {
    background-position: 0 9px !important;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../../Content/images/chosen-sprite.png") no-repeat 0 2px;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

body.rtl .chosen-container-single .chosen-single div {
    right: auto;
    left: 8px
}

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: 0 0;
}

.chosen-container.chosen-with-drop .chosen-drop {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    clip: rect(0, 0, 0, 0);
    -webkit-clip-path: inset(100% 100%);
    clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}

    .chosen-container .chosen-results li.active-result {
        display: list-item;
        cursor: pointer;
    }

.chosen-search {
    display: none;
}

.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}


.modal-title {
    font-size: 1.25rem !important;
    text-transform: capitalize;
}

button.btn-close {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    padding: 0 !important;
    font-size: 10px;
    box-sizing: border-box;
}

.btnImport::before {
    content: url(../../Content/images/import-icon.png);
    font-size: 0;
}

.headerlinks a.AddNew::before, .btn.btn-AddNew::before {
    content: url(../../Content/images/add-new-icon.png);
    font-size: 0;
    transform: scale(.7);
    margin-bottom: 3px;
}


.headerlinks {
    display: flex;
    gap: 10px;
}


.btn-secondary {
    color: #fff;
    background-color: #213555;
    border-color: #213555;
}

.btn-light {
    color: #0377df;
    background-color: #f3f6f8;
    border-color: #f3f6f8;
}

.btn-btnClose {
    /*padding: 0 30px;*/
    color: #cdcdcd;
    border: 1px solid #cdcdcd;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    height: 36px;
    line-height: 36px;
    width: 100px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-btnSave {
    background: #78cd53;
    color: #fff;
    border-radius: 3px !important;
    height: 36px !important;
    line-height: 36px !important;
    width: 100px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

a.action-btn {
    padding: .1rem .75rem 0rem .75rem !important;
    border-radius: .5rem;
    display: inline-flex;
    justify-content: center !important;
    align-items: center !important;
    gap: .4rem;
    /* text-transform: capitalize !important;*/
    outline: 0px;
    border: 0px;
    background-color: #ecf1f4;
    color: #212529 !important;
    text-decoration: none
}



:disabled {
    background-color: #d4d4d4 !important;
    border-color: #d4d4d4 !important;
    color: #313131 !important;
    cursor: not-allowed !important;
}

.table-container tbody .dropdown-toggle {
    transition: background-color .2s ease;
}

.action-btn i {
    color: #0377df !important;
    margin-top: .4rem;
}

.btn-32 {
    height: 2rem !important;
    font-size: 1.125rem;
}

.btn-36 {
    height: 2.25rem !important;
    font-size: 1.125rem;
}

.bg-blue {
    background-color: #0377df;
}

.note-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    display: inline-block;
}

#searchBar button, .CourseSearchBar .relative button, .ExamResultCompilationSearchBox button, .search .relative button, .LayoutSearchText {
    background: none;
    border: none;
    padding: 0;
}

.AdvanceSearch::before {
    content: url(../../Content/images/newadvance-search.png);
    font-size: 0;
    margin-bottom: 3px;
}

.surface-secondary-1 {
    background-color: #f3f6f8;
}

.wrapper {
    min-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
}

    .wrapper .content.blue-print {
        flex-grow: 1;
        display: flex
    }

.container-fluid > .row, .content-area {
    height: 100%
}

    .content-area > .bg-white {
        height: 100%;
        display: flex;
        flex-direction: column;
    }



body {
    background-color: #d7ece3;
    color: #1b1212
}

.surface-basic {
    background-color: #fff
}

.surface-secondary-1 {
    background-color: #f3f6f8
}

.surface-secondary-2 {
    background-color: #ecf1f4
}

.badge-green {
    background-color: #f2fbfa;
    color: #00ab94
}

.badge-yellow {
    background-color: #fbf8f2;
    color: #b98000
}

.badge-blue {
    background-color: #f2f8fb;
    color: #0377df
}

.status {
    padding: .1rem .5rem;
    border-radius: 2rem;
    min-width: 5rem;
    display: inline-block
}

.status-yellow {
    color: #b98000
}

.status-green {
    color: #00ab94
}

.status-red {
    color: #de574d
}

.status-blue {
    color: #0377df
}

.text-brand {
    color: #0377df
}

.text-secondary {
    color: #666
}

.text-red {
    color: #de574d !important
}

.be-yellow {
    background-color: #b98000
}

.bg-green {
    background-color: #00ab94
}

.bg-red {
    background-color: #de574d
}

.bg-blue {
    background-color: #0377df
}

.text-yellow {
    color: #b98000
}

.text-green {
    color: #00ab94
}

.text-red {
    color: #de574d
}

.text-blue {
    color: #0377df
}

.text-grey {
    color: #666
}

.surface-primary-50 {
    background-color: #f2f8fb
}

.surface-primary-100 {
    background-color: #c7e4ff
}

.surface-primary-200 {
    background-color: #8bc0f0
}

.surface-primary-300 {
    background-color: #56a4ea
}

.surface-primary-400 {
    background-color: #3592e5
}

.surface-primary-500 {
    background-color: #0377df
}

.surface-secondary-50 {
    background-color: #f3f6f8
}

.surface-secondary-100 {
    background-color: #ecf1f4
}

.surface-secondary-200 {
    background-color: #dfe5eb
}

.surface-secondary-300 {
    background-color: #557490
}

.surface-secondary-400 {
    background-color: #34597a
}

.surface-secondary-500 {
    background-color: #213555
}

.minHeight-500 {
    min-height: 33.25rem
}

.minHeight-400 {
    min-height: 27.25rem
}

.minHeight-3 {
    min-height: 3rem
}

.radius-4 {
    border-radius: .25rem
}

.radius-8 {
    border-radius: .5rem
}

.radius-12 {
    border-radius: .75rem
}

.radius-16 {
    border-radius: 1rem
}

.radius-20 {
    border-radius: 1.25rem
}

.radius-24 {
    border-radius: 1.5rem
}

.radius-28 {
    border-radius: 1.75rem
}

.radius-32 {
    border-radius: 2rem
}

.radius-36 {
    border-radius: 2.25rem
}

.radius-40 {
    border-radius: 2.5rem
}

.shadow-sm {
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,.1)
}

html, body {
    font-family: "Zain";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden !important;
    width: 100%;
    margin: 0px;
    padding: 0px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative
}

@media screen and (min-width: 1200px)and (max-width: 1600px) {
    html, body {
        font-size: 14px
    }

        body.rtl {
            font-size: 13px
        }
}

@media screen and (max-width: 1200px) {
    html, body {
        font-size: 14px
    }

        body.rtl {
            font-size: 13px
        }
}

.extralight {
    font-weight: 200
}

.light {
    font-weight: 300
}

.regular {
    font-weight: 400
}

.bold {
    font-weight: 700
}

.extrabold {
    font-weight: 800
}

.black {
    font-weight: 900
}

.fsize-56 {
    font-size: 3.5rem
}

.fsize-52 {
    font-size: 3.25rem
}

.fsize-48 {
    font-size: 3rem
}

.fsize-44 {
    font-size: 2.75rem
}

.fsize-40 {
    font-size: 2.5rem
}

.fsize-36 {
    font-size: 2.25rem
}

.fsize-32 {
    font-size: 2rem
}

.fsize-28 {
    font-size: 1.75rem
}

.fsize-26 {
    font-size: 1.625rem
}

.fsize-24 {
    font-size: 1.5rem
}

.fsize-22 {
    font-size: 1.375rem
}

.fsize-20 {
    font-size: 1.25rem
}

.fsize-18 {
    font-size: 1.125rem
}

.fsize-16 {
    font-size: 1rem
}

.fsize-14 {
    font-size: .875rem
}

.fsize-12 {
    font-size: .75rem
}

.fcolor-primary {
    color: #036ccb
}

.fcolor-secondary {
    color: #012c51
}

.fcolor-gray {
    color: #666
}

.fcolor-black {
    color: #1b1b2b
}

ul, dl, li {
    list-style: none;
    margin: 0px;
    padding: 0px
}

a, strong, i, big {
    font-weight: normal;
    font-style: normal
}

h1, h2, h3, h4, h5, h6, p {
    padding: 0px;
    margin: 0px
}

button {
    outline: 0px;
    border: 1px solid #ddd;
    background-color: #fff
}

.btn {
    padding: .1rem .75rem 0rem .75rem;
    border-radius: .5rem;
    display: inline-flex;
    justify-content: center !important;
    align-items: center !important;
    gap: .4rem;
    /* text-transform: capitalize !important;*/
    line-height: 1 !important;
}

.action-btn {
    padding: .1rem .75rem 0rem .75rem !important;
    border-radius: .5rem;
    display: inline-flex;
    justify-content: center !important;
    align-items: center !important;
    gap: .4rem;
    /* text-transform: capitalize !important;*/
    outline: 0px;
    border: 0px;
    background-color: #ecf1f4
}

    .action-btn i {
        color: #0377df;
        margin-top: .4rem
    }

    .action-btn:hover {
        background-color: #fff
    }

.btn-32 {
    height: 2rem !important;
    font-size: 1.125rem
}

.btn-36 {
    height: 2.25rem !important;
    font-size: 1.125rem
}

/*.btn-36 i {
            margin-top: .3rem
        }*/

.btn-40 {
    height: 2.5rem !important;
    font-size: 1.125rem
}

.btn-44 {
    height: 2.75rem !important;
    font-size: 1.125rem
}

.btn-48 {
    height: 3rem !important;
    font-size: 1.125rem
}

.btn-52 {
    height: 3.25rem !important;
    font-size: 1.125rem
}

.btn-56 {
    height: 3.5rem !important;
    font-size: 1.125rem
}

.btn-primary {
    color: #fff;
    background-color: #0377df;
    border-color: #0377df
}

    .btn-primary:hover {
        color: #fff;
        background-color: #036ccb !important;
        border-color: #036ccb !important
    }

    .btn-primary.focus, .btn-primary:focus {
        box-shadow: 0 0 0 .2rem #8bc0f0 !important;
        background-color: #036ccb !important;
        border-color: #036ccb !important
    }

.btn-primary-revers {
    color: #0377df;
    background-color: #f2f8fb !important;
    border-color: #c7e4ff !important
}

    .btn-primary-revers:hover {
        color: #0377df !important;
        background-color: #c7e4ff !important;
        border-color: #c7e4ff !important
    }

    .btn-primary-revers.focus, .btn-primary-revers:focus {
        box-shadow: 0 0 0 .2rem #8bc0f0 !important;
        background-color: #c7e4ff !important;
        border-color: #c7e4ff !important
    }

.btn-outline-primary {
    color: #0377df;
    background-color: #fff;
    border-color: #0377df;
    box-shadow: none
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #0377df;
        border-color: #0377df
    }

.btn-secondary {
    color: #fff;
    background-color: #213555;
    border-color: #213555
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #012c51;
        border-color: #012c51
    }

    .btn-secondary.focus, .btn-secondary:focus {
        box-shadow: 0 0 0 .2rem #dfe5eb
    }

.btn-outline-secondary {
    color: #213555;
    background-color: #fff;
    border-color: #213555;
    box-shadow: none
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #213555;
        border-color: #213555
    }

.btn-light {
    color: #0377df;
    background-color: #f3f6f8;
    border-color: #f3f6f8
}

    .btn-light:hover {
        color: #0377df;
        background-color: #ecf1f4 !important;
        border-color: #ecf1f4 !important
    }

    .btn-light.focus, .btn-light:focus {
        box-shadow: 0 0 0 .2rem #f3f6f8 !important;
        background-color: #ecf1f4 !important;
        border-color: #ecf1f4 !important
    }

:disabled {
    background-color: #d4d4d4 !important;
    border-color: #d4d4d4 !important;
    color: #313131 !important;
    cursor: not-allowed !important
}



.custom-tooltip {
    font-size: .75rem
}

.icon-item {
    display: flex;
    gap: 1rem;
    align-items: center
}

    .icon-item .fi {
        padding-top: .2rem;
        color: #747474
    }

    .icon-item img {
        width: 1.375rem;
        height: 1.375rem
    }

.btn-icon {
    display: inline-flex;
    gap: .5rem;
    align-items: center
}

    .btn-icon .fi {
        padding-top: .2rem
    }

    .btn-icon img {
        width: 1.375rem;
        height: 1.375rem
    }

.help-btns-group .btn {
    background-color: none;
    border: 1px solid rgba(0,0,0,.1);
    font-weight: 500
}

    .help-btns-group .btn i {
        color: rgba(0,0,0,.6);
        padding-top: .5rem
    }

    .help-btns-group .btn:hover {
        background-color: rgba(0,0,0,.1)
    }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box
}

    *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

.mt-4 {
    margin-top: .25rem
}

.mt-8 {
    margin-top: .5rem
}

.mt-12 {
    margin-top: .75rem
}

.mt-16 {
    margin-top: 1rem
}

.mt-20 {
    margin-top: 1.25rem
}

.mt-24 {
    margin-top: 1.5rem
}

.mt-28 {
    margin-top: 1.75rem
}

.mt-32 {
    margin-top: 2rem
}

.mt-36 {
    margin-top: 2.25rem
}

.mt-40 {
    margin-top: 2.5rem
}

.mb-4 {
    margin-bottom: .25rem
}

.mb-8 {
    margin-bottom: .5rem
}

.mb-12 {
    margin-bottom: .75rem
}

.mb-16 {
    margin-bottom: 1rem
}

.mb-20 {
    margin-bottom: 1.25rem
}

.mb-24 {
    margin-bottom: 1.5rem
}

.mb-28 {
    margin-bottom: 1.75rem
}

.mb-32 {
    margin-bottom: 2rem
}

.mb-36 {
    margin-bottom: 2.25rem
}

.mb-40 {
    margin-bottom: 2.5rem
}

.p-4 {
    padding: .25rem !important
}

.p-8 {
    padding: .5rem
}

.p-12 {
    padding: .75rem
}

.p-16 {
    padding: 1rem
}

.p-20 {
    padding: 1.25rem
}

.p-24 {
    padding: 1.5rem
}

.p-28 {
    padding: 1.75rem
}

.p-32 {
    padding: 2rem
}

.p-36 {
    padding: 2.25rem
}

.p-40 {
    padding: 2.5rem
}

.pt-4 {
    padding-top: .25rem
}

.pt-8 {
    padding-top: .5rem
}

.pt-12 {
    padding-top: .75rem
}

.pt-16 {
    padding-top: 1rem
}

.pt-20 {
    padding-top: 1.25rem
}

.pt-24 {
    padding-top: 1.5rem
}

.pt-28 {
    padding-top: 1.75rem
}

.pt-32 {
    padding-top: 2rem
}

.pt-36 {
    padding-top: 2.25rem
}

.pt-40 {
    padding-top: 2.5rem
}

.pb-4 {
    padding-bottom: .25rem
}

.pb-8 {
    padding-top: .5rem
}

.pb-12 {
    padding-bottom: .75rem
}

.pb-16 {
    padding-bottom: 1rem
}

.pb-20 {
    padding-bottom: 1.25rem
}

.pb-24 {
    padding-bottom: 1.5rem
}

.pb-28 {
    padding-bottom: 1.75rem
}

.pb-32 {
    padding-bottom: 2rem
}

.pb-36 {
    padding-bottom: 2.25rem
}

.pb-40 {
    padding-bottom: 2.5rem
}

.form-label {
    font-weight: 500;
    margin: .2rem 0px
}

    .form-label span {
        color: #de574d
    }

.form-control-28 {
    height: 1.75rem
}

    .form-control-28::placeholder {
        font-size: .8rem
    }

.form-control-32 {
    height: 2rem
}

    .form-control-32::placeholder {
        font-size: .9rem
    }

.form-control-36 {
    height: 2.25rem
}

    .form-control-36::placeholder {
        font-size: .9rem
    }

.form-control-40 {
    height: 2.5rem
}

    .form-control-40::placeholder {
        font-size: .9rem
    }

.form-control-44 {
    height: 2.75rem
}

.cls-Checked {
    width: auto;
    color: #009688;
}

.cls-unChecked {
    width: auto;
    color: #F31414;
}

.form-control-44::placeholder {
    font-size: .9rem
}

.form-control-48 {
    height: 3rem
}

    .form-control-48::placeholder {
        font-size: .9rem
    }

.form-control-52 {
    height: 3.25rem
}

    .form-control-52::placeholder {
        font-size: .8rem
    }

.form-control-56 {
    height: 3.5rem
}

    .form-control-56::placeholder {
        font-size: .8rem
    }

.form-select-28 {
    height: 1.75rem;
    font-size: .9rem
}

.form-select-32 {
    height: 2rem;
    font-size: .9rem
}

.form-select-36 {
    height: 2.25rem;
    font-size: .9rem
}

.form-select-40 {
    height: 2.5rem;
    font-size: .9rem
}

.form-select-44 {
    height: 2.75rem;
    font-size: 1rem
}

.form-select-48 {
    height: 3rem;
    font-size: .9rem
}

.form-select-52 {
    height: 3.25rem;
    font-size: 1rem
}

.form-select-56 {
    height: 3.5rem;
    font-size: 1rem
}

.form-textarea-44::placeholder {
    font-size: .8rem
}

.form-check-label {
    cursor: pointer;
    position: relative;
    top: 0.2rem;
}

*::-webkit-scrollbar {
    width: .33rem;
    height: .33rem
}

*::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,.1)
}

*::-webkit-scrollbar-thumb {
    background-color: #557490;
    border-radius: 1.1rem
}

.container {
    max-width: 1800px !important;
    width: 96%;
}

.iti {
    position: relative;
    display: inline-block
}

    .iti * {
        box-sizing: border-box;
        -moz-box-sizing: border-box
    }

.iti__hide {
    display: none
}

.iti__v-hide {
    visibility: hidden
}

.iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid rgba(0,0,0,0);
    border-right: 3px solid rgba(0,0,0,0);
    border-top: 4px solid #555
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid #555
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
    bottom: 100%;
    margin-bottom: -1px
}

@media(max-width: 500px) {
    .iti__country-list {
        white-space: normal
    }
}

.iti__flag-box {
    display: inline-block;
    width: 20px
}

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc
}

.iti__country {
    padding: 5px 10px;
    outline: none
}

.iti__dial-code {
    color: #999
}

.iti__country.iti__highlight {
    background-color: rgba(0,0,0,.05)
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle
}

.iti__flag-box, .iti__country-name {
    margin-right: 6px
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0
}

    .iti--allow-dropdown .iti__flag-container:hover {
        cursor: pointer
    }

        .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
            background-color: rgba(0,0,0,.05)
        }

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover, .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default
}

    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag, .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
        background-color: rgba(0,0,0,0)
    }

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0,0,0,.05)
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px
}

.iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px
}

    .iti--container:hover {
        cursor: pointer
    }

.iti-mobile .iti--container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed
}

.iti-mobile .iti__country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .iti__country {
    padding: 10px 10px;
    line-height: 1.5em
}

.iti__flag {
    width: 20px
}

    .iti__flag.iti__be {
        width: 18px
    }

    .iti__flag.iti__ch {
        width: 15px
    }

    .iti__flag.iti__mc {
        width: 19px
    }

    .iti__flag.iti__ne {
        width: 18px
    }

    .iti__flag.iti__np {
        width: 13px
    }

    .iti__flag.iti__va {
        width: 15px
    }

@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
    .iti__flag {
        background-size: 5652px 15px
    }
}

.iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px
}

.iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px
}

.iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px
}

.iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px
}

.iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px
}

.iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px
}

.iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px
}

.iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px
}

.iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px
}

.iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px
}

.iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px
}

.iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px
}

.iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px
}

.iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px
}

.iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px
}

.iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px
}

.iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px
}

.iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px
}

.iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px
}

.iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px
}

.iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px
}

.iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px
}

.iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px
}

.iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px
}

.iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px
}

.iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px
}

.iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px
}

.iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px
}

.iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px
}

.iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px
}

.iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px
}

.iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px
}

.iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px
}

.iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px
}

.iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px
}

.iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px
}

.iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px
}

.iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px
}

.iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px
}

.iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px
}

.iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px
}

.iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px
}

.iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px
}

.iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px
}

.iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px
}

.iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px
}

.iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px
}

.iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px
}

.iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px
}

.iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px
}

.iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px
}

.iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px
}

.iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px
}

.iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px
}

.iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px
}

.iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px
}

.iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px
}

.iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px
}

.iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px
}

.iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px
}

.iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px
}

.iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px
}

.iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px
}

.iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px
}

.iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px
}

.iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px
}

.iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px
}

.iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px
}

.iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px
}

.iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px
}

.iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px
}

.iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px
}

.iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px
}

.iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px
}

.iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px
}

.iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px
}

.iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px
}

.iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px
}

.iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px
}

.iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px
}

.iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px
}

.iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px
}

.iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px
}

.iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px
}

.iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px
}

.iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px
}

.iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px
}

.iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px
}

.iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px
}

.iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px
}

.iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px
}

.iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px
}

.iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px
}

.iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px
}

.iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px
}

.iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px
}

.iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px
}

.iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px
}

.iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px
}

.iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px
}

.iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px
}

.iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px
}

.iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px
}

.iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px
}

.iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px
}

.iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px
}

.iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px
}

.iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px
}

.iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px
}

.iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px
}

.iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px
}

.iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px
}

.iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px
}

.iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px
}

.iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px
}

.iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px
}

.iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px
}

.iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px
}

.iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px
}

.iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px
}

.iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px
}

.iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px
}

.iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px
}

.iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px
}

.iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px
}

.iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px
}

.iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px
}

.iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px
}

.iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px
}

.iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px
}

.iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px
}

.iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px
}

.iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px
}

.iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px
}

.iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px
}

.iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px
}

.iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px
}

.iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px
}

.iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px
}

.iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px
}

.iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px
}

.iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px
}

.iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px
}

.iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px
}

.iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px
}

.iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px
}

.iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px
}

.iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px
}

.iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px
}

.iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px
}

.iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px
}

.iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px
}

.iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px
}

.iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px
}

.iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px
}

.iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px
}

.iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px
}

.iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px
}

.iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px
}

.iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px
}

.iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px
}

.iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px
}

.iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px
}

.iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px
}

.iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px
}

.iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px
}

.iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px
}

.iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px
}

.iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px
}

.iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px
}

.iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px
}

.iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px
}

.iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px
}

.iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px
}

.iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px
}

.iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px
}

.iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px
}

.iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px
}

.iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px
}

.iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px
}

.iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px
}

.iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px
}

.iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px
}

.iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px
}

.iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px
}

.iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px
}

.iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px
}

.iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px
}

.iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px
}

.iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px
}

.iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px
}

.iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px
}

.iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px
}

.iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px
}

.iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px
}

.iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px
}

.iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px
}

.iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px
}

.iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px
}

.iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px
}

.iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px
}

.iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px
}

.iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px
}

.iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px
}

.iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px
}

.iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px
}

.iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px
}

.iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px
}

.iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px
}

.iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px
}

.iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px
}

.iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px
}

.iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px
}

.iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px
}

.iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px
}

.iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px
}

.iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px
}

.iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px
}

.iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px
}

.iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px
}

.iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px
}

.iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px
}

.iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px
}

.iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px
}

.iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px
}

.iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px
}

.iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px
}

.iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px
}

.iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px
}

.iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px
}

.iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px
}

.iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px
}

.iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px
}

.iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px
}

.iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px
}

.iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px
}

.iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px
}

.iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px
}

.iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px
}

.iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px
}

.iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px
}

.iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px
}

.iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px
}

.iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px
}

.iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px
}

.iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px
}

.iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px
}

.iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px
}

.iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px
}

.iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px
}

.iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px
}

.iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px
}

.iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px
}

.iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px
}

.iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px
}

.iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px
}

.iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px
}

.iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px
}

.iti__flag {
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("../images/flags.png");
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0
}

@media(-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../images/flags@2x.png")
    }
}

.iti__flag.iti__np {
    background-color: rgba(0,0,0,0)
}

.phone-flag {
    padding-left: 100px !important;
    width: 100% !important
}

.iti {
    width: 100% !important
}

.iti__country-list {
    left: 0;
    direction: ltr;
    font-size: .8rem
}

.iti__flag-container {
    direction: ltr
}

.video-cover {
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip
}

video::-webkit-media-controls {
    display: none
}

video::-webkit-media-controls-play-button {
    display: none
}

video::-webkit-media-controls-volume-slider {
    display: none
}

video::-webkit-media-controls-mute-button {
    display: none
}

video::-webkit-media-controls-timeline {
    display: none
}

video::-webkit-media-controls-current-time-display {
    display: none
}

img {
    border: none
}

    img[src=""] {
        display: none
    }

a {
    text-decoration: none;
    transition: all .3s ease;
    color: inherit;
    cursor: pointer
}

.highcharts-credits {
    display: none !important
}

.custom-pills-tabs .nav-pills {
    gap: .25rem
}

    .custom-pills-tabs .nav-pills .nav-item .nav-link {
        background-color: #f3f6f8;
        border: 1px solid #f3f6f8;
        border-top: .25rem solid #f3f6f8;
        color: #1b1212;
        font-size: 1rem;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px
    }

    .custom-pills-tabs .nav-pills.border-bottom .nav-item .nav-link {
        position: relative;
        bottom: -1px;
        border-bottom-color: #dee2e6;
    }

    .custom-pills-tabs .nav-pills .nav-item .nav-link:hover {
        color: #0377df
    }

    .custom-pills-tabs .nav-pills .nav-item .active {
        background-color: #fff;
        border-left-color: #dee2e6;
        border-right-color: #dee2e6;
        border-top: .25rem solid #0377df;
        color: #0377df;
        border-bottom-color: #fff !important;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px
    }

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-image: url("../images/ripple.gif");
    background-repeat: no-repeat;
    background-color: #f3f6f8;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center
}

    .preloader img {
        width: 6rem;
        height: 6rem
    }

.modal .modal-content {
    border: none !important;
    box-shadow: 0rem 1rem 1rem rgba(0,0,0,.1)
}

.modal .modal-header:not(.modal-header[class*="bg"]) {
    background-color: #0377df !important;
}

.modal .modal-header {
    color: #fff !important;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.modal-xl {
    max-width: 90rem
}

.sticky-navigation-bar {
    background-color: #213555 !important;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000
}

@media screen and (max-width: 1200px) {
    .sticky-navigation-bar {
        padding-block: .4rem
    }
}

.sticky-navigation-bar .container {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding-top: 0px !important;
    padding-bottom: 0px !important
}

    .sticky-navigation-bar .container .navgation-list > ul {
        display: flex;
        align-items: center
    }

        .sticky-navigation-bar .container .navgation-list > ul > li {
            position: relative;
            padding: 0px .3rem;
            transition: background-color .2s ease;
            border-right: 1px solid rgba(0,0,0,.1);
            cursor: pointer
        }

            .sticky-navigation-bar .container .navgation-list > ul > li > a {
                display: flex;
                align-items: center;
                gap: .3rem;
                font-size: 1rem;
                cursor: pointer;
                color: #ecf1f4
            }

@media screen and (min-width: 1200px) {
    .sticky-navigation-bar .container .navgation-list > ul > li > a {
        padding: .7rem 0px
    }
}

.sticky-navigation-bar .container .navgation-list > ul > li > a i {
    color: rgba(255,255,255,.4);
    font-size: .9rem;
    width: 1.25rem;
    height: 1.5rem;
    text-align: center;
    padding-top: .3rem
}

.sticky-navigation-bar .container .navgation-list > ul > li.clsDownload-Application > a i.fi-rr-angle-small-down {
    display: none
}

.sticky-navigation-bar .container .navgation-list > ul > li .drop-menu {
    display: none;
    background-color: #fff;
    padding: .8rem .625rem;
    box-shadow: 0px 2px 3rem 0px rgba(0,0,0,.3)
}

    .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a {
        font-size: 1.125rem !important;
        font-weight: 400 !important;
        padding: .4rem .6rem;
        min-width: 12rem;
        border-radius: 6px
    }

        .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a:hover {
            background-color: #ecf1f4
        }

        .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a:last-of-type {
            border: 0px
        }

@media(min-width: 1200px) {
    .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu {
        left: 0%;
        position: absolute;
        z-index: 30;
        border-bottom-right-radius: .6rem;
        border-bottom-left-radius: .6rem;
        box-shadow: 0px 10px 20px rgba(0,0,0,.06)
    }

        .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a {
            white-space: nowrap
        }
}

.sticky-navigation-bar .container .navgation-list > ul > li .btn-sm {
    width: 159px;
    padding: 10px 0px
}

@media screen and (max-width: 1366px) {
    .sticky-navigation-bar .container .navgation-list > ul > li .btn-sm {
        display: none
    }
}

.sticky-navigation-bar .container .navgation-list > ul > li .btn-sm:hover {
    color: #fff
}

.sticky-navigation-bar .container .navgation-list > ul > li:hover {
    background-color: rgba(255,255,255,.2)
}

    .sticky-navigation-bar .container .navgation-list > ul > li:hover > a {
        color: #fff !important
    }

.sticky-navigation-bar .container .navgation-list .active {
    background-color: rgba(255,255,255,.2)
}

    .sticky-navigation-bar .container .navgation-list .active > a {
        color: #fff !important
    }

.nav-clear {
    height: 2.8rem
}

.nav-btn {
    color: #f3f6f8;
    border: 1px solid #557490;
    border-radius: .4rem;
    height: 2rem;
    display: flex;
    padding: 4px .5rem 0;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    cursor: pointer;
    display: none
}

@media screen and (max-width: 1200px) {
    .nav-btn {
        display: flex
    }
}

.hide-li {
    display: none
}

@media(max-width: 1199px) {
    .hide-li {
        display: block
    }

    .side-nav {
        display: block !important;
        margin: 0px !important;
        position: fixed;
        top: 0;
        left: 0;
        background: #213555;
        width: 0;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-left: 0px;
        z-index: 60;
        transition: width .4s ease;
        -webkit-transition: width .4s ease;
        -moz-transition: width .4s ease;
        box-shadow: 2px 2px 20px rgba(0,0,0,.4)
    }

        .side-nav > ul {
            display: block !important;
            width: 250px !important
        }

    .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu {
        position: relative !important;
        border-radius: 0;
        transform: none !important;
    }

    .side-nav > ul li {
        width: 100% !important;
        padding: .9rem .8rem !important;
        border-bottom: 1px solid rgba(0,0,0,.3)
    }

        .side-nav > ul li.limenu {
            padding: 0 !important;
            border: none;
        }

        .side-nav > ul li > a {
            font-size: 1.1rem !important;
            font-weight: 700;
            gap: .6rem !important
        }

    .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a {
        padding: .556rem .6rem;
        white-space: normal;
    }

        .sticky-navigation-bar .container .navgation-list > ul > li .drop-menu a span {
            line-height: 1.25rem;
        }

    .side-nav > ul li .btn-sm {
        display: block !important;
        width: 100% !important;
        margin-top: 15px !important
    }

    .side-nav .side-menu-logo {
        display: block
    }

    .sub-menu {
        width: 100% !important;
        display: block;
        position: relative
    }

    .menu-btn {
        display: inline-block
    }
}

.nav-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 59 !important;
    display: none
}

.user-side {
    display: flex;
    gap: .5rem;
    flex-direction: row-reverse
}

    .user-side .user-avatar {
        display: flex;
        align-items: center;
        gap: .5rem;
        cursor: pointer;
        transition: all .3s ease
    }

        .user-side .user-avatar img {
            width: 2rem;
            height: 2rem;
            border-radius: 100%;
            object-fit: contain
        }

        .user-side .user-avatar i {
            color: #ddd
        }

        .user-side .user-avatar div {
            display: flex;
            flex-direction: column
        }

            .user-side .user-avatar div span {
                font-size: .8rem;
                color: #ddd;
                padding: 0px;
                margin: 0px;
                display: block
            }

            .user-side .user-avatar div h6 {
                font-size: 1rem;
                color: #ecf1f4;
                padding: 0px;
                margin-top: -0.25rem;
                width: 3.8rem;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden
            }

@media screen and (max-width: 400px) {
    .user-side .user-avatar div span, .user-side .user-avatar div h6 {
        display: none
    }
}

.user-side .user-avatar:hover {
    opacity: .8
}

.notifcation-box .dropdown-menu {
    min-width: 18rem !important;
    max-width: 100% !important;
    max-height: 30rem !important;
    overflow-y: auto
}

.notifcation-icon {
    min-width: 2rem;
    height: 2rem;
    border-radius: .25rem;
    color: #fff;
    position: relative;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    padding: 0px .3rem;
    transition: all .3s ease
}

    .notifcation-icon i {
        padding-top: .4rem;
        display: block;
        color: rgba(255,255,255,.8)
    }

    .notifcation-icon span {
        background-color: #de574d;
        padding: 0px .3rem;
        border-radius: .25rem;
        text-align: center;
        height: 1.25rem
    }

    .notifcation-icon:hover {
        background-color: rgba(255,255,255,.2)
    }

.language-box {
    display: flex;
    gap: .375rem;
    padding: 0rem .25rem
}

    .language-box a {
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .4rem;
        border: 1px solid rgba(255,255,255,.2);
        color: rgba(255,255,255,.8);
        border-radius: .25rem;
        padding: 0rem .5rem;
        transition: all .3s ease
    }

        .language-box a img {
            width: 1.25rem;
            height: auto
        }

        .language-box a:hover {
            background-color: rgba(255,255,255,.2)
        }

    .language-box .active {
        color: #fff;
        background-color: rgba(255,255,255,.2) !important
    }

.boxes-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.tabel-box-item {
    background-color: #fff;
    border-radius: .5rem;
    padding: 1rem;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    height: 100%
}

    .tabel-box-item .box-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: .5rem;
    }

        .tabel-box-item .box-head .box-name {
            display: flex;
            flex-direction: column;
            gap: .25rem
        }

            .tabel-box-item .box-head .box-name h3 {
                font-size: 1.75rem;
                font-style: normal;
                font-weight: 700;
                text-transform: capitalize;
                line-height: 1.396rem
            }

            .tabel-box-item .box-head .box-name p {
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                color: #6a6a6a;
                line-height: 1.396rem;
                display: none
            }

@media screen and (min-width: 768px) {
    .tabel-box-item .box-head .box-name p {
        display: block
    }
}

.tabel-box-item .btn:not(.btn-link) {
    min-width: 6rem;
}

.gap-0 {
    gap: 0
}

.note-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    display: inline-block
}

@media screen and (max-width: 767px) {
    .tabs-responsive {
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 1rem
    }

        .tabs-responsive .box-name p {
            display: none
        }
}

@media screen and (max-width: 414px) {
    .p-xs-0 {
        padding: 0px !important
    }
}

.table-sub-head {
    background-color: #ecf1f4
}

    .table-sub-head td {
        padding-top: .25rem;
        padding-bottom: .25rem;
        text-align: center
    }

    .table-sub-head th {
        padding-top: .25rem;
        padding-bottom: .25rem;
        text-align: center
    }

.tabel-item-name {
    display: flex;
    flex-direction: column
}

    .tabel-item-name a {
        font-size: 1.1rem !important;
        font-weight: 700;
        text-decoration: underline
    }

    .tabel-item-name h4 {
        font-size: 1.1rem !important;
        font-weight: 700
    }

    .tabel-item-name p {
        color: #666;
        display: block;
        margin-top: -0.2rem
    }

        .tabel-item-name p a {
            font-size: 1rem !important;
            font-weight: 400;
        }

.striped tr td {
    transition: background-color .2s ease
}

.striped tr:nth-child(odd) td {
    background-color: #fff
}

.striped tr:nth-child(odd):hover td {
    background-color: #f2f8fb !important
}

    .striped tr:nth-child(odd):hover td .dropdown-toggle {
        background-color: #fff
    }

.striped tr:nth-child(even) td {
    background-color: #f8f8f8
}

.striped tr:nth-child(even):hover td {
    background-color: #f2f8fb !important
}

    .striped tr:nth-child(even):hover td .dropdown-toggle {
        background-color: #fff
    }

.dt-container .dt-length, .dt-container .dt-search {
    padding-bottom: .5rem
}

.dt-container .dt-info, .dt-container .dt-paging {
    padding-top: .5rem
}

.hide-dt-space .mt-2 {
    margin-top: 0px !important
}

.hide-dt-search .dt-container .dt-search {
    display: none
}

.hide-dt-length .dt-container .dt-length {
    display: none
}

.hide-dt-info .dt-info {
    display: none
}

.hide-dt-paging .dt-paging {
    display: none
}

.table-dark-bar {
    margin: 0px !important
}

    .table-dark-bar thead tr th {
        background-color: #213555 !important;
        color: #fff;
        border-color: rgba(255,255,255,.2) !important;
        font-size: 1.125rem !important;
        font-weight: 700
    }

        .table-dark-bar thead tr th:first-of-type {
            border-top-left-radius: .5rem
        }

        .table-dark-bar thead tr th:last-of-type {
            border-top-right-radius: .5rem
        }

body.rtl .table-dark-bar thead tr th:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: .5rem
}

body.rtl .table-dark-bar thead tr th:last-of-type {
    border-top-right-radius: 0;
    border-top-left-radius: .5rem
}

.table-dark-bar tbody tr {
    transition: background-color .2s ease
}


    .table-dark-bar tbody tr td:not(.AssosiatedItemsTBody td):not(.TBodyQuestionType_ExamBluePrint td) {
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid #ddd;
    }

    .table-dark-bar tbody tr td.text-start {
        text-align: start !important;
    }

    .table-dark-bar tbody tr td .dropdown-toggle {
        transition: background-color .2s ease
    }

    .table-dark-bar tbody tr:hover {
        background-color: #f3f6f8 !important
    }

        .table-dark-bar tbody tr:hover .dropdown-toggle {
            background-color: #fff
        }

    .table-dark-bar tbody tr:last-of-type td {
        border-bottom: 1px solid #ddd !important
    }

.text-start {
    text-align: start !important
}

    .text-start .tabel-item-name {
        text-align: start !important
    }

.dt-paging .pagination .page-item .page-link {
    padding: .1rem .5rem !important;
    color: #666;
    box-shadow: none !important
}

.dt-paging .active .page-link {
    background-color: #213555 !important;
    border-color: #213555 !important;
    color: #fff !important
}

.dt-info {
    color: #666;
    font-size: 1rem
}

.dt-column-order::after {
    margin-top: 2px !important
}

.dt-scroll-body {
    height: 500px !important;
    max-height: 500px
}

.dropdown-menu {
    box-shadow: 0px 2px 3rem 0px rgba(0,0,0,.2);
    border: 0px !important
}

.DisplayStudentPics_modal img {
    height: 217px !important;
}

.actions-mega-menu {
    box-shadow: 0px 2px 3rem 0px rgba(0,0,0,.4);
    border: 0px !important;
    background-color: #fff;
    padding: .75rem;
    max-width: 96vw;
}

    .actions-mega-menu .actions-list {
        min-width: 10rem
    }

        .actions-mega-menu .actions-list h4 {
            font-size: 1.2rem;
            padding: .25rem 0;
            display: flex;
            gap: .25rem;
            margin-bottom: .5rem;
            border-bottom: 2px solid;
            align-items:center;
        }

            .actions-mega-menu .actions-list h4 i {
                font-size: .9rem;
                padding-top: .3rem
            }

        .actions-mega-menu .actions-list h6 {
            font-weight: 600;
            padding-top: .5rem
        }

        .actions-mega-menu .actions-list a {
            display: block;
            font-size: 1rem;
            border-bottom: 1px solid #ddd;
            padding: .4rem 0rem;
            line-height: 1.2rem
        }

            .actions-mega-menu .actions-list a:last-of-type {
                border-bottom: 0px
            }

    .actions-mega-menu .green-view h4, .actions-mega-menu .green-view h6 {
        color: #67B99A
    }

    .actions-mega-menu .green-view a:hover {
        color: #67B99A
    }


    .actions-mega-menu .yellow-view h4, .actions-mega-menu .yellow-view h6 {
        color: #CA5E36
    }

    .actions-mega-menu .yellow-view a:hover {
        color: #CA5E36
    }

    .actions-mega-menu .yellow-view img {
        height: 16px;
    }

    .actions-mega-menu .blue-view h4, .actions-mega-menu .blue-view h6 {
        color: #618DC1
    }

    .actions-mega-menu .blue-view a:hover {
        color: #618DC1
    }


    .actions-mega-menu .purple-view h4, .actions-mega-menu .purple-view h6 {
        color: #985AB3
    }

    .actions-mega-menu .purple-view a:hover {
        color: #985AB3
    }


    .actions-mega-menu .see-green-view h4, .actions-mega-menu .see-green-view h6 {
        color: #009DBD
    }

    .actions-mega-menu .see-green-view a:hover {
        color: #009DBD
    }



    .actions-mega-menu .purple-view-1 h4, .actions-mega-menu .purple-view-1 h6 {
        color: #AA6AFC
    }

    .actions-mega-menu .purple-view-1 a:hover {
        color: #AA6AFC
    }



    .actions-mega-menu .green-view h4, .actions-mega-menu .green-view h6 {
        color: #61A548
    }



    .actions-mega-menu .green-view a:hover {
        color: #61A548
    }

    .actions-mega-menu .black-view h4, .actions-mega-menu .black-view h6 {
        color: #707070
    }

    .actions-mega-menu .black-view a:hover {
        color: #707070
    }


    .actions-mega-menu .red-view a:hover {
        color: #bb2d3b
    }

@media screen and (max-width: 768px) {
    .actions-mega-menu .d-flex {
        flex-direction: row;
        flex-wrap: wrap !important;
    }

        .actions-mega-menu .d-flex .actions-list {
            width: 47% !important
        }
}

.multiple-select-dropdown {
    cursor: pointer !important
}

    .multiple-select-dropdown .dropdown-toggle {
        background-color: #fff;
        padding: .1rem .5rem 0px .5rem;
        border-radius: .5rem;
        border: 1px solid #ddd;
        width: 100%;
        position: relative;
        height: 2.75rem
    }

        .multiple-select-dropdown .dropdown-toggle label {
            display: block;
            height: 1.25rem;
            cursor: pointer !important
        }

        .multiple-select-dropdown .dropdown-toggle .selected-items {
            font-size: .9rem;
            color: #666;
            width: 96%;
            display: inline-block;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            margin-bottom: 0px
        }

            .multiple-select-dropdown .dropdown-toggle .selected-items span {
                padding-right: .1rem
            }

                .multiple-select-dropdown .dropdown-toggle .selected-items span::after {
                    content: ","
                }

        .multiple-select-dropdown .dropdown-toggle::after {
            top: 0;
            right: 2px;
            margin: 1.8rem .5rem;
            position: absolute !important
        }

body.rtl .multiple-select-dropdown .dropdown-toggle::after {
    right: auto;
    left: 2px;
}

.multiple-select-dropdown .dropdown-menu {
    width: 100%;
    padding: .5rem;
    max-height: 12rem;
    overflow-y: auto
}

    .multiple-select-dropdown .dropdown-menu .form-check:hover {
        background-color: #ecf1f4
    }

    .multiple-select-dropdown .dropdown-menu .form-check-label {
        cursor: pointer;
        font-size: 1rem;
        display: block
    }

.multiple-select-dropdown:hover .dropdown-toggle label {
    color: #0377df
}

.graph-filter-bar {
    background-color: #ecf1f4;
    border-radius: .5rem;
    padding: .5rem
}

    .graph-filter-bar .filter-row {
        display: flex;
        gap: .5rem;
        align-items: center
    }

        .graph-filter-bar .filter-row .btn {
            min-width: 2.5rem !important;
            font-size: .9rem !important
        }

            .graph-filter-bar .filter-row .btn:not(#btnsearchcol_item, #btnsearchcol_exam) {
                border: none !important;
                height: unset !important;
            }

            .graph-filter-bar .filter-row .btn i {
                padding-top: .2rem
            }

.graph-filter-result-bar {
    padding-top: .5rem
}

    .graph-filter-result-bar p {
        display: flex;
        align-items: center;
        gap: .5rem
    }

        .graph-filter-result-bar p span {
            font-size: 1rem;
            color: #666
        }

        .graph-filter-result-bar p b {
            font-size: 1.25rem;
            color: #0377df
        }

.mouse-pointer-note {
    padding-top: .5rem;
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    text-transform: capitalize
}

    .mouse-pointer-note i {
        color: #0377df;
    }

.inline-graph {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: .75rem
}

    .inline-graph #examStatisticsChart {
        padding: 0px !important;
        width: 24rem;
        height: 18rem;
        margin-right: -1rem
    }

    .inline-graph .chart-content-box {
        width: 12.81588rem;
        background-color: #ecf1f4;
        padding: .75rem;
        border-radius: .5rem;
        display: flex;
        flex-direction: column;
        gap: .25rem
    }

        .inline-graph .chart-content-box .content-item {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .inline-graph .chart-content-box h6 {
            background-color: rgba(255,255,255,.7);
            border-radius: .2rem;
            padding: .2rem .4rem 0rem .4rem;
            margin-left: -0.5rem;
            margin-right: -0.5rem;
            font-weight: 700;
            color: #0377df
        }

@media screen and (max-width: 576px) {
    .inline-graph {
        flex-direction: column-reverse
    }

        .inline-graph .chart-content-box, .inline-graph .pie-chart-box {
            width: 100%
        }

        .inline-graph .pie-chart-box {
            text-align: center;
            justify-content: center;
            display: flex
        }

            .inline-graph .pie-chart-box #examStatisticsChart {
                margin-right: 0rem
            }
}

#CourseStatisticsChart {
    height: 20.3rem
}

#examConditionStatisticsChart {
    height: 17.9rem
}

.main-header {
    background-color: #fff
}

    .main-header .head-bar {
        padding: .5rem 0px;
        box-shadow: 0px 2px 4px 0px rgba(0,0,0,.1);
        position: relative
    }

        .main-header .head-bar .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: absolute;
            top: 50%;
            transform: translate(0%, -50%);
            gap: .2rem;
            padding-left: .75rem
        }

            .main-header .head-bar .logo img {
                max-height: 2.9rem;
                width: auto
            }

            .main-header .head-bar .logo span {
                font-size: 1.25rem;
                font-weight: 600
            }

@media screen and (min-width: 768px) {
    .main-header .head-bar .logo {
        gap: .5rem;
        align-items: center;
        flex-direction: row
    }
}

@media screen and (min-width: 992px) {
    .main-header .head-bar .logo {
        padding-left: 0px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }
}

.main-header .head-bar .logo:hover {
    color: #0377df
}

@media screen and (max-width: 780px) {
    .head-row {
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-end !important
    }
}

.quick-access-dropdown {
    min-width: 100% !important
}

    .quick-access-dropdown .dropdown-item {
        font-size: 1.125rem
    }

.quick-access-menu {
    min-width: 15rem !important;
    height: 2.5rem;
    color: #0377df !important;
    border-radius: .5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    gap: .4rem;
    align-items: center;
    justify-content: center;
    padding: 0px .75rem;
    transition: all .2s ease
}

@media screen and (max-width: 780px) {
    .quick-access-menu {
        min-width: 19.5rem !important
    }

    .help-modal .quick-access-menu {
        min-width: unset !important;
    }
}

.quick-access-menu i {
    padding-top: .4rem
}

.quick-access-menu:hover {
    background-color: #f2f8fb
}

.role-box {
    display: flex;
    align-items: center;
    gap: .25rem
}

    .role-box .form-floating {
        box-shadow: none !important
    }

        .role-box .form-floating .form-select {
            border: 0px !important;
            height: 3rem;
            padding-top: 1.4rem;
            cursor: pointer;
            box-shadow: none !important;
            transition: all .2s ease;
            background-color: #f2f8fb;
            min-height: unset;
        }

            .role-box .form-floating .form-select:hover {
                background-color: #f2f8fb
            }

        .role-box .form-floating label {
            color: #0377df;
            opacity: 1;
            font-weight: 600;
            padding-left: .6rem
        }

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
    display: none;
}

.page-title {
    padding: 1rem 0px
}

    .page-title .breadcrumb {
        margin-bottom: 0px
    }

.search-box-group {
    border: 1px solid #ddd;
    border-radius: .5rem;
    background-color: #fff;
    display: flex;
    gap: .2rem;
    padding: .25rem
}

    .search-box-group .form-control {
        border: 0px;
        box-shadow: none !important
    }

    .search-box-group .btn {
        width: 2rem;
        font-size: .8rem;
        border-radius: .4rem
    }

        .search-box-group .btn i {
            padding-top: .2rem;
            font-weight: 700
        }

@media screen and (max-width: 768px) {
    table.bt thead, table.bt tbody th {
        display: none
    }

    table.bt tfoot th, table.bt tfoot td, table.bt tbody td {
        border: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        vertical-align: top;
        float: left\9;
        width: 100% \9;
        padding: 0px !important;
        background-color: #fff !important
    }

        table.bt tfoot th::before, table.bt tfoot td::before, table.bt tbody td::before {
            content: attr(data-th) ": ";
            display: inline-block;
            -webkit-flex-shrink: 0;
            -ms-flex-shrink: 0;
            flex-shrink: 0;
            font-weight: bold;
            width: 8rem;
            background-color: #213555 !important;
            color: #fff;
            padding: .4rem .3rem;
            border-bottom: 1px solid #4d5d77 !important;
            text-align: start
        }

        table.bt tfoot th.bt-hide, table.bt tfoot td.bt-hide, table.bt tbody td.bt-hide {
            display: none
        }

        table.bt tfoot th .bt-content, table.bt tfoot td .bt-content, table.bt tbody td .bt-content {
            vertical-align: middle
        }

    .bt-wrapper.active {
        max-height: 310px;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }

    table.bt.bt--no-header tfoot td::before, table.bt.bt--no-header tbody td::before {
        display: none
    }

    .table-responsive-view {
        width: 100% !important
    }

        .table-responsive-view colgroup {
            width: 100% !important;
            display: block
        }

        .table-responsive-view tbody tr {
            background-color: #eee;
            gap: 0px
        }

            .table-responsive-view tbody tr td {
                border-right: 1px solid rgba(0,0,0,.1) !important
            }

                .table-responsive-view tbody tr td .bt-content {
                    padding: .4rem .6rem;
                    width: 100% !important;
                    border-bottom: 1px solid #eee;
                    text-align: start
                }

                .table-responsive-view tbody tr td .status {
                    min-width: auto;
                    padding: 0px
                }


                .table-responsive-view tbody tr td:last-of-type .bt-content {
                    padding-bottom: 1.6rem
                }

        .table-responsive-view .action-btn {
            width: 14rem !important
        }
}

.qs-datepicker-container {
    width: 100%;
    font-size: 1rem;
    font-family: inherit;
    color: #000;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: .263921875em;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 3px 33px rgba(0,0,0,.16);
    -webkit-box-shadow: 0px 3px 33px rgba(0,0,0,.16);
    padding-bottom: 30px
}

    .qs-datepicker-container * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

.qs-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.qs-hidden {
    display: none
}

.qs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.75);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: .5em;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .qs-overlay.qs-hidden {
        opacity: 0;
        z-index: -1
    }

    .qs-overlay .qs-overlay-year {
        background: rgba(0,0,0,0);
        border: none;
        border-bottom: 1px solid #fff;
        border-radius: 0;
        color: #fff;
        font-size: .875em;
        padding: .25em 0;
        width: 80%;
        text-align: center;
        margin: 0 auto;
        display: block
    }

        .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
            -webkit-appearance: none
        }

    .qs-overlay .qs-close {
        padding: .5em;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0
    }

    .qs-overlay .qs-submit {
        border: 1px solid #fff;
        border-radius: .263921875em;
        padding: .5em;
        margin: 0 auto auto;
        cursor: pointer;
        background: rgba(128,128,128,.4)
    }

        .qs-overlay .qs-submit.qs-disabled {
            color: gray;
            border-color: gray;
            cursor: not-allowed
        }

    .qs-overlay .qs-overlay-month-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .qs-overlay .qs-overlay-month {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 33.3333333333%;
        cursor: pointer;
        opacity: .5;
        -webkit-transition: opacity .15s;
        transition: opacity .15s
    }

        .qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
            opacity: 1
        }

.qs-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s,-webkit-filter .3s;
    padding: 20px 30px
}

    .qs-controls.qs-blur {
        -webkit-filter: blur(5px);
        filter: blur(5px)
    }

.qs-arrow {
    height: 1.5625em;
    width: 1.5625em;
    position: relative;
    cursor: pointer;
    border-radius: .263921875em;
    -webkit-transition: background .15s;
    transition: background .15s
}

    .qs-arrow:hover {
        background: rgba(0,0,0,.1)
    }

        .qs-arrow:hover.qs-left:after {
            border-right-color: #000
        }

        .qs-arrow:hover.qs-right:after {
            border-left-color: #000
        }

    .qs-arrow:after {
        content: "";
        border: .390625em solid rgba(0,0,0,0);
        position: absolute;
        top: 50%;
        -webkit-transition: border .2s;
        transition: border .2s
    }

    .qs-arrow.qs-left:after {
        border-right-color: gray;
        right: 50%;
        -webkit-transform: translate(25%, -50%);
        -ms-transform: translate(25%, -50%);
        transform: translate(25%, -50%)
    }

    .qs-arrow.qs-right:after {
        border-left-color: gray;
        left: 50%;
        -webkit-transform: translate(-25%, -50%);
        -ms-transform: translate(-25%, -50%);
        transform: translate(-25%, -50%)
    }

.qs-month-year {
    font-weight: 700;
    -webkit-transition: border .2s;
    transition: border .2s;
    border-bottom: 1px solid rgba(0,0,0,0)
}

    .qs-month-year:not(.qs-disabled-year-overlay) {
        cursor: pointer
    }

        .qs-month-year:not(.qs-disabled-year-overlay):hover {
            border-bottom: 1px solid gray
        }

    .qs-month-year:active:focus, .qs-month-year:focus {
        outline: none
    }

.qs-month {
    padding-right: .5ex
}

.qs-year {
    padding-left: .5ex
}

.qs-squares {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s,-webkit-filter .3s;
    font-size: 1rem
}

@media screen and (max-width: 576px) {
    .qs-squares {
        font-size: .9rem
    }
}

.qs-squares.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.qs-square {
    width: 14.2857142857%;
    padding: 8px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background .1s;
    transition: background .1s;
    border-radius: .263921875em
}

    .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
        background: #0377df;
        color: #fff
    }

.qs-current {
    font-weight: 700;
    text-decoration: underline
}

.qs-active, .qs-range-end, .qs-range-start {
    background: #0377df;
    color: #fff
}

    .qs-range-start:not(.qs-range-6) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

.qs-range-middle {
    background: #d4ebf2
}

    .qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
        border-radius: 0
    }

    .qs-range-middle.qs-range-0 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .qs-range-end:not(.qs-range-0), .qs-range-middle.qs-range-6 {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

.qs-disabled, .qs-outside-current-month {
    opacity: .2
}

.qs-disabled {
    cursor: not-allowed
}

.qs-day, .qs-empty {
    cursor: default
}

.qs-day {
    color: #444;
    font-size: .9rem;
    padding-bottom: 10px
}

.qs-event {
    position: relative
}

    .qs-event:after {
        content: "";
        position: absolute;
        width: .46875em;
        height: .46875em;
        border-radius: 50%;
        background: #07f;
        bottom: 0;
        right: 0
    }

.datepickerInput {
    position: relative
}

    .datepickerInput::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1rem;
        height: 1rem;
        margin: .6rem .5rem;
        background: url(../images/calendar-icon.svg) no-repeat;
        background-size: contain
    }

    .datepickerInput input {
        cursor: pointer
    }

.dropdown-menu.drop-menu.show {
    display: block !important;
}

.dropdown-item.icon-item:hover {
    color: #0a58ca !important;
}
/*# sourceMappingURL=MainStyle.css.map */
.multiple-select-dropdown {
    background-color: #fff;
    padding: .1rem .5rem 0px .5rem;
    border-radius: .5rem;
    border: 1px solid #ddd;
    width: 100%;
    position: relative;
    height: 2.858rem;
}

    .multiple-select-dropdown > label {
        display: block;
        height: 1.05rem;
        cursor: pointer !important;
    }

    .multiple-select-dropdown .dropdown-menu li:hover {
        background: #ecf1f4;
    }

select + .btn-group {
    width: 100%;
}

.multiselect-native-select select {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px -1px -1px -3px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    left: 50%;
    top: 30px;
}

    .multiselect-native-select select + .btn-group button {
        height: unset;
        border: none;
        text-align: start;
        justify-content: flex-start !important;
        padding: 0 !important;
    }

span.multiselect-selected-text {
    width: calc(100% - 15px);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.BS_Date .glyphicon-calendar {
    text-align: center;
    color: #0377df
}

    .BS_Date .glyphicon-calendar::before {
        font-family: uicons-regular-rounded !important;
        font-style: normal;
        font-weight: normal !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f33e";
        position: relative;
        top: 2px;
    }

.BS_Date .glyphicon-remove {
    text-align: center;
}

    .BS_Date .glyphicon-remove:before {
        content: url("../../content/images/close-icon.png") !important;
        position: relative;
        top: -2px;
    }

.BS_Date {
    background-color: #FFF;
    border: 1px solid #dee2e6 !important;
    display: flex !important;
    align-items: center;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    height: 2.25rem;
}


    .BS_Date.input-group .input-group-addon span {
        width: 20px;
        height: 18px;
        margin: 0 5px;
    }

    .BS_Date.input-group .input-group-addon {
        position: static;
        display: inline-flex;
    }

span.glyphicon.glyphicon-calendar {
    width: 21px !important;
    height: 23px !important;
    top: auto;
}

[class*=" datetimepicker-dropdown"]:after, [class*=" datetimepicker-dropdown"]:before {
    display: none !important;
}

.no-shadow {
    box-shadow: none;
}

.layout_TitlePlaceHolder {
    outline: none;
}

.clsVisibilityHidden {
    visibility: hidden;
}

.BS_Date.input-group {
    display: flex !important;
    align-items: center;
}

.BS_Date {
    border: 1px solid #b6b6b6 !important;
}

    .BS_Date .glyphicon-remove1 {
        font-size: 0;
        height: 8px !important;
    }

.popover {
    max-width: unset !important;
    width: fit-content;
    font-family: "Zain", sans-serif !important;
    font-size: 1rem;
}

.img-area {
    background: #ECF1F4;
    height: 133px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}



.clsmdlheightscroll {
    max-height: calc(100vh - 222px);
}

body:not(.rtl) .jtable-column-header-sortable > div {
    padding-right: 20px
}

body.rtl .jtable-column-header-sortable > div {
    padding-left: 20px
}

#megamenus li ul.dropdown-menu {
    max-height: calc(100vh - 100px);
    overflow: auto;
}

@media screen and (min-width:1600px) {
    .wrapper {
        min-height: calc(100vh - 108px);
    }
}


@media screen and (max-width:1250px) and (min-width:1200px) {
    .sticky-navigation-bar .container .navgation-list > ul > li {
        padding: 0;
    }
}

@media screen and (max-width:1200px) {
    .container {
        max-width: 96rem !important;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .table-responsive-view, .jtable {
        width: 100% !important;
        display: block;
    }

    .table-container:not(.not-responsive) tbody, .table-container:not(.not-responsive) tr, .table-container:not(.not-responsive) tfoot {
        display: block
    }

    table thead, table tbody th {
        display: none;
    }

    .table-responsive-view tbody tr td, .jtable tbody tr td, .table-container:not(.not-responsive) tbody tr td, .table-container:not(.not-responsive) tfoot tr td {
        display: flex;
        vertical-align: top;
        float: left\9;
        width: 100% \9;
        padding: .4rem .6rem !important;
        background-color: #fff !important;
        width: 100% !important;
        border: 1px solid #eee;
        margin-bottom: -1px;
        position: relative;
        min-height: 2.5rem;
    }

    table tfoot th::before, table tfoot td::before, table tbody td::before {
        content: attr(data-label) ": ";
        display: inline-block;
        -webkit-flex-shrink: 0;
        -ms-flex-shrink: 0;
        flex-shrink: 0;
        width: 8rem;
        background-color: #213555 !important;
        color: #fff;
        padding: .4rem .3rem;
        border-bottom: 1px solid #4d5d77 !important;
        text-align: start;
        position: relative;
        z-index: 500;
        top: 0;
        bottom: -1px;
        white-space: normal;
    }

    .not-responsive table tbody td::before {
        display: none;
    }

    body:not(.rtl) table tfoot th::before, body:not(.rtl) table tfoot td::before, body:not(.rtl) table tbody td::before {
        margin: -0.4rem 0.6rem -0.4rem -0.6rem
    }

    body.rtl table tfoot th::before, body.rtl table tfoot td::before, body.rtl table tbody td::before {
        margin: -0.4rem -0.6rem -0.4rem 0.6rem
    }

    table tbody tr {
        border-bottom: 1rem solid #eee !important;
    }

    .not-responsive table tbody tr {
        border-bottom: none !important;
    }

    .jtable-bottom-panel {
        flex-wrap: wrap;
        padding: 0 15px 15px;
        text-align: center;
        gap: 10px;
        justify-content: center;
    }

    .jtable-left-area, span.jtable-page-list {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 !important;
    }

        span.jtable-page-list span {
            padding: 0 9px !important;
        }

    table .action-btn {
        width: 12rem !important;
        background: #ecf1f4 !important;
    }

    section.page-title .search-area-h > .search {
        display: flex !important;
        flex-wrap: wrap;
    }

    section.page-title .search-area {
        padding: 0 !important;
    }

    section.page-title .search input:not([type="checkbox"]) {
        width: auto;
    }

    section.page-title .search-area div.searchBar {
        flex-grow: 1;
    }

    body:not(.rtl) .popover, body.rtl .popover {
        max-width: calc(100% - 20px) !important;
        margin: 0 !important;
    }
}

@media screen and (max-width:576px) {
    .main-header .head-bar .logo {
        position: static;
        transform: none;
    }

    .btnAdvanceSearch {
        flex-grow: 1
    }

    .main-header .head-bar .logo a {
        margin: 5px auto 10px;
    }

    .head-row {
        align-items: center !important;
    }

    .quick-access-menu {
        min-width: 21.5rem !important;
    }

    .help-modal .quick-access-menu {
        min-width: unset !important;
    }

    table .action-btn {
        width: 9rem !important;
    }
}

/****************** By Adnan 2025-04-17 ***************/

.content.blue-print .card-header button {
    background: #2a3e4f;
    width: 100%;
    border-radius: 0 !important;
    padding: .5rem .75rem;
    color: #FFF;
    text-align: left;
    text-decoration: none !important;
    position: relative;
    /*padding-right;*/ /*Mr. Waqas asked 2021-05-17*/
    white-space: normal;
}

    .content.blue-print .card-header button::after {
        content: url("../../Content/images/collapse-arrow.png");
        position: absolute;
        top: 6px;
        right: 15px;
    }


.content.blue-print .card-header.no-hover-card {
    background: #428bca;
    width: 100%;
    border-radius: 0 !important;
    padding: .5rem .75rem;
    color: #FFF;
    text-align: left;
    text-decoration: none !important;
    position: relative;
    /*padding-right;*/ /*Mr. Waqas asked 2021-05-17*/
    white-space: normal;
}

    .content.blue-print .card-header.no-hover-card::after {
        content: url("../../Content/images/collapse-arrow.png");
        position: absolute;
        top: 6px;
        right: 15px;
    }


.content.blue-print .card-header button.collapsed::after {
    transform: rotate(180deg);
    top: 12px;
}

.content.blue-print .card-header, .content.blue-print .card {
    padding: 0;
    border-radius: 0 !important;
    margin-bottom: 1px;
    border: none !important;
}

.content.blue-print .card-header {
    margin-bottom: 0px;
}

.actions-mega-menu .actions-list .text-hover-primary a:hover {
    color: var(--bs-primary) !important;
}

.btn.surface-secondary-200:hover {
    background: #dfe5eb !important;
}

.table-container .table-bordered > :not(caption) > * {
    border-width: 0 !important;
}

@media screen and (max-width:1600px) {
    label .check-container .checkmark + span {
        top: 1px
    }

    .btn.btn-36 {
        padding: .3rem .75rem 0rem .75rem
    }

        .btn.btn-36 img {
            margin-top: -5px;
        }
}

@media screen and (min-width:1601px) {
    body.rtl .table-container th {
        font-size: 1rem !important;
    }
}

input[type="password"]::-ms-reveal {
    display: none;
}

input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

input[type="password"]::-webkit-clear-button {
    display: none;
}

@charset "utf-8";
/* CSS Document */

.userManagement_img {
    width: 11px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat 0px 0px;
    margin-right: 15px;
    top: 1px;
}

.ApplicationSetting_img {
    width: 11px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -12px 0px;
    margin-right: 15px;
    top: 1px;
}

.Classifications_img {
    width: 11px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -24px 0px;
    margin-right: 15px;
    top: 1px;
}

.Logout_img {
    width: 15px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -31px -13px;
    margin-right: 15px;
    top: 4px;
}

.TopMenuArrow_img {
    width: 9px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -36px 0px;
    margin: 0px 6px 0px 4px;
    top: 1px;
}

.user_img {
    width: 15px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat 0px -13px;
    margin: 0px 6px 0px 4px;
    top: 2px;
}

.updateProfile_img {
    width: 14px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -16px -13px;
    margin: 0px 6px 0px 4px;
    top: 3px;
}

.homeIcon_img {
    width: 30px;
    height: 25px;
    background: url(../../Content/images/icons_set.png) no-repeat 0px -29px;
}

.deleteIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -42px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.deleteIconDisable_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -105px -54px;
    margin: 2px 1px 0px 1px;
    cursor: default;
}

.editIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -21px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.editIconDisable_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -84px -54px;
    margin: 2px 1px 0px 1px;
    cursor: default;
}

.bluePrintIcon_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat 0px -55px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.bluePrintIconDisable_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -63px -54px;
    margin: 2px 1px 0px 1px;
    cursor: default;
}

.helpImgNormal_img {
    width: 78px;
    height: 81px;
    background: url(../../Content/images/icons_set.png) no-repeat 0px -145px;
    cursor: pointer;
}

    .helpImgNormal_img:hover {
        width: 83px;
        height: 81px;
        background: url(../../Content/images/icons_set.png) no-repeat -82px -145px;
        cursor: pointer;
        margin-right: 5px;
        position: relative;
        right: 6px;
    }

.helpImgActive_img {
    width: 72px;
    height: 45px;
    background: url(../../Content/images/icons_set.png) no-repeat -72px -100px;
    cursor: pointer;
}
/*.top_menu1_img{
	width:14px;
	height:22px;
	background:url(../../Content/images/icons_set.png) no-repeat -126px -54px;
	margin-right:5px;
	position:relative;
	margin-bottom:-6px;
}*/
.top_menu2_img {
    width: 14px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -141px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu3_img {
    width: 17px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -156px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu4_img {
    width: 19px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -174px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu4_img {
    width: 16px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -194px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu5_img {
    width: 19px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -211px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu6_img {
    width: 17px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -174px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.top_menu7_img {
    width: 17px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -231px -54px;
    margin-right: 5px;
    position: relative;
    margin-bottom: -6px;
}

.add_img {
    width: 16px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -47px -13px;
    position: relative;
    cursor: pointer;
}

.ViewIcon_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -249px -55px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.TransitionIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -314px -30px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.ViewIconDisable_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -270px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.deleteIconSmall_img {
    width: 16px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -64px -13px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.infoIconSmall_img {
    width: 16px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -81px -13px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.infoIconSmall_img2 {
    width: 16px;
    height: 16px;
    background: url(../../../Content/images/icons_set.png) no-repeat -81px -13px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}
/*------------------------------- 09-06-14 --------------------------*/

.advancSearchArrow_img {
    width: 7px;
    height: 7px;
    background: url(../../Content/images/icons_set.png) no-repeat -59px 0px;
    margin: 2px 1px 0px 1px;
}

body.rtl .advancSearchArrow_img, body.rtl .advancSearchArrow2_img {
    margin: 2px 10px 0px 1px;
}

.advancSearchArrow2_img {
    width: 7px;
    height: 7px;
    background: url(../../Content/images/icons_set.png) no-repeat -67px 0px;
    margin: 2px 1px 0px 10px;
}


/*------------------------------- 09-06-14 End --------------------------*/

/*------------------------------- 10-06-14 --------------------------*/

.historyIcon_img {
    width: 22px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -291px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.historyIconDisable_img {
    width: 22px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -335px -54px;
    margin: 2px 1px 0px 1px;
    /*cursor: pointer;*/
}

.invitationIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -314px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.invitationIconDisable_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -358px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.addIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -379px -53px;
    margin: 0px 1px 0px 1px;
    cursor: pointer;
}

.addIconDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -484px -55px;
    margin: 0px 0px 0px 1px;
    cursor: pointer;
}

.activeIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -400px -54px;
    cursor: pointer;
}

.deactiveIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -421px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}



/*------------------------------- 10-06-14 End --------------------------*/


/*------------------------------- Lab Group 10-06-14 --------------------------*/

.labIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -54px -29px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
    position: relative;
    top: 1px;
}

/*------------------------------- Lab Group 10-06-14 End --------------------------*/


/*------------------------------- 12-06-14 --------------------------*/

.copy_from_img {
    width: 123px;
    height: 24px;
    background: url(../../Content/images/icons_set.png) no-repeat -145px -97px;
    margin: -10px 0px 9px 0px;
    cursor: pointer;
    -webkit-transition: background 0.2s linear;
    -moz-transition: background 0.2s linear;
    -o-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

    .copy_from_img:hover {
        background: url(../../Content/images/icons_set.png) no-repeat -145px -121px;
    }


.crossIconSmall_img {
    width: 11px;
    height: 11px;
    background: url(../../Content/images/icons_set.png) no-repeat -91px 0px;
    cursor: pointer;
    position: relative;
    top: 6px;
}

@-moz-document url-prefix() {
    .crossIconSmall_img {
        top: 5px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .crossIconSmall_img {
        top: -5px;
    }

    ::i-block-chrome, .crossIconSmall_img {
        top: 16px;
    }
}

/*------------------------------- 12-06-14 End --------------------------*/

/*------------------------------- 15-06-14 --------------------------*/

.addSmall_img {
    width: 13px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -103px 0px;
    position: relative;
    cursor: pointer;
}

.editSmall_img {
    width: 13px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -117px 0px;
    position: relative;
    cursor: pointer;
}

.deleteSmall_img {
    width: 13px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -131px 0px;
    position: relative;
    cursor: pointer;
}



/*------------------------------- 15-06-14 End --------------------------*/

/*------------------------------- 17-06-14 --------------------------*/

.more_icon_img {
    width: 12px;
    height: 10px;
    background: url(../../Content/images/icons_set.png) no-repeat -361px -79px;
    position: relative;
    cursor: pointer;
}

.more_icon_img2 {
    width: 12px;
    height: 10px;
    background: url(../../Content/images/icons_set.png) no-repeat -361px -79px;
    position: relative;
    cursor: pointer;
}

.detail_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -319px -78px;
    position: relative;
    cursor: pointer;
}

.detail_img2 {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -319px -78px;
    position: relative;
    cursor: pointer;
}

img.tooltip {
    opacity: 1;
}

img.tooltip {
    position: static !important;
    margin-right: 5px;
    z-index: unset;
}

img[class*="tooltip"]:last-child {
    margin-right: 0px;
}
/*.grdAcceptActionDetail{width:20px;height:22px;vertical-align:middle;margin-bottom:0 !important;}
.no-wrap{white-space:nowrap}*/
.permission_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -611px -55px;
    position: relative;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}

.permissionIconDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -633px -55px;
    position: relative;
    cursor: pointer;
}

.detailDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -340px -78px;
    position: relative;
    cursor: pointer;
}

.carusel_close {
    width: 10px;
    height: 10px;
    background: url(../../Content/images/icons_set.png) no-repeat -145px 0px;
}


/*------------------------------ 17-06-14----------------------------------*/


/*------------------------------- 18-06-14 --------------------------*/

.inv_author_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -527px -78px;
    cursor: pointer;
    margin: 2px 1px 0;
}

.invite_date_img {
    width: 27px;
    height: 28px;
    background: url(../../Content/images/icons_set.png) no-repeat -318px -145px;
    position: relative;
    float: left;
    margin-right: 12px;
}

.deadlineimg {
    width: 29px;
    height: 30px;
    background: url(../../Content/images/icons_set.png) no-repeat -346px -145px;
    position: relative;
    float: left;
    margin-right: 12px;
}

.itemRequested_img {
    width: 30px;
    height: 28px;
    background: url(../../Content/images/icons_set.png) no-repeat -405px -145px;
    position: relative;
    float: left;
    margin-right: 12px;
}

.itemSubmitted_img {
    width: 34px !important;
    height: 28px;
    background: url(../../Content/images/icons_set.png) no-repeat -437px -145px;
    position: relative;
    float: left;
    margin-right: 9px;
}

.itemRejected_img {
    width: 29px;
    height: 28px;
    background: url(../../Content/images/icons_set.png) no-repeat -471px -145px;
    position: relative;
    float: left;
    margin-right: 12px;
}

.itemAccepted_img {
    width: 29px;
    height: 28px;
    background: url(../../Content/images/icons_set.png) no-repeat -375px -145px;
    position: relative;
    float: left;
    margin-right: 12px;
}

.viewSmall_img {
    width: 16px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -98px -13px;
    position: relative;
    cursor: pointer;
}



/*------------------------------- 18-06-14 End --------------------------*/

/*------------------------------- 19-06-14 --------------------------*/

.compulsory_img {
    width: 88px;
    height: 31px;
    background: url(../../Content/images/icons_set.png) no-repeat -318px -175px;
    position: relative;
    cursor: pointer;
    /*-webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;*/
}

.optional_img {
    width: 88px;
    height: 31px;
    background: url(../../Content/images/icons_set.png) no-repeat -407px -175px;
    position: relative;
    cursor: pointer;
    /*-webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;*/
}

.disableClass_img {
    width: 88px;
    height: 31px;
    background: url(../../Content/images/icons_set.png) no-repeat -318px -202px;
    position: relative;
}

.disable_switch_img {
    width: 88px;
    height: 31px;
    background: url(../../Content/images/icons_set.png) no-repeat -407px -206px;
    position: relative;
    cursor: pointer;
}
/*------------------------------- 19-06-14 End --------------------------*/

/*------------------------------- 22-06-14 --------------------------*/


.quote_1_img {
    width: 26px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -113px -13px;
}

.quote_2_img {
    width: 26px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -140px -13px;
}


/*------------------------------- 22-06-14 End --------------------------*/
/*------------------------------- 23-06-14 --------------------------*/

.new_update_img {
    width: 45px;
    height: 45px;
    background: url(../../Content/images/icons_set.png) no-repeat -170px -3px;
    position: relative;
    top: 2px;
}

.notification_cross_img {
    width: 10px;
    height: 10px;
    background: url(../../Content/images/icons_set.png) no-repeat -262px 0px;
    cursor: pointer;
}


/*------------------------------- 23-06-14 End --------------------------*/

/*------------------------------- 29-06-14 --------------------------*/

.active_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -75px -29px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.review_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -96px -29px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.breadCrumArrowClose_img {
    width: 23px;
    height: 23px;
    background: url(../../Content/images/icons_set.png) no-repeat -324px 0px;
    cursor: pointer;
}

.breadCrumArrowOpen_img {
    width: 23px;
    height: 23px;
    background: url(../../Content/images/icons_set.png) no-repeat -348px 0px;
    cursor: pointer;
}

.breadCrumArrowSep_img {
    width: 21px;
    height: 40px;
    background: url(../../Content/images/icons_set.png) no-repeat -398px 0px;
    position: relative;
    margin: 0px 0px -15px 0px;
}

.disableClass_img {
    width: 88px;
    height: 26px;
    background: url(../../Content/images/icons_set.png) no-repeat -318px -202px;
    position: relative;
}

.folderIcon_img {
    width: 15px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -375px -76px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.labIconSmall_img {
    width: 9px;
    height: 11px;
    background: url(../../Content/images/icons_set.png) no-repeat -391px -76px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}


/*------------------------------- 29-06-14 End --------------------------*/

/*------------------------------01-07-2014------------------------------*/
.folderIcon_img {
    width: 18px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -373px -76px;
    margin: 2px 1px 0px 1px;
}

.labIconSmall_img {
    width: 9px;
    height: 11px;
    background: url(../../Content/images/icons_set.png) no-repeat -391px -76px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.tick_small {
    width: 10px;
    height: 8px;
    background: url(../../Content/images/icons_set.png) no-repeat -598px 0px;
    cursor: pointer;
}

/*-------------------------------01-07-2014  END -----------------------*/
.new_update_img {
    width: 45px;
    height: 45px;
    background: url(../../Content/images/icons_set.png) no-repeat -170px -3px;
    position: relative;
    top: 2px;
}

.notification_cross_img {
    width: 10px;
    height: 10px;
    background: url(../../Content/images/icons_set.png) no-repeat -262px 0px;
    cursor: pointer;
}

.moreBox_small {
    width: 21px;
    height: 11px;
    background: url(../../Content/images/icons_set.png) no-repeat -576px 0px;
    cursor: pointer;
    margin: 4px 0px;
}
/*------------------------------- 03-07-14 --------------------------*/

.PenEnable_img {
    width: 38px;
    height: 34px;
    background: url(../../Content/images/icons_set.png) no-repeat -420px 0px;
    cursor: pointer;
}

.PenActive_img {
    width: 38px;
    height: 36px;
    background: url(../../Content/images/icons_set.png) no-repeat -459px 0px;
    cursor: pointer;
}

.PenEnableSmall_img {
    width: 38px;
    height: 30px;
    background: url(../../Content/images/icons_set.png) no-repeat -498px 0px;
    cursor: pointer;
    top: -2px;
}

.PenActiveSmall_img {
    width: 38px;
    height: 30px;
    background: url(../../Content/images/icons_set.png) no-repeat -537px 0px;
    cursor: pointer;
    top: -2px;
}

.backToExport_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -505px -55px;
    cursor: pointer !important;
    opacity: 1;
    position: static;
    display: inline-block;
    margin: 0px 5px 0px 0px !important;
}

body.rtl .backToExport_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -505px -55px;
    cursor: pointer !important;
    opacity: 1;
    position: static;
    display: inline-block;
    margin: 0px 5px 0px 8px !important;
}

.reference_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -547px -55px;
    cursor: pointer;
}

.rejected_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -589px -55px;
    cursor: pointer;
}

.rejectedDisable_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -443px -78px;
    cursor: pointer;
}

.review_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -401px -78px;
    cursor: pointer;
}

.reviewDisable_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -422px -78px;
    cursor: pointer;
}

/*.itemHistory_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat  -632px -78px;
    cursor: pointer;
}

.itemHistoryDisable_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat  -632px -78px;
    cursor: pointer;
}*/
.activeDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -117px -29px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.resolved_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -568px -55px;
    cursor: pointer;
    top: -1px;
    margin-right: 2px;
}


/*------------------------------- 03-07-14 End --------------------------*/

.return_taskBtn {
    background: #fdd761 url(../../Content/images/icons_set.png) no-repeat -192px -215px;
    width: 121px;
    height: 34px;
    border: 0px;
    font-size: 10pt;
    font-family: Verdana, Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", sans-serif;
    color: #000;
    position: relative;
    text-align: left;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

    .return_taskBtn:hover {
        background: #ceb053 url(../../Content/images/icons_set.png) no-repeat -192px -250px;
    }

.revertIcon_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -485px -78px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}
/*-----------------------------------------17-07-2014------------------------------------------------------*/
.FullViewBtn {
    background: #eb5055 url(../../Content/images/icons_set.png) no-repeat 0px -233px;
    width: 108px;
    height: 34px;
    border: 0px;
    font-size: 10pt;
    font-family: Verdana, Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", sans-serif;
    color: #fff;
    position: relative;
    text-align: left;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-top: 1px;
}

    .FullViewBtn:hover {
        background: #cd464a url(../../Content/images/icons_set.png) no-repeat 0px -268px;
    }
/*-------------------------------------17-07-2014  END-------------------------------------------------------*/

.DeleteMediumIcon_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -42px -55px;
    cursor: pointer;
}

.editOptionIcon_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -477px -241px;
    cursor: pointer;
}

.OptionInfoIcon_img {
    width: 24px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -449px -241px;
    cursor: pointer;
}

.editMediumIcon_img {
    width: 28px;
    height: 29px;
    background: url(../../Content/images/icons_set.png) no-repeat -499px -100px;
    cursor: pointer;
}

.forward_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -590px -78px;
    cursor: pointer;
}

.forwardDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -611px -78px;
    cursor: pointer;
}

.backToExportDisable_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -526px -55px;
    cursor: pointer;
}

.addDisable_img {
    width: 16px;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -609px 0px;
    position: relative;
    cursor: pointer;
}

.reclassify_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -528px -100px;
    cursor: pointer;
    margin-right: 2px;
    top: -1px;
}

.widrwl_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -549px -100px;
    cursor: pointer;
}

.viewFull_img {
    width: 67px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -501px -145px;
    cursor: pointer;
}

.widrwlDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -570px -100px;
}

.view_reference {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -548px -78px;
    cursor: pointer;
}

.assign_speciality_img {
    width: 18px;
    height: 15px;
    background: url(../../Content/images/icons_set.png) no-repeat -576px -12px;
    margin: 0px 2px 0px 4px;
    top: 3px;
}

.file_icon_img {
    width: 12px;
    height: 17px;
    background: url(../../Content/images/icons_set.png) no-repeat -569px -145px;
}

.view_img_icon {
    width: 94px;
    padding: 1px;
    text-align: right;
    cursor: pointer;
    height: 16px;
    background: url(../../Content/images/icons_set.png) no-repeat -582px -145px;
    color: #138871;
}

.close_btn_icon {
    width: 37px;
    height: 34px;
    background: url(../../Content/images/icons_set.png) no-repeat -496px -175px;
    position: absolute;
    right: 0;
    display: inline-block;
    cursor: pointer;
}

.invite_author_disabled {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -591px -100px;
}

.table_detail_icon {
    width: 19px;
    height: 15px;
    background: url(../../Content/images/icons_set.png) no-repeat -534px -175px;
    cursor: pointer;
}

.table_detail_active_icon {
    width: 19px;
    height: 15px;
    background: url(../../Content/images/icons_set.png) no-repeat -534px -194px;
    cursor: pointer;
}

.table_detail_close_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -42px -55px;
}

.table_detail_icon_session {
    width: 19px;
    height: 15px;
    background: url(../../Content/images/RelatedSessionIcon.png) no-repeat -534px -175px;
    cursor: pointer;
}

.table_detail_active_icon_session {
    width: 19px;
    height: 15px;
    background: url(../../Content/images/RelatedSessionIcon.png) no-repeat -534px -194px;
    cursor: pointer;
}

.table_detail_close_icon {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -42px -55px;
}

/* Start || Talha Tanweer || 6 november 2016  */

.readyForContentReview_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -590px -78px;
    cursor: pointer;
}

.readyForContentReviewDisable_img {
    width: 20px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -611px -78px;
    cursor: pointer;
}


.forward_ToContentReviewer_img {
    width: 23px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -334px -31px;
    cursor: pointer;
}

.forward_ToContentReviewerDisable_img {
    width: 23px;
    height: 20px;
    background: url(../../Content/images/icons_set.png) no-repeat -356px -31px;
    cursor: pointer;
}

/* End   || Talha Tanweer || 6 november 2016  */

.ViewResultIcon_img {
    width: 20px;
    height: 22px;
    background: url(../../Content/images/icons_set.png) no-repeat -249px -54px;
    margin: 2px 1px 0px 1px;
    cursor: pointer;
}

.close_Comparison_img {
    width: 12px;
    height: 13px;
    background: url(../../Content/images/icons_set.png) no-repeat -623px 1px;
    cursor: pointer;
}

/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px; 
	border: 1px solid #000;
	background:#333;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-size: 14px;
	line-height: 14px;
	padding: 8px 8px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
    .tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
        /*EducationalDomaineVal*/ /*Mr. Waqas asked 2021-05-17*/
        /* border-color: ... !important; */
    }


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}


.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 50px;
    left: 0;
    right: 0;
    text-align:left;
    z-index:999999999999999;
}
    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }
    .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
     }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/*autocomplete end */
