﻿.information {
    position: relative;
    overflow-x: hidden;
}

    /*#region Goes To*/
    .information .goesTo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        height: 56px;
    }

        .information .goesTo span {
            height: 24px;
            line-height: 24px;
            font-size: 20px;
            font-weight: 700;
        }

        .information .goesTo .close {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            border-radius: 10px;
            border: 1px solid #EBEBEB;
        }
/*#endregion*/

.infoMenuBtn {
    position: absolute;
    top: 12px;
    width: 32px;
    height: 32px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: center;
    transform-origin: center;
    cursor: pointer;
}

.ltr-dir .infoMenuBtn {
    right: 12px;
}

.rtl-dir .infoMenuBtn {
    left: 12px;
}

    .rtl-dir .infoMenuBtn svg {
        transform: rotate(180deg);
    }

.infoMenu {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 101px;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 1002;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.ltr-dir .infoMenu {
    right: -200%;
    -webkit-transition: right 0.4s linear;
    transition: right 0.4s linear;
}

.rtl-dir .infoMenu {
    left: -200%;
    -webkit-transition: left 0.4s linear;
    transition: left 0.4s linear;
}

.ltr-dir .infoMenu.show {
    right: 0;
}

.rtl-dir .infoMenu.show {
    left: 0;
}

.infoMenu::-webkit-scrollbar {
    display: none;
}

.staticContent a {
    text-decoration: underline;
}

    .staticContent a.no-decoration {
        text-decoration: none;
    }

    .staticContent a strong {
        font-size: 16px;
        font-weight: 500;
    }

#mainContent h1 {
    font-size: 20px;
    text-align: start;
}

#mainContent h2 {
    font-size: 16px;
    line-height: 13px;
}

#mainContent h3 {
    padding: 0 5px;
    text-decoration: underline;
}

#mainContent .content hr {
    height: 1px;
}

#mainContent .content .div {
    padding: 15px 0;
}

.ltr-dir .staticContent .content ol,
.ltr-dir .staticContent .content ul {
    padding: 0 0 0 20px;
}

.rtl-dir .staticContent .content ol,
.rtl-dir .staticContent .content ul {
    padding: 0 20px 0 0;
}

#mainContent .content ol li {
    list-style: decimal;
    background: none;
}

#mainContent .content ul li {
    margin: 2px;
    padding: 5px 10px 5px;
    background: none;
}

    #mainContent .content ul li a:hover {
        font-weight: bold;
    }

/*PAYMENT OPTIONS*/
#mainContent .content .block {
    padding: 12px;
    font-size: 11px;
    line-height: 14px;
}

    #mainContent .content .block .title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 12px;
    }

#mainContent .content .paymentOption {
    margin: 12px 0;
    overflow: hidden;
}

    #mainContent .content .paymentOption .logo {
        float: left;
        width: 150px;
        margin-right: 20px;
    }

        #mainContent .content .paymentOption .logo img {
            width: 100%;
            padding: 0;
        }

    #mainContent .content .paymentOption .informations {
        float: left;
        max-width: 600px;
    }

        #mainContent .content .paymentOption .informations .name {
            font-size: 14px;
        }

            #mainContent .content .paymentOption .informations .name.bold {
                font-weight: bold;
            }

    #mainContent .content .paymentOption .depositButton {
        clear: both;
        text-align: right;
        margin-right: 100px;
        height: 32px;
        line-height: 32px;
    }

        #mainContent .content .paymentOption .depositButton a {
            text-decoration: none;
            font-weight: bold;
            line-height: 24px;
            font-size: 12px;
            padding: 8px 13px;
        }

.justify {
    text-align: justify;
}

.accordion {
    display: block;
    text-align: start;
    border: none;
    outline: none;
    transition: 0.4s;
    cursor: pointer;
}

.information .panel {
    padding: 12px;
    display: none;
    overflow: hidden;
}

/*#region links*/
.information ._links_container ._link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    height: 48px;
    cursor: pointer;
}

    .information ._links_container ._link.active:before {
        content: " ";
        height: 100%;
        position: absolute;
        width: 4px;
    }

.ltr-dir .information ._links_container ._link.active:before {
    left: 0;
}

.rtl-dir .information ._links_container ._link.active:before {
    right: 0;
}

.information ._links_container ._link.active svg {
    display: none;
}

.information ._links_container ._link svg {
    flex-shrink: 0;
}

.rtl-dir .information ._links_container ._link svg {
    transform: rotate(180deg);
}

.information ._links_container ._link span {
    height: 19px;
    line-height: 19px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}
/*#endregion*/

/*#region static content*/
.staticContent .title {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 56px;
    box-sizing: border-box;
}

    .staticContent .title span {
        display: block;
        width: 100%;
        height: 24px;
        line-height: 24px;
        font-size: 20px;
        font-weight: 700;
    }

.staticContent .inner {
    padding: 24px 12px;
    text-align: justify;
}

.staticContent .spacing {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.staticContent .spacing-12 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.staticContent p.introduction {
    line-height: 120%;
    font-size: 16px;
    font-weight: 700;
}

.ltr-dir .staticContent p.introduction {
    text-align: start;
}

.rtl-dir .staticContent p.introduction {
    text-align: right;
}

.staticContent p.subIntroduction {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
}

.staticContent p.text {
    line-height: 140%;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
}

.staticContent p.midTitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
}

.staticContent .stepTitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

.staticContent .bandage {
    display: flex;
    align-items: center;
    padding: 12px;
    height: 40px;
    background: #F2F2F2;
    box-sizing: border-box;
}

