/* FONTS
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&Montserrat:wght@400;500;700&display=swap');


/* BASE
================================================== */

body {
    font-size: .875rem;
    color: #949DB0;
    background: #141B24;
    
}

body.skin {
    background-color: #141B24;
    background-image: url("../img/bg-grid.png");
    background-size: 100% auto !important;
    background-position: center -6.5rem !important;
    background-repeat: no-repeat;
}

body, input, button, textarea {
    font-family: Roboto, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

p,
ul,
ol,
table,
figure {
    margin-bottom: 1.5rem;
}

a, input, textarea, button {
    transition: color .3s, background-color .3s, border-color .3s, opacity .3s;
}

a {
    text-decoration: none;
    color: #00CAF6;
}

a:hover {
    color: #fff;
}

*, *:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

figure img {
    width: 100%;
}

strong {
    font-weight: 500;
}

/* LAYOUT
================================================== */

/*
    Scrollbar
*/

body,
.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #949db0 #0C0F14;
}

body::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

body::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
    background: #0C0F14;
}

body::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
    border: 2px solid #0C0F14;
    background-color: #949db0;
    border-radius: 10px;
}

.scroll-margin {
    scroll-margin-top: 94px;
}

/*
	Header
*/

.header {
    position: sticky;
    z-index: 1000;
    top: 0;
    margin-bottom: 1rem;
    background: #1f2834;
}

.header .container {
    box-shadow: 0 .5rem 2rem rgba(15, 0, 0, .2);
}

