html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Space out content a bit */

html,
body {
    font-family: 'LatoWebMedium', sans-serif;
    height: 100%;
    color: gray;
    font-size: 16px;
    /*background: -moz-linear-gradient(top, #c1d9d8, #fffdee) no-repeat #fffdee;
    background: -webkit-gradient(linear, left top, left bottom, from(#c1d9d8), to(#fffdee)) no-repeat #fffdee;
    */
    background: #c1d9d8; /*fallback for non-CSS3 browsers*/
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#CCC) to(#EEE)); /*old webkit*/
    background: -webkit-linear-gradient(#c1d9d8, #fffdee); /*new webkit*/
    background: -moz-linear-gradient(#c1d9d8, #fffdee); /*gecko*/
    background: -ms-linear-gradient(#c1d9d8, #fffdee); /*IE10*/
    background: -o-linear-gradient(#c1d9d8, #fffdee); /*opera 11.10+*/
    background: linear-gradient(#c1d9d8, #fffdee); /*future CSS3 browsers*/
    -pie-background: linear-gradient(#c1d9d8, #fffdee); /*PIE*/
    behavior: url(PIE.htc);
    background-attachment: fixed;
}

a {
    color: rgb(23, 187, 212);
}

.wrapper {
    margin: 0 30px;
    /* center, not in IE5 */
    /*max-width: 1200px;*/
    /* 20px smaller, to fit the paddings on the sides */
    padding-right: 10px;
    padding-left: 10px;
    /* ...  */
    position: relative;
    /* needed for footer positioning*/
    height: auto !important;
    /* real browsers */
    height: 100%;
    /* IE6: treaded as min-height*/
    min-height: 100%;
    /* real browsers */
}

body .main-header {
    display: block;
    position: relative;
    min-height: 160px;
    margin: 20px;
    padding-top: 70px;
    text-align: center;
}

body .header-brand {
    text-align: center;
    line-height: 160px;
    font-family: "LatoWebLight", sans-serif;
    font-size: 4em;
    letter-spacing: 0.13em;
    color: #056472;
    padding: 10px 30px;
    border-bottom: 3px solid #056472;
    text-transform: uppercase;
}

body .header-brand:hover {
    text-decoration: none;
}

body .header-logo img {
    height: 160px;
    position: absolute;
    left: 0;
    border: 20px solid white;
    border-radius: 20px 20px 0;
}

body .header-user {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 10px;
    font-weight: bold;
    color: gray;
}

body .header-user>span {
    float: right;
    margin-left: 30px;
    color: gray;
}

body .header-user>span a {
    color: gray;
}

.header-user>span span.lbl {
    border-right: 1px solid gray;
    padding: 3px 6px;
    margin-right: 5px;
    font-weight: bold;
}

ul.navigation {
    background-color: #09434c;
    color: white;
    font-family: "LatoWebBold", sans-serif;
    font-size: 0.7em;
    letter-spacing: 0.1em;
    list-style: none;
    display: flex;
    /*width: 90%;*/
    margin: 25px auto 20px;
    justify-content: flex-start;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.navigation>li {
    position: relative;
}

.navigation>li>a,
.navigation>li>label {
    padding: 8px 15px 5px;
    margin-bottom: 0;
    display: inline-block;
    color: white;
    text-decoration: none;
}
.navigation>li>label>a {
    color: white;
    text-decoration: none;
}

.navigation>li.active {
    background-color: #F63246;
    box-shadow: 0 0 10px 0px #00000099;
}

.navigation>li.active>a:before,
.navigation>li.active>label:before {
    border-top: 10px solid #F63246;
    display: block;
    content: " ";
    position: absolute;
    top: -9px;
    width: 100%;
    left: 0;
    border-radius: 10px 10px 0 0;
}

.navigation>li>a:hover,
.navigation>li>label:hover {
    background-color: #F63246;
}

.navigation>li>a:hover::after {
    background-color: hsl(198, 100%, 78%);
}

.navigation>li.dropdown .caret {
    margin-right: 8px
}

.navigation>li.dropdown:hover ul.dropdown-menu {
    display: block;
    margin: 0;
}

.navigation>li.dropdown>ul.dropdown-menu>li.selected a {
    background-color: #F63246;
    border-radius: 0 10px 10px 0;
    margin-right: 20px;
    box-shadow: 1px 0px 6px 2px #00000066;
}

.navigation li#header-user {
    margin-left: auto;
    padding: 8px 0 5px;
}

#header-user>span {
    display: inline-block;
    padding: 0 10px;
    border-left: 2px solid white;
}

#header-user>span:first-child {
    border-left: none;
}

#header-user>span>a {
    padding: 0;
    color: white;
}

.livechat-room .footer .message-bar .input-wrapper textarea {
    overflow-x: hidden;
}

/*--------------------------------------------*/

table#history td.changed {
    background-color: #02d50229;
    font-weight: bold;
}

/*--------------------------------------------*/

.alert-top {
    position: fixed;
    top: 84px;
    left: 0;
    display: block;
    width: 100%;
    z-index: 999;
}

footer.footer {
    width: 100%;
}

footer.footer div {
    height: 40px;
    margin-top: 20px;
    padding: 5px 50px;
    color: rgb(23, 187, 212);
    font-size: 11pt;
}

#toolbar table th {
    min-width: 20px;
    font-size: 11px;
}

#toolbar table td .form-control {
    line-height: 12px;
    padding: 2px 6px;
    font-size: 11px;
    min-height: 22px;
    height: 22px !important;
}

