:root {
    --fontmain: 'Poppins', sans-serif;
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #1e1e1e;
    --text-browngrey: #a6a6a6;
    --text-brownishgrey: #686868;
    --text-grey: #959595;
    --text-gradient-1: #33c2e0;
    --text-gradient-2: #25c692;
    --text-gradient-3: #18c949;
    --text-gradient: linear-gradient(to right, #33c2e0 0%, #18c949 100%);
    --btn-light-bg: #f3f3f3;
    --btn-dark-bg: #212121;
    --btn-dark-active: #2b2b2b;
    --icon-fill: #1d1d1d;
    --icon-fill-2: #d2d2d2;
}

* {
    box-sizing: border-box;
}


body {
    font-family: var(--fontmain);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-dark);
    background-color: transparent !important;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100vw;
    margin: 0px;
    padding: 0px;
    line-height: 1.428571429;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

h3 {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.36px;
    text-transform: uppercase;
}

h5 {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
}

a {
    color: var(--text-dark);
    text-decoration: none;
}

    a:hover {
        color: var(--btn-dark-active);
        text-decoration: none;
    }

/*#region Custom*/

/*#region Navigation*/

.landing_navigation_container {
    position: fixed;
    width: 100vw;
    height: 124px;
    z-index: 9;
    background-color: transparent;
    transition: 0.33s;
}

.landing_navigation {
    display: flex;
    width: 1200px;
    height: 124px;
    z-index: 10;
    position: fixed;
    transition: 0.33s;
}

.landing_navigation_mobile {
    display: none;
    width: calc(100% - 100px);
    height: 124px;
    z-index: 10;
    position: fixed;
    transition: 0.33s;
}

.landing_navigation_buttons {
    display: block;
    width: 240px;
    height: 44px;
    margin: 60px 0 0 0;
    transition: 0.33s;
}

.landing_logo {
    width: 160px;
    height: 35px;
    margin: 48px 0px 40px 0px;
    display: block;
    background: var(--icon-fill);
    cursor: pointer;
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/streakon_logo_35.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/streakon_logo_35.svg') no-repeat center;
    transition: 0.33s;
}

.landing_logo_s {
    width: calc(100vw - 150px);
    height: 44px;
    margin: 44px 0 36px 50px;
    display: inline-block;
    background: var(--icon-fill);
    cursor: pointer;
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S.svg') no-repeat left center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S.svg') no-repeat left center;
    transition: 0.33s;
}

.landing_menu_close {
    width: 44px;
    height: 44px;
    margin: 44px 0 36px 0;
    border-radius: 6px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.33s;
}

    .landing_menu_close:hover {
        background: rgba(0, 0, 0, 0.10);
    }

.landing_menu_close_img {
    width: 100%;
    height: 100%;
    margin: auto;
    display: block;
    background: var(--text-browngrey);
    cursor: pointer;
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/x_main.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/x_main.svg') no-repeat center;
}

.landing_menu_open {
    width: 100% !important;
}

.landing_menu {
    width: 800px;
    margin: 60px 0 0 0;
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
    transition: 0.33s;
}

.landing_hamburger {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 20px;
    height: 44px;
    display: inline-block;
    cursor: pointer;
    background: var(--icon-fill);
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_tablet.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_tablet.svg') no-repeat center;
    transition: 0.33s;
}

    .landing_hamburger:hover {
        background: var(--icon-fill-2);
    }

.scrolled {
    background-color: var(--bg-light);
    -webkit-box-shadow: 0px 0px 2px 0px #f3f3f3;
    -moz-box-shadow: 0px 0px 2px 0px #f3f3f3;
    box-shadow: 0px 0px 2px 0px #f3f3f3;
    height: 80px;
    transition: 0.33s;
}

    .scrolled .landing_navigation_container {
        height: 80px;
        transition: 0.33s;
    }

    .scrolled .landing_navigation {
        height: 80px;
        transition: 0.33s;
    }

    .scrolled .landing_navigation_mobile {
        height: 80px;
        transition: 0.33s;
    }

    .scrolled .landing_navigation_buttons {
        margin: 30px 0 0 0;
        transition: 0.33s;
    }

    .scrolled .landing_logo {
        margin: 22px 0px 0px 0px;
        transition: 0.33s;
    }

    .scrolled .landing_logo_s {
        margin: 18px 0px 0px 50px;
        transition: 0.33s;
    }

    .scrolled .landing_menu_close {
        margin: 18px 0 0 0;
        transition: 0.33s;
    }

    .scrolled .landing_menu {
        margin: 30px 0 0 0;
        transition: 0.33s;
    }

    .scrolled .landing_hamburger {
        top: 18px;
        transition: 0.33s;
    }

