@font-face {
    font-family: Montserrat Bold;
    src: url('/delta-app/core/assets/fonts/montserrat/Montserrat-Bold.otf');
}
@font-face {
    font-family: Montserrat;
    src: url('/delta-app/core/assets/fonts/montserrat/Montserrat-Regular.otf');
}
body {
    font-family: Montserrat;
    background-color: #fff;
    margin: 0px;
    padding: 0px;
    min-width: 375px !important;
    text-align: center;
}
a {
    color: #4a67b5;
}
b {
    font-weight: normal;
    font-family: Montserrat Bold;
}
.body_wrapper {
    display: inline-block;
    width: 100%;
    max-width: 900px;
    padding: 10px 10px 10px 10px;
    box-sizing: border-box;
    text-align: left;
}

/* FORM --> */
.form {
    margin: 0px auto;
    margin-bottom: 0px;
    padding: 0px 0px 15px 0px;
    border-radius: 0.25rem;
}
.form h2 {
    text-align: center;
    margin-top: 0px;

}
.form_field {
    margin: 10px 0px 10px 0px;
}
.form input[type=text], .form input[type=password] {
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    border-image: initial;
    font-family: SFS, Arial, sans-serif;
    box-sizing: border-box;
    -moz-appearance: none;
    font-size: 16px;
    transition: all 0.1s ease 0s;
    padding: 12px;
    width: 100%;
}
.form input[type=text]::placeholder, .form input[type=password]::placeholder {
    color: #666;
    font-size: 16px;
    font-weight: 100;
}
.form input[type=text]:focus, .form input[type=password]:focus {
    -webkit-box-shadow: 0px 0px 3px 0px rgba(43,171,49,1);
    -moz-box-shadow: 0px 0px 3px 0px rgba(43,171,49,1);
    box-shadow: 0px 0px 3px 0px rgba(43,171,49,1);
}
.form input[type=submit] {
    border-style: solid;
    border-width: 0px;
    border-radius: 4px;
    border-image: initial;
    background-color: #6C84CC;
    color: #fff;
    font-family: Montserrat;
    font-size: 18px;
    box-sizing: border-box;
    padding: 12px;
    width: 100%;
    margin: 15px 0px 15px 0px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: auto !important;
}
.form input[type=submit]:hover {
    background-color: #6278BA;
}
.form input[disabled=disabled] {
    background-color: #f4f4f4;
}
.form .form_bottom {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
}
.form .td_left {
    padding: 10px 0px 3px 0px;
}
.form div.forgot {
    display: table-cell;
    text-align: right;
    font-size: 14px;
    vertical-align: top;
}
.form div.signup a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-style: solid;
    border-width: 1px;
    border-color: #4a7893;
    border-radius: 4px;
    border-image: initial;
    background-color: #d0d9dd;
    color: #4a4f93;
    font-family: Montserrat !important;
    font-size: 18px;
    box-sizing: border-box;
    padding: 12px;
    width: 100%;
    margin: 10px 0px 0px 0px;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form div.signup a:hover {
    background-color: #e0ede9;
    color: #5faa81;
}
.form .td_title {
    font-size: 18px;
    font-family: Montserrat Bold;
    margin: 20px 0px 0px 0px;
}
.form div.signup {
    font-size: 14px;
    border-top: 1px solid transparent;
    padding-top: 15px;
}
.form div.input span {
    font-size: 14px;
    display: block;
    margin: 10px 0px 5px 5px;
}
.form_error {
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 7px;
    border:2px solid transparent;
}
.form_error p {
    margin:0px 0px 0px 0px;
    font-size: 14px;
}

input.apple-switch {
    position: relative;
    -webkit-appearance: none;
    outline: none;
    width: 50px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #fff;
    cursor: pointer;
}

input.apple-switch:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    background: transparent;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}
input.apple-switch:checked {

}
input.apple-switch:checked:after {
    left: 20px;
}
textarea:focus, input:focus{
    outline: none;
}
textarea {
    box-sizing: border-box;
}
.form textarea {
    width: 100%;
    height:100px;
    padding:10px;
    border-radius:3px;
    box-sizing: border-box;
    font-size:14px;
    font-family: Montserrat;
    border:2px solid transparent;
}
/* <-- FORM */

div.message {
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 7px;
    box-sizing: border-box;
    border:2px solid transparent;
}
div.message p {
    margin: 0px;
    padding: 0px;
}




.button {
    border:0px;
    padding:0px 25px;
    border-radius: 4px !important;
    box-sizing: border-box;
    cursor:pointer;
    font-size:14px;
    height:38px;
    line-height:36px;
    display:inline-block;
    text-decoration:none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    text-transform: none;
}
.button:hover {
    text-decoration:none !important;
}

