* {
    font-family: "Gilroy", sans-serif;
}

html,
body {
    min-height: 100%;
}

html {
    min-height: 100vh;
    min-height: 100svh;
}

body {
    height: fit-content;
}

@font-face {
    font-family: "Gilroy";
    src: url("./fonts/Gilroy-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("./fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("./fonts/Gilroy-SemiBold.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

.card {
    box-shadow: 0 40px 64px 0 rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .card {
        box-shadow: none !important;
        background: none !important;
    }
}

.container {
    max-width: 1350px !important;
}

@media (min-width: 420px) and (min-height: 800px) {
    .container {
        overflow: hidden;
    }
}

@media (max-width: 425px) and (max-height: 768px) {
    .actions {
        position: static;
    }
}

.removed {
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.js-info {
    transition: opacity 0.3s ease-in-out;
}