.header__inner {
    display: flex;
    align-items: center;
}

    .header__logo {
        height:28px;
    }

        .header__logo img {
            display: block;
            height: 100%;
        }

    .header__options {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

        .header__dropdown {
            position: relative;
            cursor: pointer;
        }

            .header__dropdown__btn {
                display: flex;
                align-items: center;
                height: 3.5rem;
                padding: .25rem .5rem;
                font-weight: 500;
                color: rgba(255, 255, 255, .54);
                transition: all .3s;
            }

                .header__dropdown__btn svg {
                    width: 1rem;
                    height: 1rem;
                    margin-right: .5rem;
                    fill: rgba(255, 255, 255, .54);
                    transition: fill .3s;
                }

                .header__dropdown__btn .arrow {
                    width: .75rem;
                    height: .75rem;
                    margin-left: .5rem;
                    margin-right: 0;
                }

            .menu__dropdown__menu,
            .menu__dropdown__list {
                position: absolute;
                visibility: hidden;
                top: 100%;
                right: 0;
                width: 100%;
                min-width: 240px;
                padding: 0;
                list-style-type: none;
                border-top: 1px solid #1f2834;
                background: #273545;
                opacity: 0;
                transition: all .3s;
            }

            .menu__dropdown__menu {
                padding-top: .75rem;
                padding-bottom: .75rem;
                border-radius: 0 0 .5rem .5rem;
            }

                .menu__dropdown__menu .separator {
                    margin-top: .6875rem;
                    padding-top: .6875rem;
                    border-top: 1px solid #1f2834;
                }

                .menu__dropdown__menu li > a,
                .menu__dropdown__menu li > span {
                    position: relative;
                    display: block;
                    padding: .25rem .875rem .25rem 2.25rem;
                    font-weight: 500;
                    color: rgba(255, 255, 255, .54);
                }

                .menu__dropdown__menu li > span {
                    color: #fff;
                }

                    .menu__dropdown__menu li > a svg,
                    .menu__dropdown__menu li > span svg {
                        position: absolute;
                        top: 50%;
                        left: .875rem;
                        width: 1rem;
                        height: 1rem;
                        fill: rgba(255, 255, 255, .54);
                        transform: translate(0, -50%);
                        transition: fill .3s;
                    }

                    .menu__dropdown__menu li > span svg {
                        fill: #fff;
                    }

                .menu__dropdown__menu li:hover > a {
                    color: #fff;
                }

                    .menu__dropdown__menu li:hover > a > svg {
                        fill: #fff;
                    }

            .menu__dropdown__list {
                width: 270px;
                font-size: .8125rem;
                border-radius: 0 0 .5rem .5rem;
            }

                .menu__dropdown__list > li:not(:first-child) {
                    border-top: 1px solid #1f2834;
                }

                    .menu__dropdown__list > li > * {
                        position: relative;
                        display: block;
                        padding: 1rem 1rem .75rem 3rem;
                        color: #949db0;
                    }

                        .menu__dropdown__list__title {
                            margin-bottom: 0;
                            font-size: .875rem;
                            color: #fff;
                        }

                        .menu__dropdown__list svg {
                            position: absolute;
                            top: .75rem;
                            left: .875rem;
                            width: 1.5rem;
                            height: 1.5rem;
                            fill: #949DB0;
                        }

                        .menu__dropdown__list p:last-child {
                            margin-bottom: 0;
                        }

                    .menu__dropdown__list > li > a:hover {
                        color: #fff;
                        background-color: rgba(255, 255, 255, .05);
                    }

                    .menu__dropdown__list > li .item-disabled {
                        opacity: .4;
                    }

                        .menu__dropdown__list > li .item-disabled .menu__dropdown__list__title {
                            color: inherit;
                        }

        .header__dropdown--icon .header__dropdown__btn > * {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 2rem;
            background: #141b24;
            transition: background-color .3s;
            border-radius: .25rem;
        }

            .header__dropdown--icon .header__dropdown__btn svg {
                margin: 0;
            }

            .header__dropdown--icon .header__dropdown__btn > * span {
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 0;
                right: 0;
                height: 1rem;
                font-size: .625rem;
                font-weight: 500;
                text-align: center;
                color: #fff;
                background: #00caf6;
                border-radius: 100%;
                transform: translate(4px, -4px);
            }

    .header .badge {
        display: inline-block;
        margin-left: .5rem;
        padding: .375rem;
        font-weight: 500;
        text-transform: uppercase;
        font-size: .75rem;
        color: #4c5969;
        background: #141b24;
        border-radius: .25rem;
    }

.header__dropdown--active > .header__dropdown__btn {
    color: #fff;
    background: #273545;
}

.header__dropdown--active .menu__dropdown__menu,
.header__dropdown--active .menu__dropdown__list {
    visibility: visible;
    opacity: 1;
}

/*
   Preorder
*/

.preorder-block {
    padding: 1rem;
    background: #07f468;
    border-radius: .75rem;
}

.preorder-block img {
    max-height: 28px;
    max-width: 45%;
}

/*
   Mobil profile
*/

.mobile__profile-header {
    display: flex;
    align-items: center;
    height: 3.5rem;
    padding: .25rem 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    transition: all .3s;
    background: #273545;
    border-radius: .5rem .5rem 0 0;
}

    .mobile__profile-header svg {
        width: 1rem;
        height: 1rem;
        margin-right: .5rem;
        fill: rgba(255, 255, 255, .7);
        transition: fill .3s;
    }

    .mobile__profile-header .arrow {
        width: .75rem;
        height: .75rem;
        margin-left: .5rem;
        margin-right: 0;
    }

    .mobile__profile-header .badge {
        display: inline-block;
        margin-left: .5rem;
        padding: .375rem;
        font-weight: 500;
        text-transform: uppercase;
        font-size: .75rem;
        color: #4c5969;
        background: #141b24;
        border-radius: .25rem;
    }

.mobile_profile-menu {
    width: 100%;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #1f2834;
    background: #273545;
    transition: all .3s;
}

.mobile_profile-menu {
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-radius: 0 0 .5rem .5rem;
}

    .mobile_profile-menu .separator {
        margin-top: .6875rem;
        padding-top: .6875rem;
        border-top: 1px solid #1f2834;
    }

    .mobile_profile-menu li > a,
    .mobile_profile-menu li > span {
        position: relative;
        display: block;
        padding: .25rem .875rem .25rem 2.25rem;
        font-weight: 500;
        color: rgba(255, 255, 255, .54);
    }

    .mobile_profile-menu li > span {
        color: #fff;
    }

        .mobile_profile-menu li > a svg,
        .mobile_profile-menu li > span svg {
            position: absolute;
            top: 50%;
            left: .875rem;
            width: 1rem;
            height: 1rem;
            fill: rgba(255, 255, 255, .54);
            transform: translate(0, -50%);
            transition: fill .3s;
        }

        .mobile_profile-menu li > span svg {
            fill: #fff;
        }

        .mobile_profile-menu li:hover > a {
            color: #fff;
        }

        .mobile_profile-menu li:hover > a > svg {
            fill: #fff;
        }

/*
	Footer
*/

.footer {
    padding-top: 3.625rem;
    background: #0c0f14;
}

    .footer a {
        color: #949db0;
    }

    .footer a:hover {
        color: #fff;
    }

    .footer__logo {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

        .footer__logo a {
            display: block;
            height: 2.5rem;
        }

            .footer__logo a img {
                display: block;
                height: 100%;
            }

    .footer__title {
        margin-bottom: .25rem;
        text-transform: uppercase;
        font-style: italic;
        font-size: .875rem;
        font-weight: 500;
        color: #4c5969;
    }

    .footer__menu {
        font-size: 1rem;
        padding: 0;
        list-style-type: none;
    }

        .footer__menu li {
            margin-bottom: .25rem;
        }

.copyright {
    padding: .875rem 0;
    text-align: center;
    font-weight: 500;
    color: #50555f;
    background: #000;
}

    .copyright p {
        margin-bottom: 0;
    }

/* SECTIONS
================================================== */

/*
    Fullscreen
*/

.fullscreen {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/*
    Entry
*/

.entry {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .7);
}

/* MODULES
================================================== */

/*
    Statistic Bar
*/

.statistic-bar {
    position: relative;
    font-weight: 500;
    background: #1f2834;
    border-radius: .5rem;
}

    .statistic-bar__inner {
        display: flex;
        align-items: center;
        overflow: auto;
        padding-right: 1.25rem;
    }

    .statistic-bar__inner::-webkit-scrollbar {
        height: 0;
    }

        .statistic-bar ul {
            display: flex;
            margin: 0 1.5rem 0 0;
            padding: 0;
            list-style-type: none;
        }

            .statistic-bar li {
                padding: 1.125rem 1.125rem;
                border-right: 1px solid #141B24;
                white-space: nowrap;
            }

                .statistic-bar li .coin {
                    margin: 0 .125rem;
                }

        .statistic-bar .link {
            margin-left: auto;
            white-space: nowrap;
        }

/*
    Tabs
*/

.tabs .nav-item {
    margin-right: 1rem;
}

    .tabs .nav-link {
        padding: 0;
        font-size: 1.25rem;
        font-weight: 500;
        color: #4c5969;
    }

    .tabs.small .nav-link {
        position: relative;
        font-size: 1rem;
    }

    .tabs .nav-link.active {
        color: #00CAF6;
    }

    .tabs .nav-link:hover {
        color:#fff;
    }

    .tabs .nav-link.c--white {
        color: #fff;
    }

/*
    Data Table
*/

.data-table__header {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.data-table__title {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #4c5969;
}

.data-table__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    margin-bottom: .5rem;
    color: #949DB0;
    background: #1f2834;
    border-radius: .5rem;
    transition: background-color .3s, color .3s;
}
    .data-table__row__header {
        display: flex;
        align-items: center;
        width: 100%;
    }

        .data-table__column:first-child {
            display: flex;
            align-items: center;
            line-height: 1.2;
            margin-right: auto;
        }

        .data-table__column .avatar {
            margin-right: .75rem;
            overflow:hidden;
        }

        .data-table__column img.coin {
            margin-right: .3125rem;
        }

        .data-table__column:last-child {
            padding-right: 1.25rem;
            padding-left: 1rem;
            text-align: right;
        }

    .data-table__row__body {
        display: none;
        width: 100%;
        padding: 1rem;
        font-weight: 500;
        color: #989ca2;
    }

.data-table__row--link {
    height: 2.5rem;
    justify-content: center;
    text-align: center;
    color: #00CAF6;
}

    .data-table__row--link span {
        display: flex;
        align-items: center;
    }

        .data-table__row--link span svg {
            width: 1rem;
            height: 1rem;
            margin-right: .5rem;
        }

.data-table__row--link:hover {
    color: #fff;
}

    .data-table__row--link:hover span svg {
        fill: #fff;
    }

.data-table__row--active .data-table__row__body {
    display: block;
}

.data-table--layout-2 .data-table__header .data-table__column:last-child {
    padding: 0;
    text-align: left;
}

.list-profile-image {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    overflow: hidden;
    display: inline-table;
}

.list-profile-image img {
    width: 100%;
    height: auto;
}

/*
    Multiple toggle
*/

.form-toggle-multiple {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 3px;
    background:rgb(31, 40, 52);
    border-radius: 0.5rem;
}

.form-toggle-multiple label {
    flex: 1 1 0;
    margin: 0 2px;
    text-align: center;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #949db0;
    cursor: pointer;
}

.form-toggle-multiple label input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-toggle-multiple label span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.875rem;
    padding: .125rem;
    border: 3px solid rgb(31, 40, 52);
    transition: all .3s;
    border-radius: 0.25rem;
}

.form-toggle-multiple label:hover span {
    border-color: rgb(31, 40, 52);
    background: #1F2834;
}

.form-toggle-multiple label input:checked + span {
    border-color: #fff;
    color: rgba(0, 0, 0, .87);
    background: #fff;
}

.filter-header {
    border-bottom:1px solid #1f2834; 
}



/*
    Offcanvas
*/

.offcanvas-backdrop-body {
    overflow: hidden;
    padding-right: 12px;
}

.offcanvas {
    background: #141b24;
    box-shadow: none;
}

    .offcanvas-header {
        position: relative;
        display: block;
    }

        .offcanvas-title {
            font-size: 1.25rem;
        }

        .offcanvas-subtitle {
            font-size: 1rem;
            color: #4c5969;
        }

        .offcanvas__close {
            position: absolute;
            display: block;
            top: 1.375rem;
            right: 1rem;
            width: 1.125rem;
            height: 1.125rem;
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
        }

            .offcanvas__close svg {
                display: block;
                width: 100%;
                height: 100%;
                fill: #fff;
            }

.offcanvas.offcanvas--lg {
    width: 1376px;
    max-width: 95%;
}

.offcanvas.offcanvas--md {
    width: 620px;
    max-width: 95%;
}

.offcanvas-backdrop {
    background: transparent;
    backdrop-filter: blur(3px);
}

.offcanvas-backdrop:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1f2834;
    opacity: .85;
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/*
    Panel
*/

.panel {
    padding: 1.5rem;
    background: #1f2834;
    border-radius: .75rem;
}

    .panel__title {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        text-align: center;
    }

    .panel-euro {
        background-image:url("../img/tots_home.jpg");
        background-size: cover;
        background-position: center center;
    }

    .pl-0 {
        padding-left: 0 !important;
    }

    .predict-form {
        height: 2rem;
        background: #1F2834 !important;
        color: #fff !important;
    }

    .predict-form:focus {
       background: #1F2834 !important;
       color: #fff !important;
    }

    .border-image {
        border-radius:10px;
    }

    .icon-button {
        background: #141b24;
        font-weight: 500;
        color: rgba(255, 255, 255, .54);
        border-radius: .5rem;
    }

        .icon-button svg {
            width: 1rem;
            height: 1rem;
            margin: 12px;
            fill: rgba(255, 255, 255, .54);
            transition: fill .3s;
        }

        .icon-button:hover svg {
            fill: rgba(255, 255, 255, 1);
        }

/*
    Store
*/
.product-desc {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
    
/*
    Euro 2024
*/

.euro-block {
    position: relative;
}

.euro-block::-webkit-scrollbar {
    height: 0;
}

.euro-block-inner {
    min-width: 1116px;
}

.statistic-bar__inner {
    display: flex;
    align-items: center;
    overflow: auto;
    padding-right: 1.25rem;
}

.euro-flag img {
    position: relative !important;
    height:18px;
    margin:-3px 3px 0 0;
}

.euro-profile-row {
    padding-left: 0.75rem;
    height: 40px;
}

.euro-profile-row .task-row__price {
    font-size: .875rem;
}

.euro-profile-row .avatar {
    margin-left: -0.75rem;
    background-color: none;
    margin-right: 0 !important;
}

.pumpkin-click {
    cursor: pointer;
    position:relative;
    z-index:10;
}

.euro-profile-row .avatar span {
    font-size: 1rem;
}

.euro-profile-row .avatar span.small {
    font-size: 0.825rem;
}

.text--right {
    text-align: right;
}

.text--left {
    text-align: left;
}

.list-hl {
    position: relative;
    overflow: hidden;
}

.list-hl:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(222, 61, 106, 1) 0%, rgba(222, 61, 106, 0) 60%);
    opacity: .15;
    z-index: 1;
}