.fixed-table-toolbar .columns label {
    white-space: nowrap;
}

.fixed-table-toolbar .columns label > div {
    display: initial;
}

#main_buttons_container {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

a.main_button,
div.main_button {
    font-family: "LatoWebMedium";
    font-size: 20pt;
    hyphens: manual;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 200px;
    height: 200px;
    margin: 15px;
    color: #fff;
    padding: 35px;
    border-radius: 0 25px 25px;
    background: #056472;
    background: -moz-linear-gradient(top, #056472 0%, #024e5a 100%);
    background: -webkit-linear-gradient(top, #056472 0%, #024e5a 100%);
    background: linear-gradient(to bottom, #056472 0%, #024e5a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#056472', endColorstr='#024e5a', GradientType=0);
    -webkit-transition: background 1s, border-radius 0.4s;
    transition: background 1s, border-radius 0.4s;
}

a.main_button.disabled,
div.main_button.disabled {
    background: hsl(198, 0%, 67%);
    color: gray;
    cursor: not-allowed;
    background: #056472;
    background: -moz-linear-gradient(top, hsl(198, 0%, 67%) 0%, hsl(198, 0%, 47%) 100%);
    background: -webkit-linear-gradient(top, hsl(198, 0%, 67%) 0%, hsl(198, 0%, 47%) 100%);
    background: linear-gradient(to bottom, hsl(198, 0%, 67%) 0%, hsl(198, 0%, 47%) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='hsl(198, 0%, 67%)', endColorstr='hsl(198, 0%, 47%)', GradientType=0);
}

a.main_button:hover,
div.main_button:hover {
    /*font-size: 20px;*/
    text-decoration: none;
    border-radius: 25px 25px 0;
    background: #024e5a;
    background: -moz-linear-gradient(top, #024e5a 0%, #554dc9 100%);
    background: -webkit-linear-gradient(top, #024e5a 0%, #554dc9 100%);
    background: linear-gradient(to bottom, #024e5a 0%, #554dc9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#024e5a', endColorstr='#554dc9', GradientType=0);
    /*transition: font-size 0.2s cubic-bezier(0.4, 0, 0.2, 1);*/
}

.main_button span {
    text-align: center;
}

.main_button.disabled span {
    color: white;
}

.page_head {
    background: #09434c;
    line-height: 1.4;
    color: white;
    text-align: center;
    letter-spacing: 0.13em;
    min-height: 50px;
    padding: 15px;
    box-sizing: border-box;
    font-family: "LatoWebMedium", sans-serif;
    text-transform: uppercase;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px 0px 10px 0px #565656;
    font-size: 1.2em;
}

.fixed-table-container {
    border: none !important;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th {
    padding: 3px;
    font-size: 0.8em;
    font-weight: normal;
}

.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 3px;
    font-size: 0.8em;
}


.bootstrap-table .table > tbody > tr.status_archived > td,
.bootstrap-table .table > tbody > tr.sale_service_past > td {
    background-color: #cccccc !important;
    color: black !important;
}

.bootstrap-table .table > tbody > tr.premium > td {
    background-color: gold !important;
}
.bootstrap-table .table > tbody > tr.status_archived.premium > td {
    background-color: #a99400 !important;
}
label.control-label[for=exam_premium] {
    color: gold;
}
.bootbox.modal.premium .modal-content {
    border: 3px solid gold;
    box-shadow: 0px 0px 8px 6px gold;
}
.form-group.premium label.control-label {
    color: gold;
}
.form-group.premium .form-control.select_edit {
    background: #ffea7b !important;
}


@media only screen and (max-width: 1367px) {
    .table-condensed>thead>tr>th,
    .table-condensed>tbody>tr>th,
    .table-condensed>tfoot>tr>th {
        padding: 2px;
        font-size: 0.7em;
    }
    .table-condensed>thead>tr>td,
    .table-condensed>tbody>tr>td,
    .table-condensed>tfoot>tr>td {
        padding: 2px;
        font-size: 0.7em;
    }
}

.table-condensed>thead>tr>th button,
.table-condensed>tbody>tr>th button,
.table-condensed>tfoot>tr>th button,
.table-condensed>thead>tr>td button,
.table-condensed>tbody>tr>td button,
.table-condensed>tfoot>tr>td button {
    padding: 4px 6px;
    font-size: 0.9em;
}

.table-condensed div.table-actions .btn-xs,
.table-condensed div.table-actions.btn-group-xs .btn {
    padding: 0 3px;
    font-size: 0.9em;
    margin-top: 2px;
    border-radius: 4px;
}

.ml5 {
    margin-left: 2px;
}

.ml10 {
    margin-left: 7px;
}

.mr5 {
    margin-right: 2px;
}

.mr10 {
    margin-right: 7px;
}

div.content_wrapper {
    display: block;
    margin: auto;
}

div.content_wrapper.pop {
    width: initial;
    margin: 10px;
}

div.content_wrapper .page_wrapper {
    background-color: #066371;
    padding: 50px;
    box-shadow: 0px 0px 10px 0px #565656;
    border-radius: 0 0 20px 20px;
}

div.content_wrapper .page_wrapper_transparent {
    background-color: rgba(255, 255, 255, 0.57);
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px 0px #565656;
    padding: 25px;
}

div.content_wrapper>.bootstrap-table {
    background-color: rgba(255, 255, 255, 0.57);
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px 0px #565656;
    padding: 25px;
}

td.form_label.required::after {
    content: "*";
    color: red;
    font-weight: bold;
}

ul.custom_list {
    list-style-type: none;
    padding-left: 0;
    margin: 0px;
}

ul.custom_list li {
    margin: 3px 0;
    padding: 3px 5px 3px 5px;
    border-radius: 0;
    border: 1px hsl(182, 100%, 41%) solid;
    background: hsla(182, 100%, 41%, 0.1);
    font-size: 0.8em;
    color: white;
}

ul.custom_list li .item-remove {
    float: left;
    margin: 0 3px;
}

ul.custom_list.new_files li {
    border: 2px hsl(147, 100%, 41%) dashed;
    background: hsla(147, 100%, 41%, 0.3);
}

ul.custom_list li.to_remove {
    border: 2px hsl(10, 100%, 41%) dashed;
    background: hsla(10, 100%, 41%, 0.3);
}

.files_edit tbody.files .name {
    min-width: 150px;
    display: block;
}

.files_edit tbody.files .size {
    min-width: 100px;
    display: block;
}

.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
    padding: 0;
}

.form-group {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
}

.form-radio-group,
.panel-default {
    padding: 10px 20px;
    border: 1.5px solid #ffffff40;
    border-radius: 20px;
}

.field-info-wrapper {
    margin: 0 30px;
    border: 1.5px solid #ffffff40;
    border-radius: 0 0 5px 8px;
    padding: 0 10px;
    font-size: 0.9em;
    border-top: none;
    color: #ffffffcc;
}

label.control-label {
    padding: 2px 14px !important;
    text-align: right !important;
    color: white;
    line-height: 32px;
    font-weight: normal;
}

label.control-label.col-sm-1,
label.control-label.col-sm-2,
label.control-label.col-sm-3,
label.control-label.col-sm-4,
label.control-label.col-sm-5,
label.control-label.col-sm-6,
label.control-label.col-sm-7,
label.control-label.col-sm-8,
label.control-label.col-sm-9,
label.control-label.col-sm-10,
label.control-label.col-sm-11 {
    border-right: 0 !important;
}

.btn:active,
.btn.active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group-btn .btn {
    height: 36px;
    line-height: 24px;
}

.form-control {
    /*height: 36px !important;*/
}

.form-control.bool_edit {
    min-height: 24px !important;
    height: 24px !important;
    width: 24px;
    margin: 9px;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control,
.multiple_custom-container,
.multiple_emails-container,
.fstElement {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 0.9em;
    color: rgb(23, 187, 212);
    min-height: 36px;
    border-radius: 18px !important;
    border: 1px solid rgb(23, 187, 212) !important;
    background: white !important;
    -webkit-box-shadow: outset 0 3px 8px rgba(0, 0, 0, .4);
    box-shadow: outset 0 3px 8px rgba(0, 0, 0, .4);
}

.form-control.int_edit {
    border-radius: 0 !important;
}

input.form-control.dropdown-toggle.editdropdown_edit {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.form-control[readonly],
.multiple_custom-container[readonly],
.multiple_emails-container[readonly],
.fstElement[readonly] {
    color: hsla(0, 0%, 55%, 1);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #cccccc !important;
    background: hsla(0, 0%, 69%, 1) !important;
    background: -moz-linear-gradient(top, hsla(0, 0%, 69%, 1) 0%, hsla(0, 0%, 80%, 1) 10px, hsla(0, 0%, 90%, 1) 100%) !important;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, hsla(0, 0%, 69%, 1)), color-stop(10px, hsla(0, 0%, 80%, 1)), color-stop(100%, hsla(0, 0%, 90%, 1))) !important;
    background: -webkit-linear-gradient(top, hsla(0, 0%, 69%, 1) 0%, hsla(0, 0%, 80%, 1) 10px, hsla(0, 0%, 90%, 1) 100%) !important;
    background: -o-linear-gradient(top, hsla(0, 0%, 69%, 1) 0%, hsla(0, 0%, 80%, 1) 10px, hsla(0, 0%, 90%, 1) 100%) !important;
    background: -ms-linear-gradient(top, hsla(0, 0%, 69%, 1) 0%, hsla(0, 0%, 80%, 1) 10px, hsla(0, 0%, 90%, 1) 100%) !important;
    background: linear-gradient(to bottom, hsla(0, 0%, 69%, 1) 0%, hsla(0, 0%, 80%, 1) 10px, hsla(0, 0%, 90%, 1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='hsla(0, 0%, 69%, 1)', endColorstr='hsla(0, 0%, 90%, 1)', GradientType=0) !important;
}

.panel-body {
    padding: 0 !important;
}

.form-group.multiple_custom-container {
    display: block;
}

.form-group.multiple_custom-container .btn {
    height: 1.6em;
    line-height: 0.7em;
    margin: 3px 0 3px 5px;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.form-group.multiple_custom-container select.multiple_custom-input {
    line-height: 0.7em;
    height: unset;
    display: inline-block;
    width: max-content;
    min-height: unset;
    padding-top: 3px;
    padding-bottom: 4px;
    margin: 3px 5px 3px 0;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.multiple_custom-container,
.multiple_emails-container,
.fstElement.fstMultipleMode {
    padding: 4px !important;
}

.fstElement.fstMultipleMode.padding-top16 {
    padding-top: 16px !important;
}

.fstElement.fstSingleMode {
    padding: 3px !important;
}

.multiple_custom-container ul {
    margin: 0 !important;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: lightgray;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: lightgray;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: lightgray;
}

table.tooltip-list td {
    padding: 1px 5px;
}

div.mce-tinymce {
    box-sizing: border-box;
}

label.radio_option input[type="radio"],
label.radio_option input[type="checkbox"] {
    margin: 4px 4px 0 0;
}

.typeahead {
    z-index: 1051;
}

.form-group {
    overflow: visible;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
}

.content_wrapper>.form-group:last-of-type {
    min-height: 80px;
}

.content_wrapper>.form-group:last-of-type:after {
    content: "w";
    height: 0px;
    opacity: 0;
    display: initial;
}

span.exam_block {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    margin: 0;
}
span.exam_block.exam_premium{
    border: 1px solid gold;
    box-shadow: 0px 0px 4px 2px gold;
    background-color: #ffd7001a;
}

span.exam_block>span {
    display: inline-block;
    white-space: nowrap;
    border-radius: 5px;
    padding: 1px 4px;
    height: 22px;
    line-height: 16px;
    margin-right: 2px;
}

@media only screen and (max-width: 1367px) {
    span.exam_block>span {
        margin-right: 2px;
        font-size: 0.6em;
        font-weight: bold;
    }
}

span.exam_block .label-vendor {
    border: 2px solid hsl(333, 50%, 30%);
}

span.exam_block .label-product {
    border: 2px solid hsl(276, 18%, 45%);
}

span.exam_block .label-course {
    border: 2px solid hsl(200, 90%, 35%);
}

span.exam_block .label-exam {
    border: 2px solid hsl(190, 84%, 41%);
}

.user_avatar {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    background-color: rgba(0, 0, 0, 0.25);
}

.avatar-edit .user_avatar {
    width: 100px;
    height: 100px;
    margin-top: 10px;
}

.user_avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 40px;
}

.avatar-edit .user_avatar img {
    max-width: 100px;
}

.has-error input {
    -webkit-transition: background 0.5s ease-in-out;
    -ms-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out;
}

.has-error input.error-background,
.has-error textarea.error-background,
.has-error select.error-background {
    background: #ff000054 !important;
}

#gallerydate {
    display: inline-block;
    width: fit-content;
    text-align: center;
}

#gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    margin-bottom: 10px;
}

div.thumb {
    border: 1px solid #ccc;
    position: relative;
}

div.thumb:hover {
    border: 1px solid #777;
}

div.thumb img {
    width: 100%;
    height: auto;
}

div.thumb div.desc {
    width: 100%;
    padding: 0 2px 0 30px;
    font-size: 10px;
    text-align: center;
    position: absolute;
    background: #00000075;
    color: white;
    bottom: 0;
    overflow-y: hidden;
    height: 0;
}

.thumb:hover .desc {
    min-height: 32px;
    height: initial;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.thumb div.desc a {
    position: absolute;
    left: 4px;
    font-size: 20px;
    color: white;
    bottom: 0px;
}

div.thumb.to_remove{
    border: 2px hsl(10, 100%, 41%) dashed;
}
div.thumb.to_remove img{
    outline: 200px solid hsla(10, 100%, 41%, 0.3) !important;
    outline-offset: -200px;
    overflow: hidden;
}

.filter-form label {
    /*min-width: 200px;*/
}

.filter-form .string {
    /* width: 200px;*/
}

.filter-form .date-from,
.filter-form .date-to {
    /*width: 1200px;*/
}

.filter-form .dategrp {
    display: inline-table;
    padding: 10px;
    border: 1.5px solid #ffffff40;
    border-radius: 20px;
}

a.report-edit {
    right: 10px;
    position: absolute;
}

span.exam_status {
    color: white;
    padding: 1px 3px;
    border-radius: 16px;
    display: block;
}

td.exam_status_stable span.exam_status {
    background-color: #1cc96a;
}

td.exam_status_unstable span.exam_status {
    background-color: #cf2222;
}

td.exam_status_undefined span.exam_status {
    background-color: #FFEB3B;
    color: gray;
}

td.exam_status_archived span.exam_status {
    background-color: gray;
    color: black;
}

.glyphicon-none:before {
    content: "\2122";
    color: transparent !important;
}

.glyphicon.disabled,
*.disabled>.glyphicon {
    cursor: not-allowed;
    opacity: 0.6 !important;
    filter: grayscale( 100%);
    -webkit-filter: grayscale( 1);
}

.fstElement.fstMultipleMode,
.fstElement.fstSingleMode {
    font-size: 9px !important;
}

.fstMultipleMode .fstControls {
    width: 100% !important;
}

/*----------------------------------------*/

#loginbox {
    margin: 50px auto;
    display: table;
    text-align: -webkit-center;
    color: white;
}

#loginbox #logo {
    background: white;
    border-radius: 30px 0 0 30px;
    display: table-cell;
    background-image: url("/logo.png");
    min-width: 160px;
    background-size: 100px;
    background-repeat: no-repeat;
    background-position: center;
}

#loginbox #formarea {
    display: table-cell;
    background: #056472;
    background: -moz-linear-gradient(top, #056472 0%, #024e5a 100%);
    background: -webkit-linear-gradient(top, #056472 0%, #024e5a 100%);
    background: linear-gradient(to bottom, #056472 0%, #024e5a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#056472', endColorstr='#024e5a', GradientType=0);
    border-radius: 0 30px 30px 0;
    padding: 40px 60px 20px 60px;
}

#loginbox input {
    font-family: 'LatoWebMedium', sans-serif;
}

#loginbox label {
    font-weight: normal;
}

#loginbox :not(.btn)>.glyphicon {
    padding-right: 10px;
    font-size: 24px;
    display: table-cell;
    vertical-align: middle;
}

#loginbox .login-form-control {
    display: block;
    /*width: 100%;*/
    padding: 2px 12px;
    margin: 6px;
    font-size: 13pt;
    line-height: 1.42857143;
    color: rgb(23, 187, 212);
    min-height: 33px;
    border-radius: 16px !important;
    border: 1px solid rgb(23, 187, 212) !important;
    background: white !important;
    -webkit-box-shadow: outset 0 3px 8px rgba(0, 0, 0, .4);
    box-shadow: outset 0 3px 8px rgba(0, 0, 0, .4);
}

#loginbox #captcha {
    margin: 30px 0;
}

#loginbox #captcha>div {
    background: white;
    border-radius: 16px;
    padding: 10px;
    min-height: 96px;
}

