@CHARSET "UTF-8";

html, body {
    height: 100%;
}

body {
    font-family: DFBSansWeb, Verdana, Arial, Geneva, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0px 0px 0px 0px;
    background-color: #24ad80;
}

.fas, .far {
    font-size: 1em;
}

/* DFB-Loader */
.dfb-loader .dfb-modal {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    background-color: white;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 30000;
}
.dfb-loader .dfb-spinner {
    text-align: center;
    top: 50%;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 30001;
}
.dfb-loader .dfb-spinner > div {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    -moz-animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -moz-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.dfb-loader .dfb-spinner .bounce1 {
    -moz-animation-delay: -0.32s;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.dfb-loader .dfb-spinner .bounce2 {
    -moz-animation-delay: -0.16s;
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.dfb-loader .bounce1, .dfb-loader .bounce2, .dfb-loader .bounce3 {
    background-color: #333;
}
@-webkit-keyframes bouncedelay {
    0%, 80%, 100% {
        -moz-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    40% {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
@keyframes bouncedelay {
    0%, 80%, 100% {
      -moz-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
      -webkit-transform: scale(0, 0);
      transform: scale(0, 0);
    }
    40% {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}
.dfb-loader.hide {
    display: none;
}

body {
    overflow-y: scroll;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
code::-webkit-scrollbar, pre::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.4);
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.10),inset 0 -1px 0 rgba(255,255,255,0.07);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,0.6);
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-track:hover {
    background-color: rgba(0,0,0,0.25);
}