*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    font-family: 'db_heaventmed_cond' !important;
    font-size: 1.5rem !important;

}

input {
    font-family: 'db_heaventmed_cond' !important;
    font-size: 1.5rem !important;
}

select {
    font-family: 'db_heaventmed_cond' !important;
    font-size: 1.5rem !important;
}


section {
    width: 100vw;
    max-width: 550px;
    height: 100vh;
    background-image: url('/public/bg.png');
    background-size: cover;
    background-position: center top 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.d-none {
    display: none !important;
}

.white-space {
    width: 1px;
    height: 40vh;
}


@font-face {
    font-family: 'db_heaventmed_cond';
    src: url('/public/db-webfont.woff2') format('woff2'),
        url('/public/db-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader2 {
    width: 80%;
    max-width: 250px;
    height: 80%;
    max-height: 250px;
    border: 20px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}