#loginbox #captcha .BDC_CaptchaDiv {
    margin: auto !important;
}

#loginbox #CaptchaCode {
    color: black;
}

#loginbox #formarea .btn {
    border-radius: 16px;
    margin-top: 10px;
}

#loginbox .checkbox>label {
    text-transform: lowercase;
}

#loginbox #login-error {
    color: red;
    text-shadow: 1px 1px 1px black;
}

#loginbox #captcha span.incorrect {
    color: red;
    display: block;
}

#loginbox .form-group {
    border: none;
}

.fstElement.fstMultipleMode.fstResultsOpened {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.fstMultipleMode .fstQueryInput {
    border: 1px solid #e2e2e2;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.fstMultipleMode.fstActive .fstResults {
    border-radius: 0 0 25px 25px;
    border: 1px solid rgb(23, 187, 212) !important;
}

.input-group-addon {
    color: rgb(23, 187, 212);
    min-height: 36px;
    border-radius: 18px !important;
    border: 1px solid rgb(23, 187, 212) !important;
}

.input-group-addon:last-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

input.form-control.date_edit:not([readonly]) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

input.form-control.error {
    color: red;
}

.terms ul {
    list-style-type: square;
    list-style-position: outside;
    margin: 10px 20px;
}

.terms ul li {
    margin: 10px 0;
}

#header-user .popover {
    max-width: 320px;
    width: 320px;
    color: black;
    font-size: 15px
}