.landing_menu_item {
    flex-basis: 100%;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.landing_menu_item:hover {
    text-decoration: none;
    opacity: 0.8;
}

.landing_menu_mobile {
    position: fixed;
    right: 0;
    top: 0;
    width: 0px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
    z-index: 20;
    background-color: var(--bg-light);
    transition: 0.33s;
    display: none;
}

.landing_menu_mobile_item {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 0 10px 50px;
}

    .landing_menu_mobile_item:hover {
        text-decoration: none;
        opacity: 0.8;
    }



/*#endregion*/

.landing_page {
    width: 100vw;
    overflow-x: hidden;
    align-content: start;
}

.landing_content {
    padding-top: 124px;
}

.landing_container {
    width: 1200px;
    margin: auto;
}

.landing_container_table_full {
    display: table;
    height: 100%;
}

.landing_container_table_content {
    display: table-cell;
    vertical-align: middle;
}

.landing_container_table_section_1 {
    padding-bottom: 210px;
    padding-top: 90px;
    padding-right: 390px;
}

.landing_cotainer_padding{
    padding-left: 0px;
    padding-right: 0px;
}

.landing_cotainer_padding_top {
    padding-top: 80px;
    padding-bottom: 80px;
}

.landing_cotainer_padding_top_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.landing_tab_padding {

}

.landing_hidden {
    display: none !important;
    transition: 0.33s;
}

/*#region Footer*/
.landing_footer {
    color: var(--text-brownishgrey);
    align-items: start;
}

    .landing_footer a {
        color: var(--text-browngrey);
    }

        .landing_footer a:hover {
            color: var(--text-light);
        }

.landing_footer_padding {
    padding-bottom: 160px;
    padding-top: 160px;
}

.landing_footer_button_container {
    float: right;
    margin-top: 25px;
    margin-right: 20px;
}

.landing_footer_claim {
    display: inline-block;
    width: calc(100% - 250px);
    text-align: left;
}

.landing_footer_button {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    background-color: var(--bg-light);
    border-radius: 6px;
    padding: 16px 60px;
    cursor: pointer;
}

    .landing_footer_button:hover {
        opacity: 0.9;
    }

.landing_footer_widget {
    display: inline-block;
    width: 18%;
    padding-left: 50px;
    vertical-align: top;
}

    .landing_footer_widget:first-child {
        display: inline-block;
        width: 44%;
        padding-left: 0;
    }

/*#endregion*/

/*#region Section1*/

.landing_section_1 {
    height: 950px;
    background-color: var(--bg-light);
    background-image: url('https://www.streakon.com/wp-content/uploads/2021/01/image_home-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right 0px center;
}

.landing_section_1_ls {
    margin-top: -230px;
}

.landing_section_1_iframe {
    width: 100%;
    height: 220px;
    overflow-y: hidden;
}

.landing_button_play {
    border-radius: 6px;
    padding: 16px 30px 16px 70px;
    color: var(--text-light);
    font-weight: bold;
    font-size: 16px;
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/bt_play_white.svg') var(--bg-dark);
    background-repeat: no-repeat;
    background-position: left 30px center;
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
}

    .landing_button_play:hover {
        background-position: left 27px center;
        background-size: 26px;
        opacity: 0.9;
    }

.landing_button_arrow {
    border-radius: 6px;
    padding: 16px 50px 16px 30px;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 16px;
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small.svg') var(--bg-light);
    background-repeat: no-repeat;
    background-position: right 30px center;
    cursor: pointer;
    display: inline-block;
    transition: 0.33s;
}

    .landing_button_arrow:hover {
        background-position: right 27px center;
        opacity: 0.9;
    }

/*#endregion*/

/*#region Section2*/

.landing_section_2 {
    background-image: url('https://www.streakon.com/wp-content/uploads/2021/01/img_stadium_top-scaled.jpg'), url('https://www.streakon.com/wp-content/uploads/2021/01/img_ball-scaled.jpg');
    background-size: contain, contain;
    background-repeat: no-repeat, no-repeat;
    background-position: 50% calc(50% - 500px), center bottom;
}

.landing_flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.landing_flex_tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.landing_flex_tab_rev {
}

.landing_1_of_4 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 25%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

    .landing_1_of_4:first-child {
        padding-left: 0px;
    }

    .landing_1_of_4:last-child {
        padding-right: 0px;
    }

.landing_1_of_3 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 33.3%; 
    -webkit-flex: 1; 
    -ms-flex: 1;
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
}

    .landing_1_of_3:first-child {
        padding-left: 0px;
    }

    .landing_1_of_3:last-child {
        padding-right: 0px;
        width: 33.4%;
    }

.landing_1_of_2 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 50%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 57px;
    padding-right: 57px;
}

    .landing_1_of_2:first-child {
        padding-left: 0px;
    }

    .landing_1_of_2:last-child {
        padding-right: 0px;
    }

.landing_show_hover {
    opacity: 0;
    font-size: 16px;
    font-weight: bold;
    padding-top: 20px;
    transition: 0.33s;
}

.landing_play {
    display: block;
    width: 90px;
    height: 90px;
    margin: auto;
}

.landing_play_icon {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    margin-top: 30px;
    margin-left: 33px;
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/play_white_16.svg') no-repeat center;
    cursor: pointer;
}

.landing_play_circle {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    margin: 8.5px;
    position: absolute;
    z-index: 1;
    transition: 0.33s;
    background: var(--text-dark);
    box-shadow: 0 0 0 9px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0.9;
}

.landing_play_circle_sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 3px;
    margin: 8.5px;
    position: absolute;
    z-index: 1;
    transition: 0.33s;
    background: var(--text-dark);
    box-shadow: 0 0 0 6px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0.9;
}

.landing_play_sm {
    display: block;
    width: 60px;
    height: 60px;
    margin: auto;
}

.landing_play_icon_sm {
    position: absolute;
    z-index: 2;
    width: 11px;
    height: 14px;
    margin-top: 26px;
    margin-left: 29.5px;
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/play_white_16.svg') no-repeat center;
    background-size: 11px;
    cursor: pointer;
}

.landing_play_1 {
    background: var(--text-gradient-1);
    box-shadow: 0 0 0 9px rgba(51,194,224,0.2);
}

.landing_play_2 {
    background: var(--text-gradient-2);
    box-shadow: 0 0 0 9px rgba(37,198,146,0.2);
}

.landing_play_3 {
    background: var(--text-gradient-3);
    box-shadow: 0 0 0 9px rgba(24,201,73,0.2);
}