.list-hl .list-vip-member {
    position: relative;
    z-index: 2;
}

.title-with-icon {
    position: relative;
    padding-left: 2em;
    margin-bottom: .5rem;
    font-size: .875rem;
    font-style: italic;
    font-weight: 700;
    color: #FF5D0B;
}

    .title-with-icon svg {
        position: absolute;
        top: -.285714em;
        left: -.285714em;
        width: 1.714286em;
        height: 1.714286em;
        fill: #FF5D0B;
    }

.title-with-icon--sm {
    font-size: .875rem;
}

.title-with-icon--lg {
    padding-left: 2.25em;
    font-size: 1.25rem;
}

.title-with-icon--lg svg {
    left: 0;
}

.title-with-icon--gray {
    color: #949DB0;
}

.title-with-icon--gray svg {
    border-color: #949DB0;
    fill: #949DB0;
}

.title-with-icon--secondary {
    color: #00caf6;
}

.title-with-icon--secondary svg {
    border-color: #00caf6;
    fill: #00caf6;
}

/*
    Prediction
*/
.prediction {
    position: relative;
    padding: .75rem;
    font-size: .8125rem;
    text-align: center;
    background: #141b24;
    border-radius: .5rem;
}
.prediction__teams {
    display: flex;
}
.prediction__team {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.prediction__team img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}
.prediction__team:first-child {
    align-items: flex-end;
}
.prediction__team .form-control,
.prediction__team .form-control:focus {
    color: #fff;
    background-color: #1f2834;
}
.prediction__team .form-control {
    width: 2rem;
    height: 2rem;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
}
.prediction__team .form-control:disabled {
    color: #949DB0;
}
.prediction__team > span {
    display: flex;
    align-items: center;
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
}
.prediction__team-dash {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 2rem;
    font-size: 1.25rem;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}
