﻿html,body {
    background: rgb(22,22,22);
    background: linear-gradient(58deg, rgba(22,22,22,1) 0%, rgba(0,0,0,1) 39%, rgba(28,28,43,1) 100%);
    background-size: cover;
    height:100%;
    width:100%;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border: 3px solid;
        border-color: transparent #FF3D00 #FF3D00;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        animation: rotationBack 0.5s linear infinite;
        transform-origin: center center;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.full-page {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: black;
    z-index: 99;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card{
    background-color: #1b1b1b;
    color: #9b9b9b;    
}
hr{
    border-color:#494949 !important;
}

.border,.border-top,.border-start{
    border-color:#494949 !important;
}