/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,100;1,300;1,400&display=swap'); */
/* roboto-100 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-100italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local(''),
       url('../fonts/Roboto/roboto-v27-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/Roboto/roboto-v27-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
*{
  font-family: 'Roboto', sans-serif;
  color: var(--c1);
  box-sizing: border-box;
}
:root {
  --c1: #5A5A5A;
  --c2: #23282F;
  --c3: #D1D2D5;
  --c4: #D11E1E;
  --c5: #D48D31;
  --bg: #FCFCFC;
  --input-disabled: #F9F8F8;
}

::-webkit-input-placeholder { /* Edge */
  color: var(--c3) !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--c3) !important;
}

::placeholder {
  color: var(--c3) !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on h#a8a8a8 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: var(--c2);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    z-index: 1000;
}

.logo-img{
    height: 30px;
    margin-right: 10px
}

body{
    padding: 0px;
    padding-top: 55px;
    margin: 0px;
    height: 100%;
    height: 100vh;
    background-color: white !important;
}

hr{
  border: 0;
  border-bottom: 1px solid #E8E8E8;
}

a{
    text-decoration: none !important;
}

hr.margin{
  margin: 10px 0;
}

h1, h2, h3, h4, h5, h6{
  margin: 10px 0;
}

.di-card-icon path{
    fill: #d1720a;
}

.small-icon{
    width: 20px;
    height: 20px;
}

.init-load{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
}
.init-load img {
    height: 60px;
}
.load-animate{
    position: relative;
}
.load-animate img {
    height: 0px;
    animation: loadingimg 2s infinite;
}

@keyframes loadingimg {
    0% {
        height: 0px;
    }

    90% {
        height: 60px;
    }

    100% {
        height: 0px;
    }
}

.block{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    height: 100vh;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    overflow-y: auto;
}
.block .card{
    min-width: 400px;
}
.block.block-top{
    z-index: 1000;
}
.block[none]{
    display: flex !important;
}

.loading{
    position: fixed;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.left, [left]{
    text-align: left;
}
.center, [center]{
    text-align: center;
}
.right, [right]{
    text-align: right;
}
.float-right, [float-right]{
    float: right;
}

.strong, [strong]{
    font-weight: bold !important;
}

.none, [none]{
    display: none !important;
}

.inline-block, [inline-block]{
    display: inline-block;
}

.no-space, [no-space]{
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.no-space-all,
.no-space-all *,
[no-space-all],
[no-space-all] *{
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex, [flex]{
    display: flex;
    display: inline-flex;
    display: -webkit-flex;
}

.flex-center-vertical,[flex-center-vertical]{
    align-items: center;
}
.flex-center-horizontal,[flex-center-horizontal]{
    justify-content: center;
}
.flex-center,[flex-center]{
    justify-content: center;
    align-items: center;
}

.flex-grow,[flex-grow]{
    flex-grow: 1;
}

.flex-column,[flex-column]{
    flex-direction: column;
}

.sm-padding, [sm-padding]{
    padding: 5px !important;
}

.md-padding, [md-padding]{
    padding: 10px !important;
}

.flex-margin > *, [flex-margin] > *{
    margin: 0 5px !important;
}

.fit-content, [fit-content]{
    width: 1%;
    white-space: nowrap;
}

.auto-width, [auto-width]{
    width: auto !important;
    flex-grow: 0 !important;
}

.full-width, [full-width]{
    width: 100%;
}

.full-height, [full-height]{
    height: 100%;
}

.disabled-element, [disabled-element]{
    pointer-events: none;
}

.unset-position, [unset-position]{
    position: unset !important;
}

.pointer, [pointer]{
    cursor: pointer !important;
}

.input{
  margin: 10px 0;
}

[hide-input] {
    width: 0px !important;
    padding: 0px !important;
    border: 0px !important;
}

.line-v{
    width: 100%;
    height: 1px;
    background: #E8E8E8;
}

.line-h{
    width: 1px;
    min-width: 1px;
    height: 100%;
    background: #E8E8E8;
}

.line-h-button {
    width: 3px;
    background: #6975ad;
}

.scroll-v,[scroll-v]{
    overflow-y: auto;
}

.full-width,[full-width]{
    width: 100%;
}

.button
{
    color: var(--c2);
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    display: inline-flex;
    display: -webkit-flex;
    align-items: center;
    white-space: nowrap;
}
.button .icon-button svg
{
    fill: var(--c2);
    width: 20px;
    height: 20px;
}
.button button
{
    color: var(--c2);
    background: transparent;
    border:0;
    padding: 0;
    margin-left: 6px;
}
.button:hover{
    background: #D1D2D5;
}
.button-h100{
    height: 100%;
}
.icon-button + span{
    margin-left:10px;
    color: var(--c2);
}

.hide-empty-content{
    flex-grow: 1;
}
.hide-empty-content + .empty-content{
    display: none !important;
}
.empty-content
{
    flex-grow: 1;
}
.empty-content span
{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: inline-block;
    background-color: #F8F8F8;
    text-align: center;
    line-height: 60px;
}
.empty-content svg{
    fill: #807B7B;
    width: 30px;
    height: 30px;
}

.ec2 span{
    background-color: #eceeef;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    line-height: 100px;
}

.ec2 svg{
    fill: #807B7B;
    width: 50px;
    height: 50px;
}

/* Custom Bootstrap */
.btn.fill svg{
    fill: white;
}
.btn.outline:hover svg{
    fill: white;
}
.btn-primary{
    color: #FFF !important;
    background-color: var(--c2) !important;
    border: 1px solid var(--c2) !important;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: var(--c2) !important;
}
.table > :not(caption) > * > * {
    border-bottom-width: 1px !important;
}

/*Toggle Slider*/
.toggle-slider{
	position: relative;
	display: inline-block;
	width: 35px;
	height: 16px;
}
.toggle-slider input[type=checkbox]{
	display: none;
}
.toggle-slider input[type=checkbox]:checked ~ .ts_bg{
	background: #0078D4;
}
.toggle-slider input[type=checkbox]:checked ~ .ts_button{
	left: auto;
	right: 2px;
}
.toggle-slider .ts_bg{
	width: 100%;
	height: 100%;
	background: #EDEDED;
	border-radius: 10px;
	cursor: pointer;
}
.toggle-slider .ts_button{
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #FFF;
	border-radius: 10px;
	position: absolute;
	top: 2px;
	left: 2px;
	cursor: default;
}

/* Toast Info */
.toast-info{
    position: fixed;
    left: 50%;
    transform: translatex(-50%);
    transition: all 0.5s;
    bottom: -100px;
    background: #FFF;
    z-index: 1000;
    border: 1px solid #d1d1d1;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.1);
}

/* Custom */
.dropdown-noarrow:after{
    display: none !important;
}