.prediction__badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.prediction p svg {
    vertical-align: baseline;
    width: .6875rem;
    height: .6875rem;
}

/*
    News feed
*/
.news-item {
    cursor: pointer;
}

.news-item.active-news {
    border:1px solid #00caf6;
}

.news-item .image-left {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.news-item-list {
    cursor: auto;
    background: #1f2834;
    padding: 16px;
    margin-bottom: 1rem;
    border-radius: 12px;
}

/*
Task Box
*/

.panel > p:last-child {
    margin-bottom: 0;
}

/*
Profile Row
*/

.profile-row {
display: flex;
align-items: center;
overflow: hidden;
padding-right: .75rem;
border-radius: .5rem;
background-color: #141B24;
}

.profile-row .avatar {
    width: 2.5rem;
    margin-right: .75rem;
}

.list-vip-member img {
    height: 16px;
    width: auto;
    margin-left: 4px;
}

/*
Circle Chart
*/

.circle-chart {
position: relative;
width: 220px;
height: 110px;
margin: 30px auto 0;
}

.circle-chart .indicator,
.circle-chart .text,
.circle-chart svg {
    position: absolute;
}

.circle-chart svg {
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-chart .indicator {
    z-index: 2;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 100%;
}

    .circle-chart .indicator span {
        position: absolute;
        top: 3px;
        left: 50%;
        width: 20px;
        height: 20px;
        background-color: #fff;
        border-radius: 100%;
        transform: translate(-50%, -50%);
    }

.circle-chart .text {
    z-index: 3;
    left: 0;
    top: 60px;
    width: 100%;
    text-align: center;
}

    .circle-chart .text span {
        display: block;
        font-size: 26px;
        line-height: 1;
        font-weight: 700;
        color: #fff;
    }


.task-box {
    position: relative;
    padding: 1.5rem;
    background: #1f2834;
    border-radius: .75rem;
}

.task-box--highlighted:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 202, 246, 1) 0%, rgba(0, 202, 246, 0) 60%);
    opacity: .1;
    border-radius: .75rem;
}

.task-box--highlighted-pink {
    border: 1px solid #de3d6a;
}

.task-box--highlighted-pink:after {
    background: linear-gradient(135deg, rgb(222, 61, 106, 1) 0%, rgba(222, 61, 106, 0) 60%);
    opacity: .15;
}

.task-box--highlighted-orange {
    border: 1px solid #ff7d2c;
}

.task-box--highlighted-orange:after {
    background: linear-gradient(135deg, rgb(255, 125, 44, 1) 0%, rgba(222, 61, 106, 0) 60%);
    opacity: .15;
}

.task-box--highlighted > * {
    position: relative;
    z-index: 2;
}

.task-box__title {
    font-weight: 700;
}

.task-box__title span {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    color: #949DB0;
}

.task-box__subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    color: #00CAF6;
}

.task-box-inactive {
    opacity: 0.5;
    pointer-events: none;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    color: #949DB0;
    background-color: #1f2834;
    border-radius: .75rem .75rem 0 0;
    overflow: hidden;
}

.rules-table .table-points {
    width: 1rem;
    height: 1rem;
    margin-left: .25rem;
}

.rules-table th, .rules-table td {
    padding: 12px;
    border-bottom: 1px solid #141B24;
}

.rules-table td {
    color: #fff;
}

.rules-table th {
    background-color: #141B24;
}

.rules-table tr:hover {
    background-color: #273545;
}

.rules-table td:nth-child(2),
.rules-table td:nth-child(3),
.rules-table td:nth-child(4),
.rules-table th:nth-child(2),
.rules-table th:nth-child(3),
.rules-table th:nth-child(4) {
    text-align: right;
}

.rules-table .info-icon {
    fill: #949DB0;
    width: 1rem;
    height: 1rem;
    margin-left: .25rem;
}{

}

@media only screen and (max-width: 600px) {
    .rules-table {
        display: table;
    }
    .rules-table th,
    .rules-table td {
        display: table-cell;
    }
}

/*
    Task Row
*/

.task-row {
    padding: .75rem;
    font-size: .8125rem;
    background: #141b24;
    border-radius: .5rem;
}

.task-row__text {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.25;
}

.task-row__text img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
}

.task-row__text p {
    margin-bottom: 0;
}

.task-row__title {
    font-size: .875rem;
    color: #fff;
}

.task-row__price {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.task-row__price img {
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: .25rem;
}

/*
    Counter Row
*/

.counter-row {
    padding: .75rem;
    background-color: #273545;
    border-radius: .5rem;
}

.counter-row__numbers {
    padding: 0;
    list-style-type: none;
}

.counter-row__numbers li {
    margin: .5rem 0;
}

.counter-row__label {
    display: block;
    text-transform: uppercase;
    font-size: .75rem;
    color: #949DB0;
}

.counter-row__label.highlighted {
    color: #8BF946;
}

.counter-row__number {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}

.counter-row__number img {
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: .25rem;
}

/*
    Panel Bar
*/

.panel-bar {
    padding: .5rem;
    background: #1f2834;
    border-radius: .75rem;
}

/*
    Balance Bar
*/

.balance-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5rem;
    padding: .875rem;
}

.balance-bar__title {
    display: block;
    text-transform: uppercase;
    font-size: .75rem;
}

.balance-bar__amount {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.balance-bar__amount img {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem;
}

/*
    Step Bar
*/

.step-bar {
    min-height: 5rem;
    padding: .875rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/*
    Card
*/

.card {
    border-width: 0;
    background-color: #1f2834;
    --bs-card-border-radius: .5rem;
    --bs-card-inner-border-radius: .5rem;
    border: 1px solid #1F2834;
}

.card-title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1rem;
    padding-right: 1.5rem;
}

.card__price {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.card__price img {
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: .25rem;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
    padding: .875rem 1.75rem;
    border: 0;
    font-size: .875rem;
    line-height: 1.42875;
    font-weight: 500;
    box-shadow: none;
    border-radius: .5rem;
}

.btn-xs {
    font-size: .75rem;
    padding-top: .25rem;
    padding-bottom: .175rem;
    border-radius: .25rem;
}

.btn-sm {
    padding-top: .375rem;
    padding-bottom: .375rem;
    border-radius: .375rem;
}

.btn--md {
    padding-top: .6875rem;
    padding-bottom: .6875rem;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .1);
}

    .btn svg {
        width: 1rem;
        height: 1rem;
    }

.btn-primary,
.btn-primary:focus,
.btn-primary.disabled {
    background-color: #00CAF6;
}

.btn-primary.disabled {
    opacity: .5;
}

.btn-primary:hover,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
    background-color: #01b1d8;
}