.landing_arrow_1 {
}

    .landing_arrow_1:after {
        content: '\00a0 \00a0 \00a0 \00a0 \00a0';
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small_1.svg') no-repeat right center;
    }

.landing_arrow_2 {
}

    .landing_arrow_2:after {
        content: '\00a0 \00a0 \00a0 \00a0 \00a0';
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small_2.svg') no-repeat right center;
    }

.landing_arrow_3 {
}

    .landing_arrow_3:after {
        content: '\00a0 \00a0 \00a0 \00a0 \00a0';
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small_3.svg') no-repeat right center;
    }

.landing_video_box {
    cursor: pointer;
}

    .landing_video_box:hover {}

        .landing_video_box:hover .landing_show_hover {
            opacity: 1;
        }

        .landing_video_box:hover .landing_play_1 {
            opacity: 1;
            box-shadow: 0 0 0 12px rgba(51,194,224,0.2), 0 0 0 2px var(--text-gradient-1);
        }

        .landing_video_box:hover .landing_play_2 {
            opacity: 1;
            box-shadow: 0 0 0 12px rgba(37,198,146,0.2), 0 0 0 2px var(--text-gradient-2);
        }

        .landing_video_box:hover .landing_play_3 {
            opacity: 1;
            box-shadow: 0 0 0 12px rgba(24,201,73,0.2), 0 0 0 2px var(--text-gradient-3);
        }

.landing_section_2_claim {
    width: calc(100% - 420px);
}

.landing_section_2_chart {
    position:absolute;
    top: -15px;
    right: -280px;
    width: 600px;
    height: 320px;
    overflow: hidden;
    z-index:2;
}

.landing_section_2_iframe {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.landing_image_left {
    float: right;
    width: calc(100vw /2 + 100px);
}

.landing_image_right {
    float: left;
    width: calc(100vw /2 + 100px);
}

.landing_image_full {
    margin: 0 auto;
    width: 951px;
    object-fit: cover;
}

.landing_dark_switch {
    display: flex;
    width: 370px;
    height: 54px;
    font-size: 14px;
    margin: 30px 0 0 0;
    border-radius: 6px;
    color: var(--text-brownishgrey);
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--btn-dark-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.landing_dark_switch_item {
    height: 50px;
    margin: 2px;
    border-radius: 4px;
    text-align: center;
    padding: 15px;
    width: 50%;
    cursor: pointer;
}

.landing_dark_switch_on {
    color: var(--text-light);
    background-color: var(--btn-dark-active);
}

.landing_dark_select {
    width: 265px;
    height: 54px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 30px 0 0 0;
    border-radius: 6px;
    border-color: var(--btn-dark-bg);
    color: var(--text-light);
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--fontmain);
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down_white.svg') no-repeat right 20px center var(--btn-dark-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .landing_dark_select:hover {
        color: var(--text-light);
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down_white.svg') no-repeat right 20px center var(--btn-dark-bg);
    }

    .landing_dark_select:active {
        color: var(--text-light);
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down_white.svg') no-repeat right 20px center var(--btn-dark-bg);
        border-color: var(--btn-dark-bg);
    }

    .landing_dark_select:focus {
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down_white.svg') no-repeat right 20px center var(--btn-dark-bg);
        border-color: var(--btn-dark-bg);
    }

.landing_light_select {
    width: 265px;
    height: 54px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 30px 0 0 0;
    border-radius: 6px;
    border-color: var(--btn-light-bg);
    color: var(--text-dark);
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--fontmain);
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down.svg') no-repeat right 20px center var(--btn-light-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .landing_light_select:hover {
        color: var(--text-dark);
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down.svg') no-repeat right 20px center var(--btn-light-bg);
    }

    .landing_light_select:active {
        color: var(--text-dark);
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down.svg') no-repeat right 20px center var(--btn-light-bg);
        border-color: var(--btn-dark-bg);
    }

    .landing_light_select:focus {
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_down.svg') no-repeat right 20px center var(--btn-light-bg);
        border-color: var(--btn-light-bg);
    }

.landing_theme_mode {
    width: 186px;
    height: 54px;
    margin: 30px 0 0 0;
    border-radius: 6px;
    background-color: var(--btn-light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing_theme_mode_button {
    height: 50px;
    width: auto;
    flex: 1;
    margin: 2px;
    border-radius: 4px;
    display: flex;
    cursor: pointer;
}

.landing_theme_light {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--text-browngrey);
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/mode_Day.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/mode_Day.svg') no-repeat center;
}

.landing_theme_dark {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--text-browngrey);
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/mode_night.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/mode_night.svg') no-repeat center;
}

.landing_button_white {
    background-color: var(--bg-light);
}

    .landing_button_white .landing_theme_light {
        background-color: var(--bg-dark);
    }

    .landing_button_white .landing_theme_dark {
        background-color: var(--bg-dark);
    }

.landing_tab_item {
    font-size: 16px;
    font-weight: bold;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    color: var(--text-browngrey);
    transition: 0.33s;
    cursor: pointer;
}

.landing_tab_item:hover {
    color: var(--text-dark);
}

    .landing_tab_item_active {
        border-bottom: 2px solid var(--bg-dark);
        color: var(--text-dark);
    }

.landing_play_tutorial {
    position: absolute;
    left: calc(50% - 45px);
    top: calc(50% - 45px);
    z-index: 2;
}

.landing_play_tutorial_sm {
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 60px);
    z-index: 2;
    display: none;
}

.landing_tutorial_image_container {
    position: relative;
    cursor: pointer;
}

    .landing_tutorial_image_container:hover .landing_play_circle {
        opacity: 1;
        box-shadow: 0 0 0 12px rgba(0,0,0,0.2), 0 0 0 2px var(--text-dark);
    }

