html, body {
    margin: 0;
    padding: 0;
}

html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f7f7f7;
    font-size: 14px;
}

body {
    padding-top: 50px;
}

header {
    position: fixed;
    top:0;
    height: 50px;
    background-color: #171c3d;
    width: 100%;
    color: #ffffff;
    z-index: 10;
}

header .headline {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    position: absolute;
    top:0;
    left: 0;
}

* {
    box-sizing: border-box;
}

a,
a:active,
a:hover,
a:visited {
    color: #009df1;
    text-decoration: none;
}

input, textarea {
    font-size: 14px;
    display: block;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
    border: 1px solid #cccccc;
    line-height: 18px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
}

input {
    height: 40px;
}

textarea {
    height: 120px;
    resize: none;
}

.trumbowyg-editor-box {
    background-color: #ffffff;
}

/** NO GROUPING HERE !!! **/
input::-webkit-input-placeholder{
    font-style: italic;
}

input:-moz-placeholder{
    font-style: italic;
}

input::-moz-placeholder{
    font-style: italic;
}

input:-ms-input-placeholder{
    font-style: italic;
}

button,
.button {
    font-size: 14px;
    display: block;
    background-color: #009df1;
    border: none;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    height: 40px;
    color: #ffffff;
    padding: 0;
    outline: none;
    cursor: pointer;
}

button:not(.inactive):hover,
.button:not(.inactive):hover {
    box-shadow: 0 0 3px 0 rgba(7, 4, 6, .4);
    background-color: #0f7eac;
}