div.table {
    display:table;
    width:100%;
}
div.table_user img {
    margin-right: 7px !important;
}
.right_side {
    width: 180px;
    padding: 0px 0px 0px 20px;
    display: none;
    vertical-align: top;
}
#filter_block {
    display: none;
    vertical-align: top;
}
div.td {
    display: table-cell;
    vertical-align: top;
}
div.th {
    display: table-cell;
    vertical-align: top;
}
div.table_row {
    display:table-row;
    width:100%;
}
.frame_menu_btn {
    width: 20px;
    height: 36px;
    margin-left:10px;
    float: right;
    background-image: url(/delta-app/core/assets/img/frame_menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 20px;
    filter: grayscale(1);
    cursor: pointer;
}
.frame_menu {
    display: none;
    position: absolute;
    max-width: 300px;
    min-width: 250px;
    margin-top: 10px;
    width: 100%;
    padding: 0px 10px 0px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    z-index: 99;
    background-color: #fff;
    right: 10px;
}
.frame_menu .green_button {
    margin-bottom: 5px;
}
div.frame_menu ul {
    margin: 10px 0px 10px 0px;
    padding: 0px;
    list-style: none;
}
div.frame_menu ul li {
    display: block;

}
div.frame_menu ul li a {
    display: block;
    padding: 1px 15px;
    border-radius: 4px;
    text-transform: none;
}
div.frame_menu ul li a:hover {
    text-decoration: none;
}
.table_setting {
    float: right;
    width: 15px;
    height: 15px;
    background-image: url(/delta-app/core/assets/img/setting.png);
    margin: 0px 0px 0px 0px;
    margin-top: 0px;
    opacity: 0.5;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    right: 7px;
    top: 7px;
}
.table_setting a {
    display: block;
    height: 15px;
    width: 15px;
}
div.cell {
    display:table-cell;
    vertical-align:middle;
}
div.cell img {
    border-radius: 25px;
    margin-right: 10px;
}
div.table_cell {
    display:table-cell;
    vertical-align:middle;
    position: relative;
}
.show_more {
    text-align: center;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
}
.show_more_comment {
    text-align:center;
    height:40px;
    line-height:40px;
    cursor:pointer;
    margin-left:60px;
}
.show_more:hover, .show_more_comment:hover {
}
.user_table th {
    font-weight:100;
    text-align:left;
    padding:5px 10px 5px 10px;
}
.user_table td {
    border-bottom:1px solid transparent;
    vertical-align:middle !important;
    padding:10px 10px 10px 10px;
}
.user_table th a {
    padding:0px 15px 0px 0px;
    cursor:pointer;
}
.user_table th a.nosort {
    cursor: default !important;
}
.user_table th a.nosort:hover {
    text-decoration: none !important;
}
.user_table th a.asc {
    background-image:url(/delta-app/core/assets/img/sort_asc_blue.png);
    background-repeat:no-repeat;
    background-position:right;
}
.user_table th a.desc {
    background-image:url(/delta-app/core/assets/img/sort_desc_blue.png);
    background-repeat:no-repeat;
    background-position:right;
}
.user_table tbody tr {
    height: 55px;
}
.user_table td a {
    text-decoration:none;
}
.user_table td a:hover {
    text-decoration:underline;
}
.user_table td.td_status {
    text-align:right;
}
.user_table td.td_date {
    text-align:right;
}
.user_table img {
    margin:0px 5px 0px 0px;
    border-radius: 25px;
    float: left;
}
.user_table td.image {
    width:35px;
    padding:5px 0px 0px 0px;
}
td.td_edit {
    width:20px !important;
    padding:0px 2px 0px 2px !important;
}
td.td_edit a, a.edit_href {
    display:inline-block;
    width:20px;
    height:20px;
    background-image:url(/delta-app/core/assets/img/pen.svg);
    opacity: 0.5;
    cursor:pointer;
    margin:8px 0px 0px 5px;
}
td.td_edit a:hover, a.edit_href:hover {
    opacity: 1;
}
h1.form_title {
    margin:-7px 0px 14px 0px;
}
div.info {
    font-size:11px;
    width: auto;
}
#di-preloader {
    opacity: 0.7;
    padding: 7px 6px 4px 6px;
    border-radius: 5px;
    width: 36px;
    position: fixed;
    top: 45%;
    left: 50%;
    margin-left: -19px;
    display: none;
    text-align: center;
    z-index: 9999999;
    box-sizing: border-box;
}