/*.landing_play_tutorial:hover .landing_play_circle {
    opacity: 1;
    box-shadow: 0 0 0 12px rgba(0,0,0,0.2), 0 0 0 2px var(--text-dark);
}*/

.landing_leagues_table {
    height: calc(168px * 2 + 1px);
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #eaeaea;
    padding: 0px;
}

    .landing_leagues_table > * {
        margin-bottom: 1px;
    }

.landing_leagues_item {
    flex: 0 0 calc((100% - 5px) / 6);
    height: 168px;
    padding: 43px;
    background: var(--bg-light);
}

.landing_leagues_item_more {
    font-size: 18px;
    font-weight: bold;
    padding-top: 12px;
    text-transform: uppercase;
}
/*#endregion*/

/*#region Section3 Pricing*/

.landing_section_3 {
    background-image: url('https://www.streakon.com/wp-content/uploads/2021/01/img_stadium_pricing-scaled.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

.landing_pricing_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.32px;
    color: var(--text-browngrey);
    margin: 30px auto 70px auto;
}

.landing_pricing_toggle_on {
    color: var(--text-light);
}

.landing_dark_toggle {
    width: 66px;
    height: 34px;
    border-radius: 6px;
    flex: 0 0 66px;
    padding: 3px 33px 3px 3px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #151414;
    cursor: pointer;
    transition: 0.33s;
}

.landing_dark_toggle_button {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #333333;
    transition: 0.33s;
   
}

.landing_dark_toggle_on {
    background-color: #18c949;
    padding: 3px 3px 3px 33px;
    transition: 0.33s;
}

    .landing_dark_toggle_on .landing_dark_toggle_button {
        background-color: var(--bg-light);
    }

    .landing_pricing_1_of_3 {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        width: 33.3%;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
    }

    .landing_pricing_1_of_3:first-child {
        padding-left: 0px;
    }

    .landing_pricing_1_of_3:last-child {
        padding-right: 0px;
        width: 33.4%;
    }

.landing_pricing_module {
    width: 100%;
    height: calc(100% + 95px);
    position: relative;
    border-radius: 8px;
    padding: 40px 40px 60px 40px;
    position: relative;
    border-right: 2px solid #474747;
    border-bottom: 2px solid #474747;
    border-left: 2px solid #474747;
    cursor: pointer;
}


    .landing_pricing_module:hover {
        /*opacity: 0.8;*/
    }

.landing_pricing_module_basic {
    border-right: 2px solid #33c2e0;
    border-bottom: 2px solid #33c2e0;
    border-left: 2px solid #33c2e0;
}

.landing_pricing_module_total {
    border-right: 2px solid #18c949;
    border-bottom: 2px solid #18c949;
    border-left: 2px solid #18c949;
}

.landing_pricing_module_top {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

    .landing_pricing_module_top:before {
        border-radius: 8px 0 0 0;
        display: block;
        content: "";
        flex: 2 0 0;
        height: 3px;
        border-top: 2px solid #474747;
    }

    .landing_pricing_module_top:after {
        border-radius: 0 8px 0 0;
        display: block;
        content: "";
        flex: 2 0 0;
        height: 3px;
        border-top: 2px solid #474747;
    }

.landing_pricing_module_top_basic {
    
}

    .landing_pricing_module_top_basic:before {
        border-top: 2px solid #33c2e0;
    }

    .landing_pricing_module_top_basic:after {
        border-top: 2px solid #33c2e0;
    }

.landing_pricing_module_top_total {
}

    .landing_pricing_module_top_total:before {
        border-top: 2px solid #18c949;
    }

    .landing_pricing_module_top_total:after {
        border-top: 2px solid #18c949;
    }

.landing_pricing_image {
    height: 80px;
    overflow: hidden;
    flex: 0 0 120px;
    margin-top: -40px;
    text-align: center;
    background: #474747;
    display:block;
    -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S_56.svg') no-repeat center;
    mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S_56.svg') no-repeat center;
}

.landing_pricing_image_basic {
    background: #33c2e0;
}

.landing_pricing_image_total {
    background: #18c949;
}

.landing_pricing_button {
    width: calc(100% - 80px);
    margin: -94px 40px 0 40px;
    height: 54px;
    padding: 16px;
    border-radius: 6px;
    background-color: #474747;
    color: var(--text-light);
    font-size: 16px;
    font-weight: bold;
    text-align: center; 
}

    .landing_pricing_button:hover {
        opacity: 0.8;
    }

.landing_pricing_button_basic {
    background-color: #33c2e0;
}

.landing_pricing_button_total {
    background-color: #18c949;
}

.landing_pricing_arrow {
    margin: auto;
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small_w.svg');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 17px;
    transition: 0.33s;
}

.landing_pricing_name {
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    padding-top: 20px;
}

.landing_pricing_price {
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--text-light);
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(234, 234, 234, 0.08);
    width: 100%;
}

.landing_pricing_feat {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/circle_check_0.svg') no-repeat left top;
    padding-left: 35px;
    padding-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.landing_pricing_feat_basic {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/circle_check_1.svg') no-repeat left top;
}

.landing_pricing_feat_total {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/circle_check_2.svg') no-repeat left top;
}

/*#endregion*/

/*#region Contact*/
.landing_contact_section1 {
    display: inline-block;
    width: calc(66.6% + 35px);
    vertical-align: top
}

.landing_contact_section2 {
    display: inline-block;
    width: calc(33.4% - 40px);
    vertical-align: top
}

.landing_box {
    width: 100%;
    border-radius: 8px;
    padding: 27px 41px 27px 69px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    cursor: pointer;
}

    .landing_box:hover {
        background-color: rgba(30,30,30,0.05);
    }

    .landing_box_title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

.landing_box_provider {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_company.svg') no-repeat left 29px top 29px;
}


.landing_box_contact {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/phone.svg') no-repeat left 29px top 29px;
}

.landing_box_tutorial {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_camera.svg') no-repeat left 29px top 33px;
}

.landing_box_help {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_help.svg') no-repeat left 29px top 29px;
}

.landing_box_blog {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/menu_blog.svg') no-repeat left 29px top 29px;
}

.landing_box_arrow {
}

    .landing_box_arrow:after {
        content: '\00a0 \00a0 \00a0 \00a0 \00a0';
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small.svg') no-repeat right center;
    }

.landing_contact_1_of_3 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 33.3%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
}

    .landing_contact_1_of_3:first-child {
        padding-left: 0px;
    }

    .landing_contact_1_of_3:last-child {
        padding-right: 0px;
        width: 33.4%;
    }

.landing_social {
    font-weight:bold;
    font-size: 14px;
    padding-left: 30px;
    padding-right: 50px;
    color: var(--text-brownishgrey);
    cursor: pointer;
    transition: 0.33s;
}

.landing_social_fb {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_facebook.svg') no-repeat left center;
    opacity: 0.7;
}

    .landing_social_fb:hover {
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_Fbcolor.svg') no-repeat left center;
        opacity: 1;
        transition: 0.33s;
    }

.landing_social_insta {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_insta.svg') no-repeat left center;
    opacity: 0.7;
}

    .landing_social_insta:hover {
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_instacolor.svg') no-repeat left center;
        opacity: 1;
        transition: 0.33s;
    }

.landing_social_yt {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_youtube.svg') no-repeat left center;
    opacity: 0.7;
}

    .landing_social_yt:hover {
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/social_youtubecolor.svg') no-repeat left center;
        opacity: 1;
        transition: 0.33s;
    }

/*#endregion*/

.landing_tutorial_table {
    height: 510px;
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--bg-light);
    padding: 0px;
}

    .landing_tutorial_table > * {
        margin-bottom: 55px;
    }