.staticContent .collapsible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 56px;
    cursor: pointer;
}

    .staticContent .collapsible span {
        line-height: 120%;
        font-size: 16px;
        font-weight: 600;
    }

    .staticContent .collapsible svg {
        flex-shrink: 0;
    }

.staticContent .style-type-none {
    list-style-type: none !important;
}

.staticContent ol li {
    line-height: 140% !important;
    font-size: 14px;
    font-weight: 400;
}

.staticContent .main-ol {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.staticContent ol.sub-list {
    padding-top: 24px !important;
    padding-left: 24px !important;
}

.staticContent .affiliate_banner {
    position: relative;
    display: flex;
    align-items: center;
    height: 168px;
    border-radius: 8px;
    background: linear-gradient(270deg, rgba(255, 210, 0, 0) 2.42%, #FFD200 25.31%);
}

    .staticContent .affiliate_banner span {
        padding-left: 12px;
        width: 280px;
        font-size: 20px;
        font-weight: 600;
        text-align: start;
        z-index: 2;
    }

    .staticContent .affiliate_banner img {
        position: absolute;
        right: 0;
        border-radius: 8px;
    }

.staticContent .affiliate_list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

    .staticContent .affiliate_list span {
        line-height: 120%;
        font-size: 14px;
        font-weight: 600;
        text-align: start;
    }

.staticContent p.thickText {
    line-height: 120%;
    font-size: 20px;
    font-weight: 700;
}

.ltr-dir .staticContent p.thickText {
    text-align: start;
}

.rtl-dir .staticContent p.thickText {
    text-align: right;
}

.staticContent .s-rotator,
.staticContent .s-rotator .no-padding {
    padding: 0 !important;
}

    .staticContent .s-rotator ul li {
        margin: 0 !important;
        padding: 0 0 0 !important;
    }

.ltr-dir .staticContent .s-rotator ul .rotator-page:not(:last-child) {
    padding-right: 8px !important;
}

.staticContent .p-0 {
    padding: 0 !important
}

/*#region FAQ*/
.staticContent .faqItem {
    padding: 8px 12px;
}

    .staticContent .faqItem .collapsible img {
        transition: transform 0.3s ease;
    }

    .staticContent .faqItem.active .collapsible img {
        transform: rotate(-180deg);
    }

.staticContent .faqClaims {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
    padding: 24px 12px;
}

    .staticContent .faqClaims .claims_feedback {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .staticContent .faqClaims .claimTitle {
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;
    }

.staticContent .submitFAQ {
    text-decoration: none;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
}

.staticContent .faqItem > div:not(.collapsible) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.staticContent .faqItem.active > div:not(.collapsible) {
    max-height: 1000px;
    padding-top: 12px;
}
/*#endregion*/

/*#region Trust*/
.staticContent .trust_item {
    margin-bottom: 12px;
    padding: 24px 12px;
    background: #FFFFFF;
}

    .staticContent .trust_item:last-child {
        margin-bottom: 0;
    }

    .staticContent .trust_item ._rect_img {
        border-radius: 8px;
        background: #F9F9F9;
        border: 1px solid #EBEBEB;
    }

.staticContent .trust_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
/*#endregion*/

/*#region Payment Options */
.staticContent .payment_section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 12px;
}

    .staticContent .payment_section .icon {
        display: flex;
        align-items: center;
        gap: 12px;
    }

.staticContent .payment_bandage {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 12px;
}

    .staticContent .payment_bandage ._title {
        font-size: 20px;
        font-weight: 700;
    }

    .staticContent .payment_bandage .text_blurred {
        line-height: 140%;
        font-size: 14px;
        font-weight: 400;
        color: #848484;
    }

.staticContent .payment_section ul {
    padding-left: 20px;
}

    .staticContent .payment_section ul li {
        line-height: 140%;
        font-size: 14px;
        font-weight: 400;
    }

.staticContent .faqClaims.my-24 {
    margin: 24px 0;
}

.staticContent .faqClaims.mt-24 {
    margin-top: 24px;
}
/*#endregion*/

/*#region Contact us*/
.staticContent .contact_section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    padding: 24px 12px;
}

    .staticContent .contact_section ._title {
        line-height: 120%;
        font-size: 20px;
        font-weight: 700;
    }

.staticContent .common .fields {
    padding: 0;
}

.staticContent .box-alert {
    display: none;
}

    .staticContent .box-alert.show {
        display: flex;
    }

.staticContent ._available_countries {
    display: flex;
    gap: 12px;
}

    .staticContent ._available_countries ._country {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
/*#endregion*/

/*#region Betting Rules*/
.staticContent .sportMenu .sportsIcon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
}

.staticContent .sportMenu a .icon {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

    .staticContent .sportMenu a .icon strong {
        font-size: 16px;
        font-weight: 600;
    }

.staticContent .sportMenu .arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.staticContent .accordion.active .arrow {
    transform: rotate(180deg);
}

.staticContent .sportMenu a .icon i {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: 32px;
}

.ltr-dir .staticContent .sportMenu .main-ol {
    padding-left: 20px;
}

.rtl-dir .staticContent .sportMenu .main-ol {
    padding-right: 20px;
}

.staticContent .sportMenu .main-ol li {
    list-style-type: decimal;
}

.staticContent .rules_item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
}

.staticContent .rule_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.staticContent .rules-ol {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0 20px;
}

    .staticContent .rules-ol li {
        list-style-type: decimal;
    }
/*#endregion*/

/*#endregion*/