button.inactive,
.button.inactive {
    background-color: rgb(240, 240, 240) !important;
    background-image: none;
    color: #a0a0a0 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

.cursor-pointer {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.fs-em-0-75 {
    font-size: 0.75em;
}

.fs-em-1-5 {
    font-size: 1.5em;
}

.w20 {
    width: 20px;
}

.w40 {
    width: 40px;
}

.w65 {
    width: 65px;
}

.w100i {
    width: 100px !important;
}

.w150 {
    width: 150px;
}

.w200 {
    width: 200px;
}

.w300 {
    width: 300px;
}

.h20 {
    height: 20px;
}

.h60 {
    height: 60px;
}

.mauto {
    margin: 0 auto;
}

.mr5 {
    margin-right: 5px;
}

.p20 {
    padding: 20px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl5 {
    padding-left: 5px;
}

.pr5 {
    padding-right: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.maxw100p {
    max-width: 100%;
}

/** COLORS **/

.corporate-color {
    color: #009df1;
}

.grey-color {
    color: #a1a0a0;
}

.danger-color {
    color: #f6170f;
}

.white-bg-color {
    background-color: #ffffff;
}

.danger-bg-color {
    background-color: #f6170f;
}

/** COLORS END **/

.center {
    text-align: center;
}

.ta-right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.cms-navigation {
    line-height: 50px;
    float: right;
    width: 200px;
}

.cms-navigation .cms-navigation-title {
    position: relative;
    padding: 0 25px;
    z-index: 100;
}

.cms-navigation .cms-navigation-title .indicator {
    position: absolute;
    top:50%;
    margin-top: -10px;
    line-height: 20px;
    right: 5px;
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease-in-out;
}

.cms-navigation .cms-navigation-wrapper {
    position: absolute;
    top: 50px;
    width: 200px;
    background-color: rgba(23, 28, 61, 0.95);
    max-height: 0;
    transition: max-height 0.25s ease-in-out;
    overflow: hidden;
    z-index: 10;
}

.cms-navigation .cms-navigation-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.cms-navigation .cms-navigation-wrapper a {
    color: #ffffff;
    display: block;
    text-decoration: none;
}

.cms-navigation .cms-navigation-wrapper li:not(.navigation-spacer):hover {
    background: rgba(255,255,255,0.2);
}

.cms-navigation:hover .cms-navigation-wrapper {
    max-height: 600px;
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

.cms-navigation:hover .indicator {
    transform: rotate(180deg);
}

.cms-navigation .navigation-spacer {
    height: 1px;
    margin: 15px;
    background: #d8d8d8;
}

/** TABLES **/

table.index {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

table.index th {
    border-bottom: 1px solid #ddd;
}

table.index td {
    word-wrap: break-word;
    padding: 0 5px;
}

table.index.header {
    background: #ffffff;
    border-top: 1px solid #e5e5e5 !important;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

table.index.header tr {
    height: 65px;
}

table.index.header tr > th,
table.index.body tr > td {
    font-size: 12px;
    vertical-align: middle;
    border-right: 1px solid #e5e5e5 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    border-top: none !important;
}

table.index.header tr > th:last-child,
table.index.body tr > td:last-child {
    border-right: none !important;
}

table.index.body tr {
    height: 60px;
    transition: all .1s ease-in-out;
}


table.index.body tr.even {
    background-color: #f7f7f7;
}

table.index.body tr.odd {
    background-color: #ffffff;
}

table.index.body tr:hover {
    box-shadow:         0 0 40px 0 rgba(50, 50, 50, 0.25);
    -webkit-box-shadow: 0 0 40px 0 rgba(50, 50, 50, 0.25);
    -moz-box-shadow:    0 0 40px 0 rgba(50, 50, 50, 0.25);
    background-color: #ebf4f8 !important;
    cursor: pointer;
    transform: scale(1);
}

/** TABLES END **/

/** CSS TABLES **/

.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.table .table-cell {
    display: table-cell;
}

.va-top {
    vertical-align: top;
}

.va-middle {
    vertical-align: middle;
}

.va-bottom {
    vertical-align: bottom;
}

/** CSS TABLES END **/

a.btn {
    line-height: 40px;
    display: inline-block;
}

a.btn:hover {
    border-radius: 3px;
    box-shadow: 0 0 6px 0 rgba(7, 4, 6, 0.25) !important;
}

/** SEARCH **/
.search-form {
     position: relative;
}

.search-form #search {
    padding-right: 50px;
    background-color: #f7f7f7;
}

#search-btn {
    width: 38px;
    height: 38px;
    top: 1px;
    line-height: 38px;
    border-left: 1px solid #cccccc;
    border-radius: 0 4px 4px 0;
    background: #ffffff;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    right: 1px;
}

/** SEARCH END **/

.fixed-header {
    position: fixed;
    z-index: 2;
    box-shadow: 0 5px 8px 0 rgba(7, 4, 6, 0.1);
}

.section-headline {
    height: 34px;
    width: 100%;
    line-height: 34px;
    background-color: #171c3d;
    font-size: 14px;
    font-weight: bold;
    color: #f7f8fa;
}

/** STATUS BAR **/

#status-bar {
    position: fixed;
    bottom:0;
    background-color: #ffffff;
    box-shadow: 0 5px 20px 0 rgba(7, 4, 6, 0.5);
    height: 60px;
    width: 100%;
    z-index: 5;
}

/** STATUS BAR END **/

.image-preview {
    width: 40px;
    height: 40px;
    background-size: contain;
    border: 1px solid #cccccc;
    border-radius: 2px;
}

/** SPINNER **/

@keyframes mea-spinner {
    to {transform: rotate(360deg);}
}

.mea-spinner:before {
    position: absolute;
    font-size: 20px;
    animation: mea-spinner 1s linear infinite;
}

.loading-overlay {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.loading-overlay .table {
    height: 100%;
    color: #ffffff;
}

/** SPINNER END **/


/** SWITCH **/

.switch-container {
    height: 40px;
}

.switch {
    height: 40px;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    text-align: center;
    cursor: pointer;
}

.switch-container .switch:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-container .switch:last-of-type {
    border-radius: 0 4px 4px 0;
    border-right: 1px solid #cccccc;
}

.switch-container .switch.active {
    background-color: #009df1;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-weight: bold;
}

.switch-container .switch.active + .switch {
    border-left: 0;
    padding-left: 1px;
}

/** SWITCH END **/

/** MODAL **/

.modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal-body {
    position: absolute;
    width: 680px;
    height: auto;
    top: 50%;
    left: 50%;
    background: #ffffff;
    font-size: 20px;
    line-height: 28px;
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-content {
    padding: 50px 40px 30px 40px;
}

.modal-head {
    font-size: 24px;
}

.modal-button {
    height: 60px;
    background: #009df1;
    color: #ffffff;
    cursor: pointer;
}

.modal-spacer {
    width: 1px;
    background: #ffffff;
}

/** MODAL END**/

/** CLIPBOARD **/

.clipboard-wrapper {
    height: 40px;
    border: 1px solid #cccccc;
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 3px 5px -3px rgba(0,0,0,0.2);
    position: relative;
}

.clipboard-wrapper .clipboard-body {
    position: absolute;
    font-size: 14px;
    line-height: 18px;
    padding: 10px;
    top:0;
    left:0;
    right: 40px;
}

.clipboard-wrapper .clipboard-copy {
    position: absolute;
    top:0;
    width: 40px;
    height: 38px;
    border-radius: 0 4px 4px 0;
    right: 0;
    background: #ffffff;
    border-left: 1px solid #cccccc;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
}

.clipboard-wrapper .clipboard-copy .icon {
    line-height: 38px;
}

.clipboard-wrapper .clipboard-message {
    display: none;
    width: 120px;
    right: -130px;
    top:0;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 0 3px 0 rgba(7, 4, 6, .4);
    z-index: 2;
}

.clipboard-wrapper .clipboard-message:before,
.clipboard-wrapper .clipboard-message:after {
    position: absolute;
    content: "";
    background-color: #ffffff;
    width: 10px;
}
.clipboard-wrapper .clipboard-message:before {
    height: 10px;
    box-shadow: 0 0 3px 0 rgba(7, 4, 6, .4);
    transform: rotate(45deg);
    left: -5px;
    top: 15px;
    z-index: 1;
}
.clipboard-wrapper .clipboard-message:after {
    height: 30px;
    left: 0;
    top: 5px;
    z-index: 3;
}

/** CLIPBOARD END**/

/** TABLE SORTNG **/
th.sort {
    text-decoration: underline;
}

th.sort.active {
    position: relative;
}

th.sort.active::before {
    position: absolute;
    left: 10px;
    top: 0;
    content: "\ebf0";
    font-family: "IcoMoon" !important;
    width: 20px;
    height: 65px;
    line-height: 65px;
    text-decoration: none;
}

th.sort.active[data-sort="numeric-id"]::before,
th.sort.active[data-sort="id"]::before {
    content: '\ebf2';
    text-align: left;
}

th.sort.active.desc::before {
    content: "\ebf1";
}

th.sort.active.desc[data-sort="numeric-id"]::before,
th.sort.active.desc[data-sort="id"]::before {
    content: "\ebf3";
}

/** TABLE SORTNG END **/