.landing_tutorial_item {
    flex: 0 0 calc((100% - 120px) / 4);
    height: 200px;
    padding: 10px;
    background-color: transparent;
    border-radius: 8px;
    display: block;
    position: relative;
}

    .landing_tutorial_item:hover {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(33,33,33,0.05);
        cursor: pointer;
    }

        .landing_tutorial_item:hover .landing_play_tutorial_sm{
            display: block;
        }

.landing_tutorial_name {
    padding: 10px;
}

.landing_full_hr {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    border-top: 1px solid #eaeaea;
    content: '\00a0 \00a0 \00a0 \00a0 \00a0';
}

.landing_dark_bg {
    background-color: var(--bg-dark);
}

.landing_light_bg {
    background-color: var(--bg-light);
}


.landing_font_dark {
    color: var(--text-dark);
}

.landing_font_light {
    color: var(--text-light);
}

.landing_font_grey {
    color: var(--text-grey);
}

.landing_font_browngrey {
    color: var(--text-browngrey);
}

.landing_font_brownishgrey {
    color: var(--text-brownishgrey);
}

.landing_gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    -webkit-text-fill-color: transparent;
}

.landing_font_14 {
    font-size: 14px;
}

.landing_font_16 {
    font-size: 16px;
}

.landing_font_18 {
    font-size: 18px;
}

.landing_font_20 {
    font-size: 20px;
}

.landing_line_50 {
    line-height: 50px;
}

.landing_margin_top_10 {
    margin-top: 10px;
}

.landing_margin_top_20 {
    margin-top: 20px;
}

.landing_margin_top_30 {
    margin-top: 30px;
}

.landing_margin_top_40 {
    margin-top: 40px;
}

.landing_margin_top_50 {
    margin-top: 50px;
}

.landing_margin_top_160 {
    margin-top: 160px;
}