.btn-primary svg {
    fill: #fff;
}

.btn-secondary,
.btn-secondary:focus {
    background-color: #FF5D0B;
}

.btn-secondary:hover,
.btn-secondary:first-child:active,
:not(.btn-check) + .btn-secondary:active {
    background-color: #e65106;
}

.btn--white,
.btn--white:focus {
    color: #949DB0;
    background-color: #fff;
}

.btn--white:hover,
.btn--white:first-child:active,
:not(.btn-check) + .btn--white:active {
    background-color: #eee;
}

    .btn--white svg {
        fill: #949DB0;
    }

.btn-dark,
.btn-dark:focus {
    background-color: #141B24;
}

.btn-dark:hover,
.btn-dark:first-child:active,
:not(.btn-check) + .btn-dark:active {
    background-color: #080b0f;
}

.btn--gray,
.btn--gray:focus {
    color: #fff;
    background-color: #273545;
}
.btn--gray:hover,
.btn--gray:first-child:active,
:not(.btn-check) + .btn--gray:active {
    color: #fff;
    background-color: #344558;
}

.btn--dark-gray,
.btn--dark-gray:focus {
    color: #fff;
    background-color: #1F2834;
}

.btn--dark-gray:hover,
.btn--dark-gray:first-child:active,
:not(.btn-check) + .btn--dark-gray:active {
    color: #fff;
    background-color: #080b0f;
}

.btn--logo img {
    width: auto;
    height: 1.5rem;
}

/*
    Pricing
*/

.pricing {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: #1F2834;
    border-radius: 1.5rem;
    box-shadow: 0 .5rem 2rem rgba(15, 0, 0, .2);
    color:rgba(255, 255, 255, .8);
}

    .pricing > * {
        position: relative;
        z-index: 2;
    }

    .pricing__title {
        display: flex;
        align-items: center;
        margin-bottom: .75rem;
        text-transform: none;
        font-style: normal;
        font-size: 1.25rem;
        color: #949DB0;
    }

        .pricing__title img {
            display: block;
            width: 2rem;
            height: 2rem;
            margin-right: .75rem;
        }

    .pricing__price {
        display: flex;
        align-items: center;
        margin-bottom: 1.125rem;
        padding-bottom: .625rem;
        font-size: .75rem;
        border-bottom: 1px solid #141B24;
        color: #fff;
    }

        .pricing__price > span {
            margin-right: .875rem;
            font-size: 2.5rem;
            font-weight: 700;
        }

            .pricing__price > span span {
                font-size: 1.625rem;
            }

    .pricing__info {
        display: flex;
        align-items: center;
        padding: .875rem 1rem;
        line-height: 1.25;
        font-size: 1.125rem;
        color: #fff;
        background: #141B24;
        border-radius: .875rem;
    }

        .pricing__info img {
            display: block;
            height: 2rem;
            margin-right: 1rem;
        }

        .pricing__info span {
            display: block;
            font-size: .75rem;
            text-transform: uppercase;
            opacity: .7;
        }

    .pricing .badge {
        position: absolute;
        top: 0;
        right: 2.5rem;
        padding: .625rem 1rem;
        background-color: #949DB0;
        border-radius: 1.5rem;
        transform: translate(0, -50%);
    }

.pricing--basic .list-with-icon svg {
    border-color: #949DB0;
    fill: #949DB0;
}

.pricing--pro .list-with-icon svg {
    border-color: #00caf6;
    fill: #00caf6;
}

.pricing--premium {
    border: 2px solid #FF5D0B;
}

.pricing--premium:before {
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 93, 11, 1) 0%, rgba(255, 93, 11, 0) 100%);
    border-radius: 1.25rem;
    opacity: .15;
}

    .pricing--premium .badge {
        background-color: #FF5D0B;
    }


    /*
    Toggle
*/

.toggle {
    display: flex;
    align-items: center;
    color: #fff;
}

    .toggle__label {
        display: flex;
        flex-wrap: wrap;
        flex: 1 1 0;
    }

    .toggle__label:first-child {
        justify-content: flex-end;
        text-align: right;
    }

    .toggle .form-check {
        padding-top: 0;
        padding-left: 0;
    }

    .toggle .form-check-input {
        margin-top: 0;
        margin-left: .75rem;
    }

    .text--highlighted {
        position: relative;
        font-style: italic;
        color: #8bf946;
    }
    
    .text--highlighted:after {
        position: absolute;
        content: "";
        top: 100%;
        right: 0;
        left: 0;
        height: 5px;
        margin-top: 2px;
        background: url("../img/underline.png") center top no-repeat;
        background-size: 100% 100%;
    }
    
/*
	Form components
*/

.form-control,
.form-select {
    padding: .53125rem 1rem;
    font-size: .875rem;
    border-radius: .5rem;
}

.form-control-lg,
.form-select-lg {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    color: #949db0;
    background-color: #141B24;
    box-shadow: none;
}

.form-control,
.form-select {
    border-color: #1f2834;
}

.form-control:focus,
.form-select:focus,
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #4c5969;
}

.form-control--dark,
.form-control--dark:focus,
.form-select--dark,
.form-select--dark:focus,
.form-control--dark.is-valid:focus,
.was-validated .form-control--dark:valid:focus {
    background-color: #0c0f14;
}

