:root {
    --color-darkest: #18234d;
    --color-dark: #1b3b6f;
    --color-medium: #275a9f;
    --color-light: #5883c3;
    --color-accent: #f58125;
    --color-accent-light: #f89c53;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

main {
    overflow: auto;
}

#reader {
    margin: auto;
    width: 300px;
    max-width: 90%;
}

.dashboard-body {
    background-image: url('../images/screens/dashboard-bg-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-primary {
    background-image: url('../images/screens/background2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.qr-image {
    width: 285px;
    height: 285px;
}

@media (min-width: 768px) {
    .dashboard-body {
        background-image: url('../images/screens/dashboard-bg-desktop.png');
    }

    .background-primary {
        background-image: url('../images/screens/background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .qr-image {
        width: 400px;
        height: 400px;
    }
}

a.fullscreen-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: block;
}

.account-icon {
    width: 60px;
    height: 60px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 2px;
    border-color: #F58124;
    border-radius: 12px;
}

.title-icon {
    width: 55px;
    height: 55px;
}

.swiper {
    width: 200px;
    height: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.inner-shadow {
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.1);
}
