@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Light.ttf);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Regular.ttf);
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'Fira_Sans';
    src: url(../fonts/Fira_Sans/FiraSans-Bold.ttf);
    font-style: normal;
    font-weight: 800;
}
*{
    margin: 0px;
    padding: 0px;
    font-family: "Fira_Sans";
}
body{
    background-color: #000;
    color: #fff;
}
a {
    color: #ddd;
}
.logo-lg{
    width: 50%;
}
/*  Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
.mt--2{
    margin-top: -1.3rem !important;
}
.mr--2{
    margin-right: -1.3rem !important;
}
.mb--2{
    margin-bottom: -1.3rem !important;
}
.ml--2{
    margin-left: -1.3rem !important;
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .mt-md--2{
        margin-top: -1.3rem !important;
    }
    .mr-md--2{
        margin-right: -1.3rem !important;
    }
    .mb-md--2{
        margin-bottom: -1.3rem !important;
    }
    .ml-md--2{
        margin-left: -1.3rem !important;
    }    
}
.btn{
    border-radius: 0;
}
.bg-white-75{
    background-color: rgba(255, 255, 255, 0.75);
}
.bg-white-60{
    background-color: rgba(255, 255, 255, 0.6);
}
.bg-black-90{
    background-color: rgba(0, 0, 0, 0.75);
}
.btn-outline-success, .btn-outline-warning, .btn-outline-danger, .btn-outline-light, .btn-outline-primary{
    background: rgba(255,255,255, 0.3);
    color: #fff;
}
.btn-outline-secondary{
    color: #fff;
}
.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(254, 237, 0,.06);
}
.table-striped tbody tr td:nth-of-type(2n+1) {
    background-color: rgba(254, 237, 0,.03);
}
.table-striped tbody tr:nth-of-type(2n+1) td:nth-of-type(2n+1) {
    background-color: rgba(254, 237, 0,.09);
}
/*Sweep To Right*/ 
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #feed00;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
    color: black;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.footer{
    position: fixed;
    bottom:0;
    width:100%;
    z-index: 9999;
}
.footer-nav .btn{
    line-height: 1;
    border-width: 0 !important;
}
.footer-nav .btn small{
    font-size: .6rem;
}
.footer-nav .btn.active{
    border-top: #feed00 2px solid !important;
    color: #feed00 !important;
    font-weight: bold;
}