.form-control--dark,
.form-select--dark,
.form-control--dark.is-valid,
.was-validated .form-control--dark:valid {
    border-color: #273545;
}

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > label {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .form-floating > .form-control {
        color: #fff;
    }

    .form-floating > label {
        font-weight: 500;
    }

    .form-floating > svg {
        position: absolute;
        display: none;
        z-index: 1;
        top: 50%;
        right: 1rem;
        width: 1.25rem;
        height: 1.25rem;
        transform: translate(0, -50%);
    }


    .form-floating > .form-control-plaintext ~ label,
    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label,
    .form-floating > .form-select ~ label {
        opacity: 1;
        transform: scale(.75) translateY(-.125rem) translateX(.3125rem);
    }


.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: none;
}

    .form-control.is-valid ~ svg,
    .was-validated .form-control:valid ~ svg {
        display: block;
    }

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #ff2d0b;
    background-image: none;
}

.invalid-feedback {
    font-size: .875rem;
    color: #ff2d0b;
}

.form-select-date {
    position: relative;
}

    .form-select-date .form-select {
        margin: 0;
        padding-right: 3rem;
        background-image: none;
    }

    .form-select-date svg {
        position: absolute;
        z-index: 1;
        top: 50%;
        right: .875rem;
        width: 1rem;
        height: 1rem;
        margin: 0;
        fill: #4c5969;
        transform: translate(0, -50%);
    }

.form-check:not(.form-switch) {
    margin-bottom: 0;
    padding-bottom: .5625rem;
    padding-top: .5625rem;
    padding-left: 3rem;
    font-weight: 500;
}

    .form-check:not(.form-switch) .form-check-input {
        width: 2.5rem;
        height: 2.5rem;
        margin-top: -.5625rem;
        margin-left: -3rem;
        border: 1px solid #273545;
        background-color: #0c0f14;
        background-size: 1.25rem 1.25rem;
        border-radius: .5rem;
        box-shadow: none;
    }

    .form-check:not(.form-switch) .form-check-input:focus {
        border-color: #4c5969;
        box-shadow: none;
    }

.form-check--sm:not(.form-switch) {
    padding-left: 2rem;
    padding-bottom: .3125rem;
    padding-top: .3125rem;
}

    .form-check--sm:not(.form-switch) .form-check-input {
        width: 1.5rem;
        height: 1.5rem;
        margin-top: -.125rem;
        margin-left: -2rem;
        background-size: 1rem 1rem;
    }

.form-switch {
    display: flex;
    margin-bottom: 0;
    padding-top: .3125rem;
}

    .form-switch .form-check-input,
    .form-switch .form-check-input:focus,
    .form-switch .form-check-input:active,
    .form-switch .form-check-input:checked {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 7 7'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e");
    }

    .form-switch .form-check-input {
        position: relative;
        display: block;
        width: 3.5rem;
        min-width: 3.5rem;
        height: 1.875rem;
        top: 0;
        border: 0;
        margin-top: -0.3125rem;
        margin-right: 0.5rem;
        background-color: #273545;
        border-radius: 2rem;
        cursor: pointer;
    }

    .form-switch .form-check-input:active {
        filter: none;
    }

    .form-switch .form-check-input:checked {
        background-color: #00CAF6;
    }

    .form-switch .form-check-input:focus {
        box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .05);
    }

.input-copy {
    position: relative;
}

.input-copy:after {
    position: absolute;
    z-index: 1;
    content: "";
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 50%;
    min-width: 6.25rem;
    background: linear-gradient(to right, rgba(0 0 0 / 0%) 0%, rgba(0 0 0 / 100%));
    border-radius: .5rem;
    pointer-events: none;
}

    .input-copy .btn {
        position: absolute;
        z-index: 2;
        top: 50%;
        right: .75rem;
        transform: translate(0, -50%);
    }

/*
    Edit Value
*/

.edit-value {
    display: flex;
    align-items: center;
    width: 7.5rem;
    padding-left: .5rem;
    font-weight: 500;
    border-radius: .25rem;
}
    .edit-value__text {
        width: 100%;
    }

    .edit-value input,
    .edit-value input:focus {
        padding: 0;
        border: 0;
        font-weight: inherit;
        font-size: inherit;
        color: #fff;
        background: transparent;
    }

    .edit-value__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
        height: 1.5rem;
        border: 0;
        background: #141b24;
        border-radius: .25rem;
    }

        .edit-value__btn svg {
            width: .625rem;
            height: .625rem;
            fill: #949db0;
            transition: opacity .3s;
        }

    .edit-value__btn:hover svg {
        opacity: .7;
    }

.edit-value--active {
    background: #141b24;
}

    .edit-value--active .edit-value__btn svg {
        fill: #fff;
    }

/*
    Link
*/

.link {
    cursor:pointer;
}

.link svg {
    width: .75rem;
    height: .75rem;
    fill: #00CAF6;
    transition: fill .3s;
}

.link:hover svg {
    fill: #fff;
}

.link.c--white svg {
    fill: #fff;
}

/*
    Avatar
*/

.avatar {
    position: relative;
    width: 4rem;
}

.avatar.small {
    width: 3rem;
}

.avatar:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

    .avatar img:first-child {
        position: absolute;
        z-index: 1;
        width: 195%;
        height: 195%;
        object-fit: cover;
        top: -50%;
    }

    .avatar img:last-child {
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .avatar span {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        font-size: 1.25rem;
        text-align: center;
        font-weight: 500;
        transform: translate(0, -50%);
        color: #949DB0;
    }

/*
    Lists
*/

/*
    Lists
*/

.list-with-icon {
    padding: 0;
    list-style-type: none;
    line-height: 1.25;
    color: #fff;
}

    .list-with-icon li {
        position: relative;
        padding-left: 1.75em;
        margin-bottom: .3125em;
    }

        .list-with-icon svg {
            position: absolute;
            display: flex;
            align-items: center;
            top: .175em;
            left: 0;
            width: 1em;
            height: 1em;
            fill: #FF5D0B;
            transition: fill .3s;
        }

        .list-with-icon a:hover svg {
            fill: #fff;
        }

.list-with-icon--circle svg {
    padding: .15em;
    border: 1px solid #FF5D0B;
    border-radius: 100%;
}

.list-with-icon--secondary svg {
    border-color: #00caf6;
    fill: #00caf6;
}

.list-with-icon--gray svg {
    border-color: #949DB0;
    fill: #949DB0;
}



.number-list {
    counter-reset: list-counter;
    padding: 0;
    list-style-type: none;
}

    .number-list li {
        position: relative;
        margin-bottom: .5rem;
        padding: .125em 0 .125em 2.5em;
    }

    .number-list li:before {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        counter-increment: list-counter;
        content: counter(list-counter);
        top: 0;
        left: 0;
        width: 1.5rem;
        height: 1.5rem;
        font-size: .75rem;
        text-align: center;
        color: #fff;
        background: #18B1D3;
        border-radius: 100%;
    }

.step-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.step-list li {
    display: flex;
    align-items: center;
}

.step-list li:not(:last-child) {
    margin-bottom: .5rem;
}

.step-list li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: .75rem;
    background: #141B24;
    border-radius: .75rem;
}

