﻿.soccer61013_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.soccer61013_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.soccer61013 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.soccer61013_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.soccer61013_navigation {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.soccer61013_nav_link {
    min-width: 120px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--primary-blue);
    border: 2px solid transparent;
    border-radius: 4px;
}

.soccer61013_iframe_container {
    width: 100%;
    height: 2160px;
    display: flex;
    flex-direction: column;
}

.soccer61013_iframe {
    width: 100%;
    min-height: 2160px;
    display: block;
    border: 2px solid var(--grey);
    border-radius: 8px;
}

.soccer61013_page_content_container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    padding: 8px;
    border: 2px solid var(--grey);
    border-radius: 8px;
}

.soccer61013_page_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.soccer61013_page_content_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.soccer61013_page_content_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
}

    .soccer61013_page_content_text a {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: var(--dark);
    }

    @media only screen and (min-width: 780px) {
        .soccer61013_iframe_container {
            height: initial;
        }
    }

    @media only screen and (min-width: 1200px) {
        .soccer61013_nav_link:hover {
            background-color: var(--light);
            border: 2px solid var(--primary-blue);
            transition: 0.2s ease-in-out;
        }

        .soccer61013_iframe {
            min-height: 1080px;
        }
    }