.ui-datepicker {
    background-color: rgb(9, 88, 100);
    padding: 10px;
    border: none;
    color: white;
}

.ui-datepicker-header {
    background-color: #17bbd4;
    border: none;
}

.ui-datepicker-year {
    color: white;
}

.ui-datepicker .ui-state-default.ui-state-highlight {
    background-color: #d1c00e;
}

.ui-datepicker .ui-state-default.ui-state-hover {
    background-color: red;
    border-radius: 30% 35% 0;
}

.ui-datepicker .ui-state-default {
    background-color: #17bbd4;
    border: none;
    text-align: center;
    margin: 3px;
    border-radius: 0 35% 30%;
    color: white;
    font-family: "LatoWebMedium", sans-serif;
    font-size: 0.9em;
    box-shadow: 0px 1px 4px 0px black;
}

th[data-field="DurationDays"]>div.th-inner>div.rotation {
    transform: translate(15px, 38px) rotate(270deg);
    width: 5px;
    line-height: 12px;
    font-size: 0.8em;
    height: 40px;
}

th[data-field="VCEAssigned"]>div.th-inner>div.rotation,
th[data-field="PDFAssigned"]>div.th-inner>div.rotation {
    transform: translate(13px, 38px) rotate(270deg);
    width: 5px;
    line-height: 12px;
    height: 40px;
}