.landing_text_xhuge {
    font-size: 70px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.landing_text_huge {
    font-size: 60px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: -1.2px;
}

.landing_text_big {
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.8px;
    font-size: 40px;
}

.landing_text_normal {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.36px;
}

.landing_text_subtitle {
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.landing_text_align {
    text-align: left;
}

.landing_text_align_mobile {
    text-align: left;
}

.landing_text_center {
    text-align: center;
}

.landing_dark_btn {
    padding: 15px 30px;
    border-radius: 6px;
    background-color: var(--text-dark);
    color: var(--text-light);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

    .landing_dark_btn:hover {
        opacity: 0.8;
    }

.landing_btn_play {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/bt_play_white.svg') no-repeat left 25px center, var(--text-dark);
    padding: 15px 30px 15px 60px !important;
    white-space: nowrap;
}

.landing_light_btn {
    padding: 15px 30px;
    border-radius: 6px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

    .landing_light_btn:hover {
        opacity: 0.8;
    }

.landing_btn_arrow_r {
    background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small.svg') no-repeat right 10px center, var(--bg-light);
    padding: 15px 30px 15px 30px !important;
    white-space: nowrap;
    line-height: 100px;
}

.landing_menu_btn {
    background-color: #f6f6f6;
    font-size: 14px;
    font-weight: bold;
    color: #2d2d2d;
    padding: 12px 25px;
    border-radius: 6px;
    margin-left: 0px;
    margin-right: 10px;
    cursor: pointer;
}

    .landing_menu_btn:hover {
        background-color: #E8E8E8;
    }

.landing_menu_btn_2 {
    background-color: #1e1e1e;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
}

    .landing_menu_btn_2:hover {
        background-color: #333333;
    }

.landing_hide_mobile {
    display: inline-block;
}

.landing_hide_tab {
    display: inline-block;
}

.landing_show_mobile {
    display: none;
}

.landing_show_tab {
    display: none;
}

.landing_modal_bg {
    height: 150%;
    width: 100%;
    position: fixed;
    z-index: 100 !important;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.75);
    overflow-x: hidden;
    overflow-y: hidden;
    transition: 0.33s;
    display: table;
}

.landing_modal_video {
    margin: auto;
    width: 80vw;
    height: calc((80vw/16)*9);
    margin-top: calc((100vh - ((80vw/16)*9))/2);
    background: var(--bg-dark);
    transition: 0.33s;
    border-radius: 10px;
    overflow: hidden;
    z-index: 101;
}

@media (max-width: 1200px) {
    .landing_navigation {
        width: calc(100% - 100px);
    }

    .landing_menu {
        width: calc(100% - 400px);
        padding-left: 0;
        padding-right: 0;
    }

    .landing_container {
        width: 100%;
        margin: 0;
    }

    .landing_container_table_section_1 {
       padding-left: 50px;
        padding-right: 50px;
    }

    .landing_section_2 {
        background-size: 1200px;
        background-position: center calc(50% - 350px), center bottom;
    }

    .landing_section_3 {
        background-size: 1200px;
        background-position: center top;
    }

    .landing_cotainer_padding {
        padding-left: 50px;
        padding-right: 50px;
    }

    .landing_cotainer_padding_top {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .landing_cotainer_padding_top_60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .landing_footer_widget:first-child {
        padding-left: 50px;
    }

    .landing_image_full {
        width: calc(100% - 100px);
    }

    .landing_hide_tab {
        display: none;
    }

    .landing_show_tab {
        display: block;
    }
}

@media (max-width: 980px) {
    .landing_logo{
        display: inline-block;
    }

    .landing_navigation_buttons {
        position: absolute;
        top: 0px;
        right: 50px;
        margin: 60px 0 0 0;
    }

    .landing_navigation {
        display: none;
    }

    .landing_menu {
        display: none;
    }

    .landing_menu_mobile {
        display: block;
    }

    .landing_navigation_mobile {
        display: block;
    }

    .landing_container_table_section_1 {
        padding-bottom: 410px;
    }

    .landing_section_1_ls {
        margin-top: -440px;
    }

    .landing_section_1_iframe {
        height: 430px;
    }

    .landing_image_left {
        float: none;
        width: calc(100vw - 100px);
        padding-bottom: 60px;
    }

    .landing_image_right {
        float: none;
        width: calc(100vw - 100px);
        padding-bottom: 60px;
    }

    .landing_image_full {
        width: 100%;
    }

    .landing_section_2_chart{
        display: none;
    }

    .landing_tab_padding {
        padding-left: 50px;
        padding-right: 50px;
    }

    .landing_footer_padding {
        padding-bottom: 120px;
        padding-top: 120px;
    }


    .landing_margin_top_50 {
        margin-top: 40px;
    }

    .landing_margin_top_160 {
        margin-top: 120px;
    }

    .landing_footer_button_container {        
        margin-top: 20px;
        margin-right: 0px;
    }

    .landing_footer_widget {
        width: 32%;
        padding-left: 0px;
    }

        .landing_footer_widget:first-child {
            display:none;
        }

    .landing_show_mobile {
        display: block;
    }

    .landing_section_1 {
        height: 1035px;
        background-image: url('https://www.streakon.com/wp-content/uploads/2021/01/image_home_respo-2.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom;
    }

    .landing_flex_tab {
        flex-direction: column;
    }

    .landing_flex_tab_rev {
        flex-direction: column-reverse;
    }

    .landing_1_of_4 {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px;
    }

        .landing_1_of_4:first-child {
            padding-left: 0px;
        }

        .landing_1_of_4:last-child {
            padding-right: 0px;
        }

    .landing_1_of_3 {
        padding-left: 10px;
        padding-right: 10px;
    }

        .landing_1_of_3:first-child {
            padding-left: 0px;
        }

        .landing_1_of_3:last-child {
            padding-right: 0px;
        }

    .landing_pricing_1_of_3 {
        padding-left: 10px;
        padding-right: 10px;
    }

        .landing_pricing_1_of_3:first-child {
            padding-left: 0px;
        }

        .landing_pricing_1_of_3:last-child {
            padding-right: 0px;
        }

    .landing_contact_1_of_3 {
        padding-left: 0px;
        padding-right: 0px;
    }

        .landing_contact_1_of_3:first-child {
            padding-left: 0px;
        }

        .landing_contact_1_of_3:last-child {
            padding-right: 0px;
        }

    .landing_1_of_2 {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .landing_section_2_claim {
        width: 100%;
    }

    .landing_text_xhuge {
        font-size: 50px;
    }

    .landing_text_huge {
        font-size: 48px;
    }

    .landing_text_normal {
        font-size: 16px;
    }

    .landing_text_align {
        text-align: center;
    }

    .landing_dark_switch {
        margin: 30px auto 0 auto;
    }

    .landing_dark_select {
        margin: 30px auto 0 auto;
    }

    .landing_light_select {
        margin: 30px auto 0 auto;
    }

    .landing_theme_mode {
        margin: 30px auto 0 auto;
    }

    .landing_leagues_table {
        height: calc(168px * 3 + 2px);
        margin-top: 60px;
    }

    .landing_leagues_item {
        flex: 0 0 calc((100% - 3px) / 4);
        height: 168px;
        padding: 43px;
        background: var(--bg-light);
    }

    .landing_padding_25 {
        padding-left: 25px;
        padding-right: 25px;
    }

    .landing_pricing_module {
        padding: 30px 20px;
    }

    .landing_pricing_image {
        flex: 0 0 100px;
        -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S.svg') no-repeat center;
        mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S.svg') no-repeat center;
    }

    .landing_pricing_button {
        width: calc(100% - 40px);
        margin: -84px 20px 0 20px;
        height: 54px;
    }

    .landing_contact_section1 {
        display: block;
        width: 100%;
    }

    .landing_contact_section2 {
        width: 100%;
        margin-top: 60px;
        margin-left: -29px;
        margin-bottom: -29px;
        display: flex;
    }

    .landing_padding_contact {
        padding-left: 21px;
        padding-right: 21px;
    }

    .landing_tutorial_table {
        height: 980px;
    }

        .landing_tutorial_table > * {
            margin-bottom: 40px;
        }

    .landing_tutorial_item {
        flex: 0 0 calc((100% - 40px) / 2);
        height: 260px;
        padding: 20px;
    }

    .landing_tutorial_name {
        padding: 20px;
    }

    .landing_play_tutorial_sm{
        display: block;
    }

    .landing_modal_video {
        width: 90vw;
        height: calc((90vw/16)*9);
        margin-top: calc((100vh - ((90vw/16)*9))/2);
        border-radius: 6px;
    }
}

@media (max-width: 520px) {
    .landing_content {
        padding-top: 100px;
    }

    .landing_logo {
        width: 127.5px;
        height: 28px;
        margin: 26px 0 0;
        -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/streakon_logo_28.svg') no-repeat center;
        mask: url('https://www.streakon.com/wp-content/uploads/2021/01/streakon_logo_28.svg') no-repeat center;
    }

    .landing_logo_s {
        width: calc(100vw - 75px);
        height: 28px;
        margin: 26px 0 0 20px;
        -webkit-mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S_28.svg') no-repeat left center;
        mask: url('https://www.streakon.com/wp-content/uploads/2021/01/strakon_S_28.svg') no-repeat left center;
    }

    .landing_menu_close {
        float: right;
        width: 36px;
        height: 36px;
        margin: 22px 0 0px 0;
        border-radius: 6px;
    }

    .landing_menu_mobile_item {
        padding: 10px 0 10px 20px;
    }

    .landing_navigation_container {
        height: 80px;
    }

    .landing_navigation_mobile {
        width: calc(100% - 40px);
        height: 80px;
    }

    .landing_hamburger {
        position: absolute;
        top: 28px;
        right: 0px;
        width: 18px;
        height: 24px;
    }

    .scrolled .landing_menu_close {
        margin: 22px 0 0px 0;
    }

    .scrolled .landing_hamburger {
        top: 28px;
    }

    .scrolled .landing_logo {
        margin: 26px 0 0;
    }

    .scrolled .landing_logo_s {
        margin: 26px 0 0 20px;
    }

    .landing_container_table_section_1 {
        padding-bottom: 260px;
        padding-top: 80px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .landing_section_1_ls {
        margin-top: -265px;
    }

    .landing_section_1_iframe {
        height: 255px;
    }

    .landing_show_hover {
        opacity: 1;
        font-size: 14px;
        padding-top: 10px;
    }

    .landing_play {
        display: block;
        width: 60px;
        height: 60px;
        margin: auto;
    }

    .landing_play_tutorial {
        left: calc(50% - 30px);
        top: calc(50% - 30px);
    }

    .landing_play_icon {
        width: 20px;
        height: 20px;
        margin-top: 20px;
        margin-left: 22px;
        background-size: 11px;
    }

    .landing_play_circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        margin: 6px;
        position: absolute;
        transition: 0.33s;
    }

   

    .landing_flex {
        flex-direction: column;
    }

    .landing_1_of_4 {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 40px;
    }

        .landing_1_of_4:first-child {
            padding-left: 0px;
        }

        .landing_1_of_4:last-child {
            padding-right: 0px;
        }

    .landing_1_of_3 {
        width: 100%;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 40px;
    }

        .landing_1_of_3:first-child {
            padding-left: 60px;
        }

        .landing_1_of_3:last-child {
            padding-right: 60px;
            width: 100%;
            padding-bottom: 0px;
        }

    .landing_pricing_1_of_3 {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 30px;
        margin-bottom: 134px;
    }

        .landing_pricing_1_of_3:first-child {
            padding-left: 0px;
        }

        .landing_pricing_1_of_3:last-child {
            padding-right: 0px;
            width: 100%;
            padding-bottom: 0px;
        }

    .landing_contact_1_of_3 {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 10px;
    }

        .landing_contact_1_of_3:first-child {
            padding-left: 0px;
        }

        .landing_contact_1_of_3:last-child {
            padding-right: 0px;
            width: 100%;
            padding-bottom: 30px;
        }

    .landing_1_of_2 {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

        .landing_1_of_2:first-child {
            padding-left: 20px;
        }

        .landing_1_of_2:last-child {
            padding-right: 20px;
        }

    .landing_play_circle {
        box-shadow: 0 0 0 6px rgba(0,0,0,0.2);
    }

    .landing_play_1 {
        box-shadow: 0 0 0 6px rgba(51,194,224,0.2);
    }

    .landing_play_2 {
        box-shadow: 0 0 0 6px rgba(37,198,146,0.2);
    }

    .landing_play_3 {
        box-shadow: 0 0 0 6px rgba(24,201,73,0.2);
    }

    .landing_image_left {
        margin-left: -20px;
        width: calc(100vw - 40px);
        padding-bottom: 30px;
    }

    .landing_image_right {
        margin-left: -20px;
        width: calc(100vw - 40px);
        padding-bottom: 30px;
    }


    .landing_navigation_buttons {
        display: none;
    }

    .landing_cotainer_padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing_tab_padding {
        padding-left: 10px;
        padding-right: 10px;
    }

    .landing_cotainer_padding_top {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .landing_cotainer_padding_top_60 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .landing_button_play {
        border-radius: 6px;
        padding: 12px 25px;
        color: var(--text-light);
        font-weight: bold;
        font-size: 14px;
        background: var(--bg-dark);
        cursor: pointer;
        display: inline-block;
        margin-right: 5px;
    }

        .landing_button_play:hover {
            opacity: 0.8;
        }

    .landing_button_arrow {
        border-radius: 6px;
        padding: 12px 20px 12px 20px;
        color: var(--text-dark);
        font-weight: bold;
        font-size: 14px;
        background: url('https://www.streakon.com/wp-content/uploads/2021/01/arrow_right_small.svg') var(--bg-light);
        background-repeat: no-repeat;
        background-position: right 5px center;
        cursor: pointer;
        display: inline-block;
        transition: 0.33s;
    }

        .landing_button_arrow:hover {
            background-position: right 2px center;
            opacity: 0.8;
        }

    .landing_footer_padding {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .landing_footer_claim {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .landing_text_align_mobile {
        text-align: center;
        padding-left:20px;
        padding-right: 20px;
    }

    .landing_footer_button_container {
        float: unset;
        display: block;
        margin: 20px auto;
        width: 240px;
    }


    .landing_footer_button {
        font-size: 14px;
        font-weight: bold;
        color: var(--text-dark);
        background-color: var(--bg-light);
        border-radius: 6px;
        padding: 12px 80px;
        cursor: pointer;
    }

    .landing_footer_widget {
        width: 100%;
        padding-left: 0px;
    }

    .landing_line_50 {
        line-height: 2.36;
    }

    .landing_margin_top_10 {
        margin-top: 5px;
    }

    .landing_margin_top_20 {
        margin-top: 10px;
    }

    .landing_margin_top_30 {
        margin-top: 15px;
    }

    .landing_margin_top_40 {
        margin-top: 20px;
    }

    .landing_margin_top_50 {
        margin-top: 20px;
    }

    .landing_margin_top_160 {
        margin-top: 80px;
    }

    .landing_section_1 {
        height: 755px;
    }

    .landing_text_xhuge {
        font-size: 30px;
        letter-spacing: -0.6px;
    }

    .landing_text_huge {
        font-size: 32px;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.25;
    }

    .landing_text_big {
        font-size: 20px;
    }

    .landing_text_normal {
        font-size: 14px;
    }

    .landing_text_subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .landing_font_14 {
        font-size: 12px;
    }

    .landing_font_16 {
        font-size: 14px;
    }

    .landing_font_18 {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: -0.32px;
    }

    .landing_dark_switch {
        width: 280px;
        height: 44px;
        font-size: 12px;
        margin: 20px auto 0 auto;
    }

    .landing_dark_switch_item {
        height: 40px;
        padding: 11px;
    }

    .landing_dark_select {
        width: 280px;
        height: 40px;
        font-size: 12px;
        margin: 20px auto 0 auto;
    }

    .landing_light_select {
        width: 280px;
        height: 40px;
        font-size: 12px;
        margin: 20px auto 0 auto;
    }

    .landing_theme_mode {
        width: 280px;
        height: 44px;
        margin: 20px auto 0 auto;
    }

    .landing_theme_mode_button {
        height: 40px;
    }

    .landing_leagues_table {
        margin-top: 40px;
        margin-left: 10px;
        width: calc(100% - 20px);
        height: calc(92px * 3 + 2px);
    }

    .landing_leagues_item {
        height: 92px;
        padding: 22px;
        background: var(--bg-light);
    }

    .landing_leagues_item_more {
        font-size: 14px;
        font-weight: bold;
        padding-top: 4px;
        text-transform: uppercase;
    }

    .landing_pricing_module {
        padding: 30px;
    }

    .landing_padding_25 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing_pricing_price {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .landing_pricing_button {
        width: calc(100% - 60px);
        margin: -74px 30px 0 30px;
        height: 44px;
        font-size: 14px;
        padding: 11px;
    }

    .landing_pricing_toggle {
        font-size: 12px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.24px;
    }
    .landing_box {
        padding-bottom: 0px;
        padding-right: 9px;
    }

    .landing_box:hover{
        background-color: transparent;
    }

    .landing_contact_section1 {
       padding-left: 9px;
    }

    .landing_contact_section2 {
        width: 100%;
        margin-top: 30px;
        margin-left: -20px;
        margin-bottom: -29px;
        display: block;
    }

    .landing_padding_contact{
        padding-left: 0px;
        margin-left: 0;
    }

    .landing_social {
        padding-left: 26px;
        padding-right: 15px;
    }

    .landing_hide_mobile {
        display: none;
    }

    .landing_tutorial_table {
        height: 1400px;
    }

        .landing_tutorial_table > * {
            margin-bottom: 20px;
        }

    .landing_tutorial_item {
        flex: 0 0 100%;
        height: 260px;
        padding: 10px;
    }

    .landing_tutorial_name{
        padding: 10px;
        padding-top: 30px;
    }
}

/*#endregion*/