/**
 * Theme Name:  Winnersgamingclub
 * Theme URI:   http://wordpress.org/themes/Winnersgamingclub
 * Author:      Ben
 * Description: Theme for https://winnersgamingclub.com/.
 */

 @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

body { 
    overflow-x: hidden;
    background-color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
	position: relative;
	min-height: 100vh;
	  display: flex;
	  flex-direction: column;
}

footer {
	margin-top: auto !important;
}

#lang_sel_footer ul li:before {
	content: none;
}

h1, h2, h3, h4, h5, h6 {
    padding-bottom: 20px;
}

a {
    text-decoration: none; 
    transition: 0.3s; 
}

input, button {
    border: none; 
    box-shadow: none; 
    outline: none;
    transition: 0.3s;
}

ul, ol {
    list-style: none;
    margin-bottom: 20px;
	align-items: flex-start;
    justify-content: space-between;
}

p {
    line-height: 24px;
    margin-bottom: 25px;
}

.container {
    display: block;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1180px;
}

.content_page {
    margin-top: 83px;
}

.mt-0 {
	margin-top: 62px;
}

.wp-block-pullquote {
    margin: 40px !important;
    padding: 40px !important;
    border-radius: 20px !important;
    background-color: #98f1c1;
    font-weight: 500;
}

.wp-block-pullquote p {
    margin: 0;
    font-size: 16px !important;
    text-align: start;
}

.wp-block-image:not(.is-style-rounded)>a, .wp-block-image:not(.is-style-rounded) img, .wp-block-image img {
    border-radius: 20px !important;
}

ul li {
	padding: 5px 20px 5px 30px;
	display: block;
	align-items: center;
	position: relative; 
	flex-wrap: wrap;
    justify-content: space-between;
}   

ul li::before {
	content: ' ';
	background-image: url("https://winnersgamingclub.com/wp-content/uploads/2022/09/remove_FILL1_wght400_GRAD0_opsz24.png");
	height: 24px;
	width: 24px; 
	background-size: cover;
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
}

ol {
    counter-reset: orderedlist;
}

ol li {
    padding: 5px 20px;
    display: block;
}

ol li::before {
    counter-increment: orderedlist;
    content: counter(orderedlist);
    height: 24px;
    width: 24px;
   margin-left: -20px;
    padding-right: 10px;
  }

.wp-block-table {
    margin: 0px !important;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

/* begin begin Back to Top button  */

.back_to_top {
  position: fixed;
  bottom: 80px;
  right: 40px;
  z-index: 9999;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: #00D764;
  color: #444;
  cursor: pointer;
  border-radius: 2px;
  display: none;
}

.back_to_top:hover {
  background: #28f386;
}

.back_to_top-show {
  display: block;
}

/* Header */

.header {
	position: fixed;
	top: 0;
	left: 0; 
	width: 100%;
	height: 62px;
    background: #000;
    box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.1);
    z-index: 30;
}
header, .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-wrap {
    padding: 10px 20px;
}
.menu-wrapper { 
	display: flex;
    align-items: center;
    justify-content: center; 
}
.menu {
	display: flex;
	align-items: center;
}
#menu-header-menu {
	display: flex;
	margin: 0;
}
#menu-header-menu li:before {
	content: none;
}

#menu-header-menu a {
	color: #fff;
}

/* Burger */

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    background: black;
    z-index: -1;
}

#hamburger-input{
  display: none;
}

#hamburger-menu {
	display: none;
    position: fixed;
    top: 17px;
    left: 20px;
    width: 30px;
    height: 10px;
    border: none;
    padding: 10px;
    margin: 0px;
    background-image: url('https://winnersgamingclub.com/wp-content/uploads/2022/09/icons8-menu-rounded-24.png');
	background-repeat: no-repeat;
}

#hamburger-menu #sidebar-menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: -250px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, rgba(60,63,68,1) 50%, rgba(40,43,48,1) 100%);
    transition: 0.3s;
    padding: 0px 10px;
    box-sizing: border-box;
}

