/* Minification failed. Returning unminified contents.
(16,21): run-time error CSS1039: Token not allowed after unary operator: '-color-dark'
(23,21): run-time error CSS1039: Token not allowed after unary operator: '-color-gray'
(80,25): run-time error CSS1039: Token not allowed after unary operator: '-color-gray'
 */
section.general-info-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    section.general-info-page .info-block {
        max-width: 80%;
        margin: 0 auto;
    }

    section.general-info-page h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--color-dark);
        margin-top: 15px;
        margin-bottom: 15px;
    }

    section.general-info-page p {
        font-size: 16px;
        color: var(--color-gray);
        margin-bottom: 25px;
    }

.info-block a {
    max-width: 50%;
}

.svg-icon {
    margin-left: -5px;
    animation: pop 0.8s ease-in-out;
}

.error-icon {
    font-size: 76px;
    margin-left: -13px;
    padding: 30px 0;
    animation: pop 0.8s ease-in-out;
}

.info-icon {
    font-size: 76px;
    margin-left: -13px;
    padding: 30px 0;
    animation: pop 0.8s ease-in-out;
}

@keyframes pop {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes flip {
    0%, 49% {
        transform: rotate(0);
    }

    50%, 100% {
        transform: rotate(180deg);
    }
}

.actions-group {
    display: flex;
    gap: 20px;
}

    .actions-group a {
        text-decoration: underline;
    }

        .actions-group a:hover {
            color: var(--color-gray);
            text-decoration: none;
            transition-duration: 0.1s;
        }

.actions-horizontal-group {
}

.actions-vertical-group {
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 767px) {
    section .general-info-page .info-block {
        max-width: none;
    }

    .info-block a {
        max-width: none;
    }
}

