*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    background: none;
    vertical-align: baseline;
    text-decoration: none;
}

html {
    touch-action: manipulation;
    height: 100%;
}

body {
    background-color: #111a29;
    min-height: 100dvh;
}

ol, ul {
    list-style: none;
}

.sportPageContainer {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.sportProviderWrapper {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
}

.first-iframe {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    border: 0;
}

#altenarSportsbook {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
}

/* Spinner */
.appShellSpinner {
    z-index: 9999;
    background: #111a29;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transform: translateZ(0);
    touch-action: none;
}

.appShellSpinner.isShow {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    animation: spinnerFadeIn 0.35s ease forwards;
}

.appShellSpinner__gif {
    width: 300px;
    height: auto;
}

/* Footer styles */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding: 24px 40px 0;
    color: #ffffff;
    background-color: #111a29;
    max-width: 1920px;
    transition: padding-left 0.3s;
}

.footer_container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    padding-bottom: 24px;
}

.footer_section {
    display: flex;
    flex-direction: row;
    flex-basis: 65%;
    gap: 24px;
    height: 100%;
    width: 100%;
}

.footer_section_title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
    color: #fff;
    text-transform: capitalize;
    font-family: Montserrat, sans-serif;
}

.footer_section_title_arrow {
    position: relative;
}

.footer_section_title_arrow::after {
    display: inline-block;
    content: '';
    width: 20px;
    height: 10px;
    transform: rotate(180deg);
    background: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6667 6.21484L8.00008 10.8815L3.33342 6.21484' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center;
}

.footer_section_title_arrow.rotated::after {
    transform: rotate(0);
}

.footer_section_list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding-bottom: 20px;
}

.footer_section_list_item_link {
    display: flex;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    text-transform: capitalize;
    text-decoration: underline;
    text-decoration-color: transparent;
    white-space: nowrap;
    color: #B1C3E5;
    cursor: pointer;
    transition: all .3s;
}

.footer_section_list_item_link:hover {
    text-decoration-color: #B1C3E5;
}

.footer_section_list_item_age {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    border: 1.5px solid #E10000;
    border-radius: 50%;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 0px 18.1818px 36.3636px rgba(0, 0, 0, 0.25);
}

.footer_about_us_section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer_about_us_section.hide {
    display: none;
}

.footer_section_list_text {
    font-size: 11px;
    line-height: 18px;
    font-weight: 300;
    text-align: left;
    font-family: Montserrat, sans-serif;
}

.footer_section_list_image {
    width: 87px;
    height: 40px;
    margin-top: 16px;
}

@keyframes spinnerFadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 1800px) {
    .footer_section  {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 1480px) {
    .footer {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .footer {
        gap: 20px;
    }

    .footer_section_title {
        margin-bottom: 21px;
    }

    .footer_section_list_item {
        padding-bottom: 21px;
    }

    .footer_section_list_item_link {
        font-size: 12px;
        line-height: 12px;
    }
}

@media screen and (min-width: 1025px) {
    .footer {
        padding-left: 84px;
    }
}

@media screen and (max-width: 1024px) {
    .footer_container {
        gap: 16px;
    }

    .footer_section {
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: center;
        flex-basis: 100%;
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .footer_section_title {
        margin: 14px 0;
        font-size: 14px;
        line-height: 1;
    }

    .footer_section_list {
        padding-bottom: 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 12px;
    }

    .footer_section_list_item {
        padding-bottom: 10px;
    }

    .footer_section_list_item_link {
        justify-content: center;
    }

    .footer_section_list_image {
        margin-top: 8px;
    }
}

@media screen and (max-width: 899px) {
    .footer_section_list {
        column-gap: 0;
    }

    .footer_section_list_item {
        padding: 0 8px 10px;
    }
}

@media screen and (max-width: 768px) {
    .footer_section_list {
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .footer_section_list_image {
        margin-top: 12px;
    }

    .appShellSpinner__gif {
        width: 220px;
    }
}

@media screen and (max-width: 700px) {
    .footer {
        padding-right: 10px;
        padding-left: 10px;
        gap: 12px;
    }

    .footer_container {
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
    }

    .footer_section {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .footer_section_area {
        margin-bottom: 12px;
    }

    .footer_section_title {
        text-align: center;
    }

    .footer_section_list_text {
        text-align: center;
    }

    .footer_section_list_image {
        margin-inline: auto;
    }
}

@media screen and (max-width: 599px) {
    .footer_section_list {
        padding: 0 16px;
    }

    .footer_section_list_image {
        margin-top: 16px;
    }
}

@media screen and (max-width: 414px) {
    .footer_section_list {
        padding: 0 20px;
    }
}
