@font-face {
    font-family: "DINWeb";
    src: url("../font/DINWeb.ttf"), url("../font/DINWeb-Bold.ttf"), url("../font/DINWeb-Light.ttf");
}

html {
    background-color: white;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
}

body {
    font-family: "DINWeb" !important;
    line-height: 24px;
}

.block:not(:last-child) {
    margin-bottom: 1.5rem;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.is-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.has-text-centered {
    text-align: center !important;
}

.progress:not(:last-child) {
    margin-bottom: 1.5rem;
}

.progress {
    appearance: none;
    border: none;
    border-radius: 0;
    display: block;
    height: 1.5rem;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

    .progress::-webkit-progress-bar {
        background-color: hsl(221, 14%, 93%);
    }

    .progress::-webkit-progress-value {
        background-color: #404654;
    }

    .progress::-moz-progress-bar {
        background-color: #404654;
    }

    .progress::-ms-fill {
        background-color: #404654;
        border: none;
    }

    .progress:indeterminate {
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
        animation-name: moveIndeterminate;
        animation-timing-function: linear;
        background-color: hsl(221, 14%, 93%);
        background-image: linear-gradient(to right, #784d96 30%, hsl(221, 14%, 93%) 30%);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 150% 150%;
    }

        .progress:indeterminate::-webkit-progress-bar {
            background-color: transparent;
        }

        .progress:indeterminate::-moz-progress-bar {
            background-color: transparent;
        }

        .progress:indeterminate::-ms-fill {
            animation-name: none;
        }

@keyframes moveIndeterminate {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.modal {
    display: none;
}

.is-hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .is-hidden-mobile {
        display: none;
    }
}

@media screen and (min-width: 769px), print {
    .is-hidden-tablet {
        display: none;
    }
}

@media screen and (max-width: 1215px) {
    .is-hidden-touch {
        display: none;
    }
}

@media screen and (min-width: 1216px) {
    .is-hidden-desktop {
        display: none;
    }
}
