:root {
    scroll-behavior: smooth;
    font-family: "Source Sans Pro", sans-serif;
}

.bg-mine {
    background-color: #232323;
}

.options a {
    color: #006400;
}

.options a:hover {
    color: #000000;
    transition: 0.2s ease-in;
    text-decoration: none;
}

.options-link {
    color: #006400;
    text-decoration: underline;
}

.options-link:hover {
    color: #000000;
    transition: 0.2s ease-in;
    text-decoration: none;
}

.cookie-consent {
    position: fixed;
    padding: 1rem;
    bottom: 0;
    left: 0;

    width: 100%;
    height: var(--navbar-height);

    background-color: #4499fc;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;

    z-index: 2;
}

.cookie-consent__agree {
    border: 1px solid #ffffff;
    margin-left: 15px;
    border-radius: 4px;
    padding: 6px 24px;
}

.cookie-consent__agree:hover {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #4499fc;
    transition: 0.1s ease-in;
}

.c-card img {
    transition: transform 0.3s ease-in-out;
}

.c-card img:hover {
    transform: scale(1.05);
}

.strikethrough {
    position: relative;
}
.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 5px solid;
    border-color: inherit;

    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: "";
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
}