.step-list li .icon svg {
    display: block;
    width: 1rem;
    height: 1rem;
    fill: #00CAF6;
}

.step-list li .arrow {
    display: none;
}

.step-list li.highlighted {
    color: #FF5D0B;
}

.step-list li.highlighted svg {
    fill: #FF5D0B;
}
/*
    Pagination
*/

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .pagination li {
        margin: 0 .25rem .5rem;
    }

    .pagination li:first-child {
        margin-right: auto;
        margin-left: 0;
    }

    .pagination li:last-child {
        margin-right: 0;
        margin-left: auto;
    }


        .pagination li a,
        .pagination li span {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 2.5rem;
            height: 2.5rem;
            font-weight: 500;
            color: #858ea0;
            background: #1f2834;
            border-radius: .25rem;
        }

        .pagination li a:hover,
        .pagination li .pagination__current {
            color: #e8eaec;
            background: #4c5969;
        }

            .pagination li svg {
                width: 1rem;
                height: 1rem;
                fill: #858ea0;
                transition: fill .3s;
            }

            .pagination li a:hover svg {
                fill: #e8eaec;
            }

    .pagination li:first-child span,
    .pagination li:last-child span {
        opacity: .4;
    }

/* ENTRY
================================================== */  
.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
    text-transform: none;
}

.entry h3 {
    font-size: 1.5rem;
}

.entry h4 {
    font-size: 1.125rem;
    border-left: 3px solid #00CAF6;
    padding-left: 8px;
}

.entry h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
}

.entry figure.outline-panel img {
    border-radius: 10px;
}

.entry {
    line-height: 1.5;
    font-size: 17px;
}

.entry ul li {
    margin-bottom: 10px;
}


/*
    Titles
*/

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
}

a.page-title {
    color: #4c5969;
    font-weight:500;
}

a.page-title:hover {
    color: #ffffff;
}

.page-title--lg {
    font-size: 2rem;
    font-weight: bold;
}

.section-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title--sm {
    font-size: 1.5rem;
}

.section-subtitle {
    margin-bottom: .5rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-style: italic;
    color: #FF5D0B;
}

.section-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, .8);
}

.section-title + .section-description {
    /* margin-top: -.875rem; */
}

.article-title {
    font-size: 1.5rem;
}


/*
    Coin
*/

.coin {
    width: 1rem;
    max-width: none;
    height: 1rem;
}

/*
    Site Logo
*/

.site-logo {
    margin-bottom: 2rem;
    text-align: center;
}

    .site-logo img {
        height: 3rem;
    }

/*
Badge Outline
*/
.badge-outline {
    display: flex;
    align-items: center;
    padding: .1875rem .5rem;
    border: 1px solid #273545;
    font-size: .8125rem;
    line-height: 1;
    color: #fff;
    border-radius: .375rem;
}
.badge-outline svg {
    width: 1rem;
    height: 1rem;
}
.badge-outline--secondary {
    color: #FF5D0B;
    border-color: #FF5D0B;
}

/* GLOBALS
================================================== */

.c--white {
    color: #fff;
}

.c--success {
    color: #8bf946;
}

.c--primary {
    color: #00caf6 !important;
}

.c--secondary {
    color: #FF5D0B;
}

.c--light {
    color: rgba(255, 255, 255, .7);
}

.c--pink {
    color: #E23E6C;
}

.fill--disabled {
    fill: #949db0;
}

.fill--success {
    fill: #8bf946;
}

.c--pink {
    color: #E91E63 !important;
}

.c--premium {
    color:#f1c40f;
}

.fill--secondary {
    fill: #FF5D0B;
}
.miw--32 {
    min-width: 32px;
}


.mt-m1 {
    margin-top: -1rem;
}

.miw--57 {
    min-width: 57px;
}

.miw--78 {
    min-width: 78px;
}

.w--112 {
    width: 112px;
}

.w--120 {
    width: 120px;
}

.w--240 {
    width: 240px;
}

.h--24 {
    height: 24px;
}

.h--42 {
    height: 42px;
}

.fw-bold {
    font-weight: 500 !important;
}

.text--sm {
    font-size: .75rem;
}

.text--lg {
    font-size: 1rem;
}

.icon--20 {
    width: 1.25rem;
    height: 1.25rem;
}

.icon--24 {
    width: 1.5rem;
    height: 1.5rem;
}

.rounded--lg {
    border-radius: 1.5rem;
}

/* RESPONSIVE
================================================== */

/*
	XS
*/

@media screen and (max-width: 575px) {

}

/*
	SM and down
*/

@media screen and (max-width: 767px) {
    .container {
        overflow-x: hidden;
    }
}

/*
	SM and up
*/
@media screen and (min-width: 768px) {
    .prediction__team {
        flex-direction: row;
        align-items: center;
    }
}

/*
	MD and up
*/

@media screen and (min-width: 992px) {
    .data-table__row:hover {
        color: #949DB0;
        background: #273545;
    }

    .section-title {
        font-size: 2.5rem;
    }

    
}


/*
	MD and down
*/

@media screen and (max-width: 991px) {

    .menu__dropdown__menu,
    .menu__dropdown__list {
        position: fixed;
        visibility: hidden;
        top: 3.5rem;
        right: 0;
        left: 0;
        width: 100%;
        border-top: 0;
    }

    .menu__dropdown__menu:after,
    .menu__dropdown__list:after {
        position: absolute;
        content: "";
        z-index: 1;
        top: 100%;
        right: 0;
        left: 0;
        height: 200px;
        background: linear-gradient(to bottom, rgba(20, 27, 36, 1) 0%, rgba(20, 27, 36, 0) 100%);
        pointer-events: none;
    }

    .data-table__row--active .data-table__row__header {
        background: #273545;
    }

    .upgrade-mobile-alert {
        background: #0c0f14;
        padding: 1rem;
        font-size: 1rem;
        color: #fff;
        border-radius: 12px;
    }

    .euro-block-inner {
        min-width: calc(90% * 3);
    }

    .news-item .text-with-image {
        width: 60px;
    }
}

