﻿.h-100vh{
    height:100vh!important;
}
/* header */
.em-header-top {
    background-color: rgba(9,72,89,1);
}
.em-header-bottom {
    background-color: rgba(9,72,89,0.1);
}
.em-header-bottom li {
    list-style: none;
    border-left: 1px solid #ffffff;
    padding: 3px 15px;
    position: relative;
}
    .em-header-bottom li:hover {
        background-color: rgba(9,72,89,0.2);
    }
.em-header-bottom li:last-child{
    border-right: 1px solid #ffffff;
}
.em-header-bottom li a {
    color: #212529;
    font-size:14px;
    text-decoration:none;
}
.em-footer {
    color: #ffffff;
    background-color: rgba(9,72,89,1);
}

/* datatables */
.data-table {
    width: 100% !important;
}

.data-table > tbody > tr > td {
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    height:45px;
    padding-left:15px;
    position:relative;
}
    .data-table tbody tr td:not(.default) input[type=text] {
        margin-left: -15px;
        width: calc(100% + 15px);
        background-color: transparent !important;
        border: none;
        border-radius: 0;
        height: 100%;
        position: relative;
    }

.input-currency-wrapper {
    position: relative;
    height: 100%;
}
.input-currency-wrapper::before {
    top: 7px;
    left: 13px;
    content: "$";
    position: absolute;
}
.input-currency-wrapper input[type=text] {
    padding-left: 22px;
}
.data-table tbody tr td .input-currency-wrapper::before {
    top:10px;
    left:-2px;
}

.data-table tbody tr:first-child td {
    border-top: 1px solid #eeeeee;
}
.data-table tbody tr:last-child td {
    border-bottom: 1px solid #eeeeee;
}
    
.data-table tr.even {
    background-color: #ffffff;
}

.data-table tr.odd {
    background-color: rgba(9,72,89,0.1);
}

.data-table.inner-table tr.even {
    background-color: #eeeeee;
}
.data-table.inner-table tr.odd {
    background-color: rgba(9,72,89,0.2);
}

.data-table thead tr td {
    padding-right: 0 !important;
    padding-left: 15px !important;
}

.data-table thead tr td.sorting::before {
    bottom: 0.2em !important;
    left: 0 !important;
    right:unset;
    content: "▴" !important;
}

.data-table thead tr td.sorting::after {
    bottom: -0.2em !important;
    left: 0 !important;
    right: unset;
    content: "▾" !important;
}

.data-table-clickable tbody tr:hover {
    cursor: pointer;
    background-color: rgba(9,72,89,0.2);
}

.data-table-clickable thead tr td:hover {
    cursor: pointer;
    background-color: rgba(9,72,89,0.2);
}

.data-table tr .edit{
    height:45px;
    position:relative;
}

.data-table .edit select {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-left: -15px;
    padding-left: 12px;
    height: 45px;
    width: calc(100% + 15px);
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.data-table tr .edit::before {
    position: absolute;
    /*background-image:url('/assets/images/pencil.svg');*/
    top: 10px;
    right: 5px;
    content:"\f044";
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    opacity:0.1;
    z-index:0;
    font-size:25px;
    color:#000;
    line-height:1;
}
.data-table tr .edit.changed::before {
    opacity:0.4;
}

.loading-backdrop {
    transition: background ease-in 1s;
    transition: opacity ease-in 1s;
    position: fixed;
    z-index: 999999;
    background-color: rgba(255,255,255,0);
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
}
.loading-backdrop.active {
    background-color: rgba(255,255,255,0.3);
    opacity:1;
    display: flex;
    height: 100vh;
    width: 100%;
}

.em-share-button{
    position:absolute;
    right:0;
    bottom:0;
    border:1px solid #999;
    background-color:#FFF;
    padding:10px;
}