th[data-field="FeedbackID"]>div.th-inner>div.rotation,
th[data-field="FeedbackReminder"]>div.th-inner>div.rotation,
th[data-field="PostponesCount"]>div.th-inner>div.rotation,
th[data-field="FeedbackExamScore"]>div.th-inner>div.rotation,
th[data-field="FeedbackExamResult"]>div.th-inner>div.rotation,
th[data-field="isPremium"]>div.th-inner>div.rotation
 {
    transform: translate(15px, 38px) rotate(270deg);
    width: 5px;
    line-height: 12px;
    font-size: 0.8em;
    height: 40px;
}

span.exam-result{
    display: block;
    background: #a7a7a7;
    color: white;
    border-radius: 10px;
}
span.exam-result.undefined{
    background-color: #FFEB3B;
    color: gray;
}
span.exam-result.pass{
    background-color:rgb(5, 214, 5);
}
span.exam-result.fail{
    background-color: rgb(247, 43, 43);
}

span.risk-level{
    display: block;
    background: #a7a7a7;
    color: white;
    border-radius: 10px;
}
span.risk-level.medium{
    background-color: #FFEB3B;
    color: gray;
}
span.risk-level.low{
    background-color:rgb(5, 214, 5);
}
span.risk-level.high{
    background-color: rgb(247, 43, 43);
}