.keen-slider {
    touch-action: auto !important;
}

.main-top-menu-inner {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    margin: 0 0 0 1.5rem;
    padding: 0;
    list-style-type: none;
}

.header__menu a {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.header__menu li:hover > a,
.header__menu li.active > a {
    color: #fff;
    background-color: #273545;
}

.header__menu a svg {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .5rem;
    fill: #fff;
}

/*
	XXL and up
*/

@media screen and (max-width: 1200px) {

    .statistic-bar:after {
        position: absolute;
        content: "";
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80px;
        background: linear-gradient(to right, rgba(31, 40, 52, 0) 0%, rgba(31, 40, 52, 1) 100%);
        border-radius: 0 .5rem .5rem 0;
        pointer-events: none;
    }

    .main-top-menu:after {
        position: absolute;
        content: "";
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width:3rem;
        background: linear-gradient(to right, rgba(20, 27, 36, 0) 0%, rgba(20, 27, 36, 1) 100%);
        pointer-events: none;
    }

    .main-top-menu {
        overflow: hidden;
        position: relative;
    }

    .main-top-menu-inner {
        overflow: auto;
        padding-right: 3rem;
    }

    .euro-block {
        overflow: auto;
    }
}

/*
    MD and up
*/

@media screen and (min-width: 768px) {

    .counter-row__numbers {
        display: flex;
    }

    .counter-row__numbers li {
        margin: 0 1.5rem 0 0;
    }

    .counter-row__numbers li:last-child {
        text-align: right;
        margin-left: auto;
        margin-right: 0;
    }

    .counter-row__numbers li:last-child .counter-row__number {
        justify-content: flex-end;
    }

}

/*
	LG and up
*/

@media screen and (min-width: 992px) {

    .header {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        background: transparent;
    }

        .header__inner {
            padding: 0 1.25rem;
            background: #1f2834;
            border-radius: .75rem;
            box-shadow: 0 .5rem 2rem rgba(15, 0, 0, .2);
        }

        .header .container {
            box-shadow: none;
        }
        

    .header__dropdown__btn {
        height: 4rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-title--lg {
        font-size: 3rem;
    }

    .data-table__row {
        margin-bottom: .75rem;
    }

        .data-table__column:first-child {
            margin-right: 0;
        }

            .data-table__column .avatar {
                margin-right: 1.25rem;
            }

    .data-table--layout-1 .data-table__column:nth-child(1) { width: 25%; }
    .data-table--layout-1 .data-table__column:nth-child(2) { width: 25%; }
    .data-table--layout-1 .data-table__column:nth-child(3) { width: 15%; }
    .data-table--layout-1 .data-table__column:nth-child(4) { width: 18%; }
    .data-table--layout-1 .data-table__column:nth-child(5) { width: 10%; }
    .data-table--layout-1 .data-table__column:nth-child(6)   { width: 7%; }

    .data-table--layout-2 .data-table__column:nth-child(1) { width: 25%; }
    .data-table--layout-2 .data-table__column:nth-child(2) { width: 25%; }
    .data-table--layout-2 .data-table__column:nth-child(3) { width: 25%; }
    .data-table--layout-2 .data-table__column:nth-child(4) { width: 18%; }
    .data-table--layout-2 .data-table__column:nth-child(5) { width: 7%; }

    .data-table--layout-3 .data-table__column:nth-child(1) { width: 46%; }
    .data-table--layout-3 .data-table__column:nth-child(2) { width: 22%; }
    .data-table--layout-3 .data-table__column:nth-child(3) { width: 14%; }
    .data-table--layout-3 .data-table__column:nth-child(4) { width: 18%; }

    .data-table--layout-4 .data-table__column:nth-child(1) { width: 46%; }
    .data-table--layout-4 .data-table__column:nth-child(2) { width: 16%; }
    .data-table--layout-4 .data-table__column:nth-child(3) { width: 19%; }
    .data-table--layout-4 .data-table__column:nth-child(4) { width: 19%; }

    .panel {
        padding: 3rem;
    }

        .panel__title {
            margin-bottom: 1.75rem;
        }

    .site-logo {
        margin-bottom: 4rem;
    }

        .site-logo img {
            height: 4rem;
        }

        .panel__separator {
            position: relative;
            margin-top: 1rem;
            margin: 1.5rem 0;
            border-top: 1px solid #273545;
        }
        
            .panel__separator span {
                position: absolute;
                top: 0;
                left: 0;
                padding: .125rem 1rem;
                font-size: .75rem;
                font-weight: 500;
                color: #949DB0;
                background-color: #273545;
                transform: translate(0, -50%);
                border-radius: 2rem;
            }
        
        .panel__footer-logo {
            height: 1.5rem;
        }
        
        .panel.p-4 .panel__separator {
            margin-left: -1.5rem;
            margin-right: -1.5rem;
        }
        
            .panel.p-4 .panel__separator span {
                margin-left: 1.5rem;
            }

    .step-bar {
        display: flex;
        align-items: center;
    }

    .task-box {
        padding: 2rem;
    }

    .step-list {
        display: flex;
        align-items: center;
    }

    .step-list li:not(:last-child) {
        margin-right: 1.25rem;
        margin-bottom: 0;
    }

    .step-list li .arrow {
        display: flex;
        align-items: center;
        margin-left: 1.25rem;
    }

    .step-list li .arrow svg {
        display: block;
        width: .75rem;
        height: .75rem;
        margin: 0 -.25rem;
        fill: #fff;
    }

}

/*
    XL and up
*/

@media screen and (min-width: 1200px) {

    .pricing {
        font-size: 1rem;
    }
    

    .offcanvas-header,
    .offcanvas-body {
        padding: 2rem;
    }

        .offcanvas__close {
            top: 2rem;
            right: 2rem;
        }

        .offcanvas-title {
            font-size: 1.75rem;
        }

        .offcanvas-subtitle {
            font-size: 1.25rem;
        }

}