ul.top_menu {
    list-style: none;
    display: table;
    width: 100%;
    height: 45px;
    table-layout: fixed;
    padding: 0px;
    margin: 0px 0px 10px 0px;

}
ul.top_menu li {
    display: table-cell;
    height: 40px;
    vertical-align: top;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space:nowrap !important;

}
div.top_menu_img {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align:middle;
    margin: -3px 5px 0px -7px;
    background-size: cover;
}
ul.top_menu a {
    text-decoration: none !important;
    border-radius: 3px;
    font-size: 14px !important;
    display: block;
    padding: 0px 10px;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    font-family: Montserrat Bold;
}
ul.top_menu li:last-child a {
    margin-right: 0px;
}
@media screen and (max-width: 720px) {
    ul.top_menu {
        display: block;
        width: 100%;
        height: auto;
    }
    ul.top_menu li {
        display: inline-block;
        width: 100%;
        margin-bottom: 5px;
    }
    ul.top_menu li a {
        margin-right: 0px !important;
    }

}
.auth_component {
    margin: 100px 0px 100px;
}


div.block {
    border-radius: 10px;
    background-color: #fff;
    margin: 0px 0px 20px 0px;
}
div.block div.block_header {
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid #e1e1e1;
}
div.block div.block_body {
    padding: 15px 20px 15px 20px;
}
.form select {
    width: 100%;
    padding: 13px 7px;
    border-radius: 0px;
    font-family: Montserrat;
    font-size: 14px;
    border-radius: 3px;
    border: 2px solid transparent;
}

.light_mode .form select {
    border: 2px solid #9db9d6;
    background-color: #fff;
    color: #333;
}
.light_mode .button {
    background-color:#6C84CC;
    color:#FFF !important;
}
.light_mode .red_button {
    background-color:#BF3867;
    color:#FFF !important;
}
.light_mode .red_button:hover {
    background-color:#BF134F;
}
.light_mode .gray_button {
    background-color:#E1E1E1;
    color:#1B1464 !important;
}
.light_mode .gray_button:hover {
    background-color:#DFE3E8 !important;
}
.light_mode .form input[type=text], .light_mode .form input[type=password], .light_mode .form input[type=email], .light_mode .form input[type="number"] {
    border: 2px solid #9db9d6 !important;
    background-color: #fff;
    color: #333;
}

.light_mode input.apple-switch {
    background-color: #fff;
    border: 1px solid #D9DADC;
    box-shadow: inset -20px 0 0 0 #fff;

}
.light_mode input.apple-switch:after {
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}
.light_mode input.apple-switch:checked {
    box-shadow: inset 20px 0 0 0 #4ed164;
    border-color: #4ed164;
}

.light_mode .invalid {
    border: 1px solid #f00 !important;
    border-top-color: rgb(255, 0, 0);
    border-right-color: rgb(255, 0, 0);
    border-bottom-color: rgb(255, 0, 0);
    border-left-color: rgb(255, 0, 0);
}
.light_mode input.invalid, textarea.invalid, select.invalid {
    border-color: #ea7471 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 1px rgba(234,75,64,.5) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 1px rgba(234,75,64,.5) !important;
}
.light_mode .form textarea {
    border: 2px solid #9db9d6;
    background-color: #fff;
    color: #333;
}
.light_mode .form select {
    border: 2px solid #9db9d6;
    background-color: #fff;
    color: #333;
}
.table_header_checkbox_checked {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(255, 0, 0, 1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(255, 0, 0, 1);
    box-shadow: 0px 0px 12px 0px rgba(255, 0, 0, 1);
}

.light_mode .user_table th {
    background-color:#f4f4f4;
    color:#999;
}
.light_mode .user_table td {
    border-bottom:1px solid #e1e1e1 !important;
    color: #333;
}
.light_mode .user_table th a {
    color:#999;
}
.light_mode div.info {
    color:#666;
}
.light_mode .show_more {
    color: #50648E;
    background-color: #f2f5f9;
}
.light_mode .show_more_comment {
    color:#50648E;
    background-color:#f2f5f9;
}
.light_mode .show_more:hover, .light_mode .show_more_comment:hover {
    background-color: #e9ecf0;
}
.light_mode .show_up {
    background-color:#f2f5f9;
}
.light_mode .show_up:hover {
    background-color:#d8dfe9;
}
.light_mode #di-preloader {
    color:#FFF;
    background-color: #ececec;
}
.light_mode ul.top_menu li a {
    background-color: #a3b0bb;
    color: #fff !important;
}
.light_mode ul.top_menu li a.selected {
    background-color: #4e5a64 !important;
}
.light_mode ul.top_menu li a:hover {
    background-color: #333;
}

.light_mode .system_message {
    border: 2px solid #feb23d;
    color: #f49500;
    background-color: #fff7ea;
}
.light_mode .save_message {
    color: #50ac52;
    border: 2px solid #50ac52;
    background-color: #e6ffe6;
}
.light_mode .no_result_title {
    border: 2px solid #feb23d;
    color: #f49500;
    background-color: #fff7ea;
}
.light_mode .form_error {
    color: #ea7471;
    border: 2px solid #ea7471;
    background-color: #fee;
}
.clear {
    clear: both;
}