span.info-span{
    border: 1.5px solid #ffffff40;
    border-radius: 18px;
    padding: 0px 10px;
    font-size: 0.9em;
    color: white;
    min-height: 36px;
    display: inline-block;
    line-height: 36px;
}
span.info-span.cred-sent{
    color: rgb(5, 214, 5);
}
span.info-span.cred-scheduled{
    color: #FFEB3B;
}



input.btn-back{
    border: 1.5px solid #ffffffb0;
    position: absolute;
    left: 25px;
    padding: 2px 8px;
    font-weight: bold;
}

.sl-wrapper .sl-download{
    right: 80px;
}
.sl-wrapper .sl-download,
.sl-wrapper .sl-close {
    border: 1px solid #ffffff5c;
    text-align: center;
}
.sl-wrapper .sl-download:hover,
.sl-wrapper .sl-close:hover{
    background: #ffffff5c;
}





#debug{
    position: fixed;
    width: 500px;
    height: 100%;
    z-index: 2000;
    top: 0;
    display: none;
    font-size: 0.7em;
    background: #5f1414;
    padding-top: 25px;
}
#debug_wrapper{
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 5px;
}
#debug_toggle{
    position: fixed;
    font-size: 13px;
    left: 10px;
    border: 1px solid gray;
    background-color: #883232;
    color: white;
    padding: 4px 8px 1px;
    /* transform: rotate(90deg); */
    top: -2px;
    border-radius: 0 0 3px 3px;
    cursor: pointer;
    z-index: 2999;
}
#debug_toggle:hover{
    top: -1px;
    background-color: #d64a4a;
}
#debug pre{
    display: block;
    padding: 9.5px;
    margin: 0px 4px 10px;
    font-size: 0.8em;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #ffffff;
    background-color: #ffffff1f;
    border: none;
    border-radius: 4px;
    text-shadow: -1px 1px 1px black;
}


#debug{
    position: fixed;
    width: 500px;
    height: 100%;
    z-index: 2000;
    top: 0;
    display: none;
    font-size: 0.7em;
    background: #5f1414;
    padding-top: 25px;
}
#debug_wrapper{
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 5px;
}
#debug_toggle{
    position: fixed;
    font-size: 13px;
    left: 10px;
    border: 1px solid gray;
    background-color: #883232;
    color: white;
    padding: 4px 8px 1px;
    /* transform: rotate(90deg); */
    top: -2px;
    border-radius: 0 0 3px 3px;
    cursor: pointer;
    z-index: 2999;
}
#debug_toggle:hover{
    top: -1px;
    background-color: #d64a4a;
}
#debug pre{
    display: block;
    padding: 9.5px;
    margin: 0px 4px 10px;
    font-size: 0.8em;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #ffffff;
    background-color: #ffffff1f;
    border: none;
    border-radius: 4px;
    text-shadow: -1px 1px 1px black;
}