/*
Theme Name: Alfa Theme
Author: WebDev 
Description: The theme is designed to take full advantage of the custom pages creation.
Version: 1.1
*/

@font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 500;
    src: url('/wp-content/themes/alfatheme/fonts/Roboto-Medium.ttf');
    font-display: swap;
}
@font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 700;
    src: url('/wp-content/themes/alfatheme/fonts/Roboto-Bold.ttf');
    font-display: swap;
}


* { margin:0; padding:0; box-sizing:border-box; font-family: Tahoma, Geneva, sans-serif;}
body { overflow-x:hidden; position: relative; background: var(--main);}
a {text-decoration:none; transition: 0.3s; }
input, button {border:none; box-shadow:none; transition:0.3s;}
input {outline:none;}
p, span, li, a { font-size:18px; line-height:30px;}
h1, h2, h3, h4, h5, h6 {text-align:center; padding: 20px 0; color: var(--text);}
p, span, li, h1, h2, h3, a, b, i, label, input, button, td, tr, figcaption { color: var(--text);}
p {padding-bottom:20px;}
li {list-style:none;}
button { cursor:pointer; background:transparent;}
img {max-width:100%; display:block;}
i {font-style:normal;}

.wrapper {width:95%; max-width:1200px; margin:0 auto;}

:root{
--main: #002347;
--text: #fff;
--header: #0a519e;
    --btn-back: #054588;
--color-primary: #ffba00;
--color-secondary: #428cdc;

--border_button: 50px;
--shadow-primary: 0 4px 20px 1px rgba(0, 0, 0, 0.2);
--border: 3px;
}


/*  Header  */

header {position:fixed; top:0; left:0; width:100%; background-color: var(--header); z-index:9;
    background-image: linear-gradient(0deg, rgba(0, 50, 102, 0) 0, #003266 73%, #003266 98%); }
.header_top {width:100%; justify-content: space-between; align-items:center; display:flex; padding: 5px 10px;}
.header .logo img {
	width: 236px;
    height: 100%;
}
.header_top_links {
    display: flex;
    align-items: center;
}
.header_top_downloads {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: var(--btn-back);
    padding: 5px;
    margin: 5px 10px;
}
.download-logo-android, .download-logo-apple {
    padding: 0 5px;
}
.text-download {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    padding: 0 5px;
}
.android-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/wp-content/themes/alfatheme/img/android.svg");
    transition: .3s;
}
.download-logo-android:hover .android-icon {
    background-image: url("/wp-content/themes/alfatheme/img/android-hover.svg");
}
.apple-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/wp-content/themes/alfatheme/img/apple.svg");
    transition: .3s;
}
.download-logo-apple:hover .apple-icon {
    background-image: url("/wp-content/themes/alfatheme/img/apple-hover.svg");
}
.header-top-access {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: var(--btn-back);
    padding: 5px;
    margin: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
}
.header-top-access:hover {
    box-shadow: inset 0 0 0 1.5px var(--text);
}
.access-icon {
    width: 20px;
    height: 20px;
    margin: 5px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/wp-content/themes/alfatheme/img/access.svg");
}

/* BUTTONS */