#sidebar-menu ul {
  padding-left: 0px;
	flex-direction: column;
   align-items: baseline;
}

#sidebar-menu li {
  list-style-type: none;
  line-height: 3rem;
  width: 100%;
  border-bottom: 1px solid #ede6e6;
}

#sidebar-menu li:before {
	content: none;
}

#sidebar-menu a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

#sidebar-menu a:hover {
  text-decoration: underline;
}

#hamburger-input:checked + #hamburger-menu #sidebar-menu {
    visibility: visible;
    left: 0;
}
#hamburger-input:checked ~ .overlay{
   visibility: visible;
  opacity: 0.4;
}


@media screen and (max-width: 750px) {
	.custom-menu {
		display: none;
	}
  #main-menu {
    display: none;
  }
  #hamburger-menu {
    display: inline;
  }
	.logo img {
		margin-left: 50px;
		margin-right: 20px;
		margin-top: 10px;
		width: 104px;
		height: 20px;
	}
}

/* Banner */

.main-banner {
    position: relative;
}

.main-banner img {
    width: 100%;
    height: 300px;
    margin: auto auto 20px auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.info-slider-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    z-index: 20;
    padding: 0 40px;
	color: #fff;
    text-transform: uppercase;
	text-shadow: 1px 1px 15px #000;
}

.info-slider-text-title {
    font-size: 32px;
    font-weight: 600;
}

.info-slider-text-descr {
 font-size: 26px;
}

.info-slider-text-descr span {
	font-size: 32px;
    letter-spacing: -2px;
    color: #fffa5b;
    font-weight: 700;
}

.info-slider-text-btn {
    margin-top: 20px;
    margin-bottom: 0;
}

.wp-block-image {
    border-radius: 5px;
	text-align: center;
    font-style: italic;
    font-size: 14px;
}

/* Button */

.button {
   	padding: 10px 15px;
    border-radius: 100px;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
}

.reg-button {
    background: #00D764;
}
.reg-button:hover {
    background: #05f575;
}
.login-button {
	background: #030303;
}
.login-button:hover {
	 background: #030303;
}

.wp-block-button__link, .login-button {
    background: #00D764;
}

.content-button {
	text-align: center;
	margin-bottom: 20px;
}

/* Table */

.wp-block-table table {
    background: #f5f5f5;
    border-radius: 5px;
}

th, td {
    padding: 15px;
    text-align: left;
}

tr {
	border-bottom: 1px solid #eee;
}

tr:last-child {
	border-bottom: none;
}

@media (max-width: 680px) {
	.banner-row {
    flex-direction: column;
	}
	.banner-column-one {
		margin-bottom: 20px;
		width: 100%;
	}
	.banner-column-two {
    flex-direction: column;
	}
	.bonus-text {
    width: 280px;
}
	.bonus-count {
    flex-direction: row;
    margin-bottom: 20px;
    width: 100%;
	align-items: center;
	justify-content: space-evenly;
	}
	.star-wrapper {
    max-width: 280px;
}
	.star-title {
    width: 110px;
    font-size: 14px;
}
	.clip-star {
    height: 14px;
    width: 14px;
}
	.wp-block-pullquote {
    margin: 20px 0px !important;
    padding: 20px !important;
	font-weight: 400;
}
	.info-slider-text {
		padding: 0 20px;
	}
	.info-slider-text-descr span {
		font-size: 18px;
	}
	
	h1 {
    font-size: 28px;
    text-align: center;
	}
	
}

/* Footer */

.footer-wrap {
	padding: 20px 0;
    text-align: center;
}

.menu-footer-menu-container {
	padding-top: 10px;
}

.menu-footer-menu-container ul li:before {
	content: none;
}

.footer-menu {
	align-items: center;
    display: flex;
    flex-direction: column;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: #fff;
}

.footer-bg {
	background: #000;
	color: #fff;
	width: 100%;
}


/* 404 page */

.error-page {
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    font-size: 100px;
    font-weight: 600;
}
.error-page p {
	font-size: 18px;
	font-weight: 400;
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}