.header .buttons {display: flex;}
.header .buttons button {display: flex; gap: 10px;align-items: center; border-radius: var(--border_button); padding:10px 20px; color:#fff;  text-transform:uppercase;
font-size:18px; position:relative;transition: background 1s ease-out; margin: 0 10px;}
.button.logButton {background-image: linear-gradient(0deg, #428cdc 0, #509aea 97%, #509aea);}
.button.regButton {background-image: linear-gradient(0deg, #fa4d00 0, #fa5e00);box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);}
.button.logButton:hover {background-image: linear-gradient(180deg,#428cdc 0,#509aea 97%,#509aea);}
.button.regButton:hover {background-image: linear-gradient(0deg,#fa5e00 0,#fa7c00);box-shadow: 0 20px 30px rgba(250,65,0,.4);}

/*  Header  submenu */

.menuDesktop .menu-item-has-children {position:relative;}
.deskMenu .sub-menu-wrap { display:none;  position: absolute; left:-20px; top:20px; padding-top: 20px;  }
.deskMenu .sub-menu {background: var(--header); 
box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.1); width:180px; padding: 10px;}
.menuDesktop .sub-menu li {display:block; }
.deskMenu .menu-item-has-children:hover > .sub-menu-wrap {display: block;}


/* Burger */

.headerDesktop .burger {display: none;}
.burger img {width:28px; height:28px;}
.menu_mobile,amp-sidebar {background: var(--main);box-shadow: var(--shadow-primary);
width: 100%; padding: 0 10px; max-width: 300px; min-height: 100vh;
position: fixed; top: 0; right: -100%; display: block; transition: right 0.8s; z-index: 11;}
.menu_mobile.show  {right: 0; transition: right 0.8s;  }
header .overlay {display: none;width: 100%; height: 100vh;background: rgba(0,0,0,0.5);
position: absolute;top: 0;left: 0;z-index: 9;}
header .overlay.active {display: block;}
.menu_mobile .close {display: flex;justify-content: flex-end;padding: 20px 0;}
.menu_mobile .close img {width: 28px; height:28px;}
.menu_mobile ul {display: flex;align-items: flex-start;flex-direction: column;}
.menu_mobile .sub-menu {padding-left:20px;}

/* Header bottom */

.header_bottom {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    align-items: center;
}
.header-bottom-logo {
    position: relative;
    margin: 5px 10px;
    flex: 0 0 auto;
}
.lang_menu {
    border-radius: 20px;
    background-color: rgba(0, 49, 102, 0.5);
    position: relative;
    flex-grow: 1;
    margin: 0 10px;
    display: flex;
    justify-content: center;
}
.menuDesktop {display:flex; justify-content:center;padding: 0 10px;}
.menuDesktop li {display:inline-block;}
.menuDesktop a {font-size:18px;display: block;line-height:1.2;padding: 10px 20px;color: var(--text);font-weight: 500;text-transform: uppercase;
    text-align: center;}
.menuDesktop a:hover {color: var(--color-primary);}
.menuDesktop a[aria-current] {color: var(--color-primary); position:relative; padding-bottom: 6px;}
.menuDesktop a[aria-current]:before {content:'';position: absolute;bottom: 0;left: 0;width: 100%; height:2px;
    background:var(--gradient); border-radius:10px;}

/* Langs switcher */

.lang_choose {
    border-radius: 20px;
    background-color: var(--btn-back);
    padding: 5px;
    margin: 5px 10px;
}
.lang_choose.mobile {
    display: none;
}
.lang_choose .choose { padding: 0 0 0 10px;display: flex;justify-content: space-between;align-items: center;
position: relative; height: 100%; cursor: pointer;}
.lang_choose span {position: relative; padding: 0 10px 0 0px;}
.lang_choose img {width: 18px; height: 18px;border-radius: 50%;margin-right: 8px;}
.lang_choose  a, .lang_choose .choose span {color: var(--text);font-size: 14px;font-weight: 500; text-transform: uppercase;}


.lang_choose .submenu {position:absolute; top:35px; left:-5px; background: var(--header); width: 220px;align-items: center;flex-wrap: wrap; display:none;z-index: 2;border-radius: 15px;overflow: hidden; }
.submenu div {display:flex; align-items:center;}
.submenu img, .choose img {width:18px; height:18px; border-radius:50%; margin-right:8px;box-shadow: 0px 0px 2px black;}
.submenu a {display:flex; width:100%; padding:5px 10px 5px 14px; align-items: center;}
.submenu a:hover {background: #003266;}
   
@media screen and (min-width: 1280px) {
	.lang_choose:hover .submenu {display:flex;}
}

.lang_choose.mobile.active .submenu, .submenu.show { display:flex; }

.header-top-promo {
    display: flex;
    align-items: center;
    box-shadow: 0 11px 27px rgba(66, 140, 220, 0.63);
    border-radius: 20px;
    background-color: #428cdc;
    background-image: linear-gradient(0deg,#428cdc 0,#0992af);
    padding: 5px 10px;
    margin: 5px 10px;
    transition: .3s;
}
.promo-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/wp-content/themes/alfatheme/img/promo.svg");
}
.promo-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
}
.header-top-promo:hover .promo-icon {
    background-image: url("/wp-content/themes/alfatheme/img/promo-hover.svg");
}
.header-top-promo:hover .promo-text {
    color: var(--color-primary);
}

    /* AMP */

.header.pam_content {display:flex; justify-content:space-between;}
amp-script {opacity:1;}
.amp-sidebar-mask {background: rgba(0,0,0,0.5)!important; z-index:10!important;}
amp-sidebar { min-width: 320px; opacity: 1!important;  }
amp-sidebar .closeButton { padding: 20px 0 19px 0;text-align: center;margin: 0 auto;display: block;}
amp-sidebar .closeButton img {width:28px; height:28px;}
amp-sidebar ul { max-height: 80vh; overflow-y: hidden; flex-wrap: wrap; display: flex;}
amp-sidebar .sub-menu {padding-left:20px;}
amp-sidebar ul li {display: block; width: 100%;}

.lang_choose .choose .toggled {display:flex; align-items:center;}
.lang_choose .choose .arrowed {display:flex; align-items:center;}

#amp-mobile-version-switcher {display:none;}



/* CONTENT */

.content_page {padding:20px;}

h1 {font-size: 36px; line-height: 40px;}
h2 {font-size: 32px; line-height: 40px;}
h3 {font-size: 26px; line-height: 36px;}
h4 {font-size: 20px; line-height: 28px;}
h5, h6 {font-size: 18px; line-height: 28px;}

.content_page a {color: var(--color-primary); text-decoration: underline; text-underline-offset: 5px;}
.content_page a:hover {text-decoration:underline;}

/* 404 */

.not-found-block {
    height: 100vh;
}
.page-error {
    display: flex;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 840px;
    z-index: 1;
    background-color: #003266;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.page-error::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient( circle 802px at center, rgba(0, 35, 71, 0) 0%, #002347 100% );
    z-index: -1;
}
.page-error-content {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.error-logo {
    max-width: 90%;
    width: 300px;
    margin: 20px auto 50px;
}
.error-img {
    width: 500px;
    max-width: 90%;
    margin-bottom: 50px;
}
.error-btn {
    min-width: 220px;
    min-height: 40px;
    text-decoration: none;
    background-image: linear-gradient(0deg, #fa4d00 0, #fa5e00);
    box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
    color: #ffffff;
    line-height: 40px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lists   */
.content_page ul {margin-left: 15px; margin-bottom: 20px; display:flex; justify-content:space-between;flex-wrap:wrap;list-style:none;  }
.content_page ul li {width:48%; position: relative; padding-bottom:10px; padding-left:35px;}
.content_page ul li:before {position: absolute; width: 20px; height:20px;
background: url(/wp-content/themes/alfatheme/img/soccer.svg)no-repeat; background-size:cover;
content: ""; left: 0; top:5px;}

.wp-block-column ol li {width:100%!important;}

.content_page ol {margin-left: 30px; margin-bottom: 20px; display:flex; justify-content:space-between;flex-wrap:wrap;}
.content_page ol li {list-style: decimal; position: relative; padding-left:10px; margin-bottom: 10px; width:48%;}
.content_page ol li::marker {font-size:17px; color:#fff; }
.content_page ol li:before {content:''; width:26px; height:26px; background:var(--color-primary); border-radius:50%; position:absolute; top:2px;
left:-26px; z-index:-1;}

.content_page li > ul li {width:100%;}
.content_page li > ul li:before {position: absolute; width: 20px; height:20px;
background: var(--color-primary); background-size:cover;
content: ""; left: 0; top:5px; border-radius:50%;}




section ul {margin-left: 15px; margin-bottom: 20px; display:flex; justify-content:space-between;flex-wrap:wrap;list-style:none;  }
section ul li {width:48%; position: relative; padding-bottom:10px; padding-left:35px;}
section ul li:before {position: absolute; width: 20px; height:20px;
background: url(/wp-content/themes/alfatheme/img/soccer.svg)no-repeat; background-size:cover;
content: ""; left: 0; top:5px;}

section ol {margin-left: 30px; margin-bottom: 20px; display:flex; justify-content:space-between;flex-wrap:wrap;}
section ol li {list-style: decimal; position: relative; padding-left:10px; margin-bottom: 10px; width:48%;}
section ol li::marker {font-size:17px; color:#fff; }
section ol li:before {content:''; width:26px; height:26px; background:var(--color-primary); border-radius:50%; position:absolute; top:2px;
left:-26px; z-index:-1;}

section li > ul li {width:100%;}
section li > ul li:before {position: absolute; width: 20px; height:20px;
background: var(--color-primary); background-size:cover;
content: ""; left: 0; top:5px; border-radius:50%;}




/* BREADCRUMBS   */

.rank-math-breadcrumb p {padding-bottom:0; line-height: 24px;}
.rank-math-breadcrumb a, .rank-math-breadcrumb span {font-size:15px; line-height: 25px;}



/* IMG content */

.wp-block-image { margin: 0 auto; margin-bottom:20px;width: 100%; max-width: 800px;}
.wp-block-image figure {margin: 0 auto; display: flex; justify-content: center;
flex-direction: column;}
.wp-block-image img {height:auto; margin: 0 auto; margin-bottom: 15px; border-radius: var(--border);}
.wp-block-image figcaption {text-align: center; color: var(--color-primary); font-size: 14px;}

.wp-block-column {width:50%;}
.wp-block-columns img {max-height: 500px !important; width: auto;
max-width: 100% !important; margin:0 auto; margin-bottom: 15px; border-radius: var(--border);}

.wp-block-media-text {display:flex; justify-content:space-between; align-items: center;
margin:15px 0; flex-wrap: wrap;}
.wp-block-media-text .wp-block-media-text__content, .wp-block-media-text__media {width:48%;}
.wp-block-media-text img {max-height: 500px !important; width: auto; }

.wp-block-columns ul li {width:100%;}


/* Table content */

.wp-block-table {max-width: 100%;overflow-x:auto;}
.wp-block-table table {width:100%;  border-collapse: collapse; margin-bottom:20px;}
.wp-block-table table td { text-align:center; border: 1px solid rgba(0,0,0,.1); padding:10px;}
.wp-block-table table tr:nth-child(2n) {background:#003266;}
.wp-block-table table tr:nth-child(2n) td {color:#fff;}

.content-block {
    position: relative;
    top: 120px;
	padding-left: 280px;
}

/* Banner */

.mainBanner {
	top: 120px;
	position: relative;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
}
.mainBannerInner {
	height: 100%;
    align-items: center;
    display: flex;
    padding-left: 280px;
}
.mainBannerText {
	width:48%; 
	padding-left:60px; 
}
.mainBannerText p, .mainBannerText span {
	color: #fff;
}
.textFirst {
    font-size: 24px;
    font-weight: 700;
}
.textSecond {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    line-height: 35px;
}
.textThird {
    font-size: 24px;
    font-weight: 500;
    padding-top: 10px;
}
.bannerButton {
	padding: 15px 25px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    background-image: linear-gradient(0deg, #fa4d00 0, #fa5e00);
    box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
	animation: pulse 1.5s infinite;
	border-radius: var(--border_button);
	color: #fff;
}
.bannerImg {
	width:48%;
}
.bannerImg img {
	width: 528px; 
	height: 325px; 
	max-width:100%; 
	max-height: 325px; 
	object-fit: contain;
	margin-top: 50px;
}

.mobile-banner {
    display: none;
    width: 100%;
    padding: 2px 0;
    background-color: #003266;
    position: relative;
    top: 50px;
}
.mobile-banner-item {
    padding: 0 3px;
    flex: 1 1 auto;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 2px solid #043e7d;
}
.mobile-banner-item:first-child {
    border-left: 0;
}
.mobile-banner-item .button-sidebar-icon {
    margin: 0 0 5px 0;
}

@-webkit-keyframes pulse{
  0%{-webkit-transform:scaleX(1);transform:scaleX(1)}
  50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}
  to{-webkit-transform:scaleX(1);transform:scaleX(1)}
}

/* Sidebar */

.left-sidebar {
    width: 280px;
    padding: 20px 20px 0 20px;
    position: fixed;
    left: 0;
    top: 120px;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.sidebar-block {
    height: 100%;
    scrollbar-width: none;
    border-radius: 15px;
}

.sidebar-top {
    border-radius: 15px 15px 0 0;
    background-color: #003266;
    margin-bottom: -24px;
    padding-bottom: 30px;
}

.sidebar-top-bonus {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
    padding-top: 20px;
    border-radius: 15px;
    background-image: linear-gradient(180deg,#003266 90%,rgba(0,50,102,0));
}

.sidebar-top-bonus:before {
    content: "";
    display: block;
    background-image: url("/wp-content/themes/alfatheme/img/sidebar-crown.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 87px;
    height: 59px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -15px;
}

.sidebar-top-border {
    width: 100%;
    text-align: center;
    padding: 15px 25px 5px 25px;
    background-image: url("/wp-content/themes/alfatheme/img/sidebar-border.svg");
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.sidebar-border-title {
    display: block;
    color: var(--text);
    margin-top: 12px;
    padding: 0 12px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.sidebar-border-bonus {
    margin-top: 5px;
    padding: 0 8px;
    line-height: 1;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}

.button-sidebar {
    display: inline-block;
    border-radius: 30px;
    width: 126px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    position: relative;
    transition: background 1s ease-out;
    margin-top: 7px;
    background-image: linear-gradient(0deg, #fa4d00 0, #fa5e00);
    box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
}

.button-sidebar-item {
    display: flex;
    align-items: center;
    height: 60px;
    text-transform: uppercase;
    width: 100%;
    overflow: hidden;
    border-top: 2px solid #043e7d;
}

.button-sidebar-item:first-child {
    border-top: none;
}

.button-sidebar-icon {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 10px;
}

.sidebar-top .button-sidebar-title {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    line-height: 60px;
    transition: .2s;
}

.sidebar-top .button-sidebar-item:hover .button-sidebar-title {
    color: #1183d3;
}

.sidebar-top .button-sidebar-item:first-child .button-sidebar-title {
    color: var(--color-primary);
}

.search-btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    position: relative;
    border-radius: 20px;
    border: 2px solid #0d4177;
    margin: 0 10px;
    padding: 0 10px;
}

.search-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px;
}

.search-btn span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1183d3;
}

.sidebar-bottom {
    border-radius: 15px;
    background-color: var(--text);
    overflow: hidden;
}

.sidebar-bottom .button-sidebar-item {
    border-top: 2px solid #e8ecf1;
}

.sidebar-bottom .button-sidebar-item:first-child {
    border-top: none;
}

.sidebar-bottom .button-sidebar-item .button-sidebar-title {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 60px;
    transition: .2s;
}

.sidebar-bottom .button-sidebar-item:hover .button-sidebar-title {
    color: #1183d3;
}

.sidebar-bottom .button-sidebar-item:nth-child(6) {
    background-color: #e8ecf1;
}

.sidebar-bottom .button-sidebar-item:last-child {
    background-color: #e8ecf1;
    border-top: 2px solid #fff;
}

/* BLOCKQUOTE */

blockquote {background: #003266; border-radius:var(--border); padding:20px 20px 20px 40px;
margin-bottom:20px; position:relative; color: var(--text);}
blockquote:before {content:''; position:absolute; top:0; left:0; height:100%; width:10px; border-radius:var(--border);
background:var(--color-primary); }

/* FAQ */
.content_page .rank-math-answer {display: none;}
.content_page .rank-math-answer.active {display: block;}
.content_page.pam_content .rank-math-answer {display: block;}

.rank-math-answer.active { display: block;}
.rank-math-list-item {background: #003266 url('/wp-content/themes/alfatheme/img/faq-down.svg') no-repeat;
background-size: 20px; background-position: 96% 19px;  cursor: pointer; border-radius:15px;
position: relative; padding: 20px 50px 20px 40px; margin-bottom: 20px;}
.rank-math-list-item:before {content:''; position:absolute; top:0; left:0; height:100%; width:10px; border-radius: var(--border);
background:var(--gradient);}
.rank-math-list-item.minus {background: #003266 url('/wp-content/themes/alfatheme/img/faq-up.svg') no-repeat;
background-size: 20px;background-position: 96% 19px;}
.rank-math-question {text-align:left;  padding-bottom:0;}
.rank-math-question span, .rank-math-question { font-size:20px!important;line-height:30px!important; 
padding-bottom:0; padding-top:0;color: var(--color-primary); }
.rank-math-answer p { padding-top:5px; padding-bottom:0px;}

#rank-math-faq { position: relative; z-index: 4; }




/* Footer */


footer {padding:30px 0 0 280px;position: relative;top: 120px;}
.footerInner {background: #003266;border-radius: 15px 0 0 0;}
.footerInner .copy {text-align:center; padding-bottom:15px;}
.footerInner .copy span { font-size:15px;}
.footerInner .copy a {color:var(--color-secondary);}
.footerInner .copy a:hover {color:var(--color-primary);}

.footerLinks {border-top:1px solid #ddd; padding:10px 0 20px 0;max-width: 90%; margin: 0 auto; }
.footerLinks ul {display:flex; justify-content:center; flex-wrap:wrap;}
.footerLinks ul li {font-size:16px; line-height:25px; margin:0 8px; text-align:center; width: unset;     padding: 0;}
.footerLinks ul li:before { content: none; }
.footerLinks ul li a {font-size: 14px;}
.footerLinks ul li a:hover {color:var(--color-primary);}

.footer-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.footer-eighteen {
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #09437f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu {
    margin-bottom: 20px;
}

.footer-menu .menuDesktop {
    flex-wrap: wrap;
}

.footer-menu .menuDesktop a {
    font-size: 16px;
    padding: 0 20px;
    font-weight: 700;
    color: var(--text);
}

.footer-menu .menuDesktop a:hover {
    color: var(--color-secondary);
}

.payment {
    padding: 10px;
    background-color: #04386e;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}

.payment-item {
    margin: 5px;
    height: 27px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.payment-item.mastercard {
    width: 35px;
}

.payment-item.visa {
    width: 120px;
}

.payment-item.maestro {
    width: 60px;
}

.payment-item.webmoney {
    width: 120px;
}

.payment-item.ecopayz {
    width: 120px;
}

.payment-item.bitcoin {
    width: 120px;
}

.footer-download {
    margin: 20px;
    display: flex;
}

.footer-downloads {
    background-color: #09437f;
    border-radius: 20px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-download {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 5px;
    color: var(--text);
    text-transform: uppercase;
}

.footer-downloads .download-logo-android, .footer-downloads .download-logo-apple {
    margin-left: 20px;
}

.footer-bottom {
    padding: 10px;
    background-color: #04386e;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 15px;
}

.footer-bottom-item {
    margin: 5px;
    height: 56px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer-bottom-item.fifa {
    width: 79px;
}

.footer-bottom-item.nhl {
    width: 40px;
}

.footer-bottom-item.wta {
    width: 57px;
}

.footer-bottom-item.fiba {
    width: 61px;
}

.footer-bottom-item.atp {
    width: 49px;
}

.footer-bottom-item.uefa {
    width: 71px;
}

.footer-bottom-item.iihf {
    width: 99px;
}

.footer-bottom-item.nba {
    width: 68px;
}

/* Slots */

.slots_gallery {
    margin-bottom: 20px;
}
.slots_gallery_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.slots_gallery_left {
    display: flex;
    align-items: center;
}
.slots_gallery_icon {
    width: 54px;
    height: 54px;
    background-repeat: no-repeat;
    background-size: contain;
}
.slots_gallery_left span {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text);
}
.all_slots {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background: #003266;
    height: 40px;
    padding: 0 20px;
}
.all_slots:hover {
    background: #115ba9;
}
.all_slots_icon {
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 14px;
    margin-left: 10px;
}
.all_slots span {
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.slots_items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.slot {
    border-radius: 15px;
    position: relative;
}
.slot-img {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}
.slot-img img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: .3s;
}
.slot:hover .slot-img img {
    transform: scale(1.1);
}
.slot-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #003266cc;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
.slot:hover .slot-back {
    opacity: 1;
}
.slot-provider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
.slot-provider span {
    color: #99caff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}
.slot:hover .slot-provider {
    opacity: 1;
}
.slot-btn-play {
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}
.slot-demo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
.slot-btn-demo {
    background-color: #428cdc;
    border-radius: 20px;
    color: #002347;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 10px;
    text-transform: uppercase;
    transition: .3s;
}
.slot-btn-demo:hover {
    color: var(--text);
}
.slot:hover .slot-demo {
    opacity: 1;
}

.games_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.games_items .slot-img img {
    height: 190px;
}

.providers_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.provider-item {
    overflow: hidden;
    padding: 30px 20px;
    position: relative;
    background-color: #073361;
    border-radius: 15px;
    transition: .3s;
}
.provider-item:hover {
    background-color: #115ba9;
}
.provider-btn {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Mobile download */

.mobile-download {
    display: none;
    min-height: 60px;
    background-color: #003266;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/wp-content/uploads/2023/04/banner-mobile.png");
    background-position: center 10px;
    display: none;
    align-items: center;
    justify-content: space-around;
    padding-top: 10px;
    position: relative;
    top: 50px;
}
.mobile-download-img {
    background-image: url("/wp-content/uploads/2023/04/phone-mobile.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 86px;
    height: 60px;
    margin: -10px 5px 0 5px;
}
.mobile-download-btn {
    background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
    box-shadow: 0 10px 30px rgba(250,65,0,.4);
    margin: 0 5px;
    font-size: 14px;
    height: 26px;
    padding: 2px 10px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
}
.mobile-download-title {
    text-transform: none;
    font-size: 13px;
    font-weight: 700;
}
.mobile-download-icon {
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

    /* Scroll to top */

.scrollToTop {opacity:0; background: var(--color-secondary); width:30px; height:30px; transition:0.4s;
border-radius: 50%;position:fixed; bottom:70px; right:30px; box-shadow: var(--shadow-primary);
display:flex; justify-content:center; align-items:center; cursor: pointer; z-index: 8;}
.scrollToTop img {width:15px; height:15px;}
.scrollToTop.pam_content {opacity:1;}


/* Fixed buttons */
.fixed_buttons {display: none; position: fixed; width: 100%; padding: 6px 0; justify-content: center; background: var(--main);
box-shadow:var(--shadow-primary); bottom: 0; left: 0; z-index:8;}
.fixed_buttonsInner {display:flex; justify-content:center; align-items:center;}
.fixed_buttons button {border-radius: var(--border_button); padding:10px 10px; color:#fff;  text-transform:uppercase;
font-size:16px; background:var(--color-primary); width:48%; max-width:200px; margin:0 10px; display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center; }


.buttonWrapper, .buttonWrapperImg {margin-bottom: 20px; display:flex; justify-content:center;}
.buttonWrapper button {
    background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
    box-shadow: 0 10px 30px rgba(250,65,0,.4);
    color: #fff;
    display: block;
    position: relative;
    font-weight: 700;
    padding: 10px 45px;
    font-size: 18px;
    border-radius: 50px;
    transition: .3s;
}
.buttonWrapper button:hover {    background-image: linear-gradient(0deg,#fa5e00 0,#fa7c00);
    box-shadow: 0 20px 30px rgba(250,65,0,.4);}
.buttonWrapperImg button img {
    height: 100%;
}

.contentBanner, .contentBannerMain {position:relative; width:100%; max-width:528px; height:220px; margin:0 auto; 
background-size:cover;  margin-top:10px; margin-bottom:40px; border-radius:15px; 
box-shadow:0 0 50px 5px rgba(251, 251, 251, 0.2);}
.contentBanner {background:url(/wp-content/themes/alfatheme/img/crazy-time.webp)no-repeat;background-position:center center;}
.contentBannerMain {background:url(/wp-content/themes/alfatheme/img/1win-banner.webp)no-repeat;}
.contentBanner .contentBannerButton, .contentBannerMain .contentBannerButton {position:absolute; bottom:-20px; left:0; display:flex;
justify-content:center; width:100%;}
.contentBanner .contentBannerButton button, .contentBannerMain .contentBannerButton button {animation: rainbow 2s linear 0s infinite;
padding: 15px 30px; border-radius: 30px; color: #fff; font-weight: bold; font-size: 16px; text-transform: uppercase;}

@keyframes rainbow {
	0% {background: var(--color-primary);}
	50% {background:var(--color-secondary);}
	100% {background:var(--color-primary);} 
}
.slot-img amp-img, .slot-img amp-anim {
    object-fit: cover !important;
}

/* TABLE OF CONTENTS */

#alfa__contents input[type='checkbox'] { display: none; }

#alfa__contents { margin: 1.2rem 0 !important; display: block !important; }
.lbl-toggle {display: inline-block; font-size: 14px; text-transform: uppercase; text-align: center;
    padding: 15px 10px; color: #fff; background-color: #003266; cursor: pointer; border-radius: 15px; transition: all 0.25s ease-out; }
.lbl-toggle:hover { background-color: #115ba9; } .lbl-toggle::before { content: ' '; display: inline-block; border-top: 5px solid transparent;
                                       border-bottom: 5px solid transparent; border-left: 5px solid currentColor; vertical-align: middle; margin-right: .7rem; transform: translateY(-2px); transition: transform .2s ease-out; } .toggle:checked+.lbl-toggle::before { transform: rotate(90deg) translateX(-3px); }
.alfa__contents-submenu { max-height: 0px; overflow: hidden; transition: max-height .25s ease-in-out; display: flex;
    flex-direction: column; max-width: 55%; }
.toggle:checked + .lbl-toggle + .alfa__contents-submenu { max-height: 1000px; background-color: #003266; padding: 20px; border-top-right-radius: 15px; border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;}
.toggle:checked+.lbl-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.alfa__contents-submenu a {color:#fff; margin: 0 !important; border: none !important; position: relative; padding: 2px 15px !important; }

.alfa__contents-submenu a:before {
    content: ''; width: 8px; height: 8px; background: #fa5e00; position: absolute; top: 13px; left: 0; border-radius: 50%;
}

#alfa__contents a:hover { color: #fa5e00 !important; }


/* App buttons */
.buttonsApp {display:flex; justify-content:center; flex-wrap:wrap;}
.buttonsApp button {width:220px; height:66px; margin:15px 40px; border-radius: 15px;
box-shadow: 0 0 50px 5px rgba(251, 251, 251, 0.2);}
.buttonsApp .googleButton {background: url(/wp-content/uploads/2022/02/google-play-btn.png.webp)no-repeat; background-size:cover;}
.buttonsApp .appstoreButton {background: url(/wp-content/uploads/2022/02/app-store-btn.png.webp)no-repeat; background-size:cover;}

@media screen and (max-width: 500px) {
.buttonsApp button {margin:15px 0px;}	
}



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


.wp-block-column {width:100%;}
.wp-block-columns img {max-height: 300px !important;}
.wp-block-columns {flex-wrap:wrap!important;}



h1 {font-size: 26px; line-height: 30px;}
h2 {font-size: 22px; line-height: 32px;}
h3 {font-size: 20px; line-height: 30px;}
h4 {font-size: 18px; line-height: 28px;}
h5, h6 {font-size: 16px; line-height: 26px;}

h1, h2, h3, h4, h5, h6 {padding: 10px 0;}

.content_page ul li, .content_page ol li {width:100%;}
section ul li, section ol li {width:100%;}

.rank-math-question span, .rank-math-question {font-size: 18px !important;line-height: 28px !important;}
.rank-math-list-item {padding: 20px 50px 20px 28px;}

blockquote {padding: 20px 20px 20px 28px;}


p, span, li {font-size: 17px; line-height: 28px;}
.content_page ul {margin-left:0;}

.wp-block-media-text__media { width: 100%; display: flex; justify-content: center; }
.wp-block-media-text__media img { max-width: 100%; height: auto; margin-bottom: 15px; }

.wp-block-media-text .wp-block-media-text__content, .wp-block-media-text__media {width:100%;}
.wp-block-media-text__media img {margin:0 auto;}

body .is-layout-flex > * {flex-basis: 100% !important;}
	
.mainBanner {height:auto;}
.mainBannerInner {flex-wrap:wrap; padding: 0 20px;}
	
.textFirst {
	display: none;
}
	
.mainBannerText {
   width: 100%;
   padding-top: 60px;
   padding-left: 0px;
   text-align: center;
}
	
.bannerImg {width:100%; margin-top: 20px;}
.bannerImg img {display: block; height: 167px; width: 200px; margin: 0 auto; object-fit: contain;}
	
.bannerButton {
   padding: 10px 25px;
   font-size: 16px;
	white-space:nowrap;
}

}

@media screen and (max-width: 1024px) {
    .headerDesktop .burger {display: flex;align-items: center;	}
    header .deskMenu {display: none!important;}
    .header .buttons {display:none;}

    .lang_choose .submenu {
        width: 140px;
        left: auto;
        right: -5px;
    }
    header {
        background-color: var(--main);
        background-image: unset;
    }
    .header .logo img {
        width: 150px;
    }
    .lang_choose.mobile {
        display: block;
    }
    .lang_choose.desktop {
        display: none;
    }
    .header_top {
        display: none;
    }
    .header_bottom {
        padding: 0 5px;
    }
    .lang_choose a, .lang_choose .choose span {
        font-size: 12px;
    }

    .content_page {padding: 20px 20px 10px 20px;}

    .fixed_buttons {display:block;}
    .footerLinks {padding:10px 0 40px 0; }

    .left-sidebar {
        display: none;
    }
    .content-block {
        padding-left: 0;
        top: 50px;
    }
    footer {
        padding: 30px 0 52px 0;
        top: 50px;
    }
    .footerInner {
        border-radius: 0;
    }

    .mobile-banner {
        display: flex;
    }
    .mainBanner {
        top: 50px;
    }

    .button-sidebar-title {
        font-size: 14px;
    }

    .mobile-download {
        display: flex;
    }
}

@media screen and (max-width: 800px) {
    .header .logo img {
        width: 140px;
    }
    .lang_choose .choose {
        padding: 0 0 0 5px;
    }
    .lang_choose span {
        padding: 0 5px 0 0px;
    }

    .bannerImg {
        display: none;
    }
    .mainBannerText {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .textSecond {
        font-size: 24px;
    }
    .textThird {
        font-size: 18px;
        line-height: 20px;
    }

    .games_items, .providers_items, .slots_items {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        padding: 10px 0 52px 0;
    }
    .footer-menu .menuDesktop a {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .footer-block-top .logo img {
        width: 200px;
    }

    .alfa__contents-submenu {
        max-width: 100%;
    }

}