﻿﻿/*   
Theme Name: Winnersofts
Author: Winnersofts
Version: 1.0
*/

/* GENERAL STYLES */

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

html,
body {
    background-color: #F5F6FA;
    font-family: "Onest", serif;
    font-weight: 400;
    color: #fff;
    cursor: default;
}

html.modal-open{
    overflow: hidden;
}



::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    width: 4px;
    background-color: #121727;
    border-radius: 2px;
}

textarea,
input {
    font-family: "Onest", serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    max-width: 100%;
}

ul {
    list-style: none;
}

h2.centered {
    text-align: center;
}

hr {
    border-top: 3px solid #ffe7cc;
    margin-bottom: 60px;
}

.sup + hr {
    margin-top: 60px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container.var2 {
    max-width: 100%;
}

.button {
    display: flex;
    align-items: center;
    padding: 10px 30px;
    background-color: #ff6400;
    transition: background-color .3s;
}

.button:hover {
    background-color: #CC5200;
}

.button svg {
    max-height: 30px;
    margin-left: 15px;
    transition: .3s;
    position: relative;
    right: 0;
    min-width: 25px;
}

.button svg:first-child {
    margin-left: 0;
    margin-right: 15px;
}

.button:hover svg:not(:first-child) {
    right: -10px;
}

.main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.main-title.top {
    align-items: flex-start;
}

.main-title.top p {
    margin: 0;
}

.main-title__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.main-title h2 {
    font-size: 43px;
    font-weight: 800;
    color: #020514;
    width: calc(50% - 10px);
    padding-right: 50px;
}

.main-title .desc {
    text-align: right;
    font-size: 18px;
    font-weight: 500;
    color: #8c8c8c;
    width: calc(50% - 10px);
}

.main-title .desc.text-left {
    text-align: left;
}

.main-title .desc strong{
	color: #ff6400;
}

.main-title .desc p {
    margin-bottom: 0;
}

.main-title .desc a {
    color: #ff6400;
    text-decoration: underline;
}

.main-right-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}

.main-right-btn + h2 {
    margin-top: 60px;
}

.main-right-btn + .main-title {
    margin-top: 60px;
}

.main-right-btn.left {
    display: block;
}

.text-block  .main-right-btn .title {
    display: block;
    color: #020514;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-right-btn .button {
    width: calc(50% - 10px);
    font-size: 16px;
}

/* GENERAL STYLES */

/* HEADER */
header {
    display: flex;
}

.logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 432px;
    width: 100%;
    background-color: #020514;
}

.logo-block svg, 
.logo-block img {
    height: 50px;
}

.nav-block {
    width: 100%;
}

.nav-block__top {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 48px;
    background-color: #51576f;
    color: #fff;
}

.header-contacts {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    width: calc(100% - 215px);
    font-weight: 600;
}

.header-contact {
    display: flex;
    align-items: center;
    transition: .3s;
}

.header-contact:hover {
    color: #f7921e;
}

.header-contact + .header-contact {
    margin-left: 20px;
}

.header-contact svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

header .lang {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 67px;
    width: 100%;
    background-color: #121727;
    cursor: pointer;
    transition: background .3s;
    position: relative;
}

.btn-modal__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    min-width: 200px;
    padding: 10px 0;
    background-color: #293047;
    display: none;
	z-index: 4;
}

.btn-modal__dropdown::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 10px solid #293047;
    border-top: 0;
}

.btn-modal__dropdown .langs-list {
    display: block;
}

.btn-modal__dropdown .langs-item {
    border-radius: 0;
    padding: 10px;
}

.btn-modal__dropdown .langs-item:hover,
.btn-modal__dropdown .langs-item.active:hover {
    background-color: #121727;
}

.btn-modal__dropdown .langs-item.active {
    background-color: unset;
}

.btn-modal__dropdown .langs-item .flag img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border: 2px solid transparent;
}

.btn-modal__dropdown .langs-item.active .flag img {
    border: 2px solid #ff6400;
}

header .lang:hover,
header .lang.active:hover {
    background-color: #293047;
}
header .lang.active .btn-modal__dropdown {
    display: block;
}

header .lang img {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    object-fit: cover;
    vertical-align: top;
}

.nav-block__bottom {
    padding: 11px 68px;
    background-color: #ff6400;
}

.nav-block__bottom nav ul {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 600;
}

.nav-block__bottom nav ul > li {
    color: #020514;
    padding: 12px 0;
    transition: color .3s;
    position: relative;
}

.nav-block__bottom nav ul > li a {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-block__bottom nav ul > li a:hover {
    color: #fff;
}

.nav-block__bottom nav ul > li svg {
    width: 15px;
    height: 15px;
    margin-left: 3px;
    transition: transform .3s;
}

.nav-block__bottom nav ul > li a:hover svg {
    transform: rotate(180deg)
}

.nav-block__bottom nav ul > li + li {
    margin-left: 40px;
}

.nav-block__bottom nav ul ul {
    position: absolute;
    top: calc(100% - 10px);
    left: -10px;
    z-index: 15;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    width: auto;
    white-space: nowrap;
    padding: 10px;
    background-color: #ff6400;
}

.nav-block__bottom nav ul > li:hover ul {
    opacity: 1;
    pointer-events: all;
}

.nav-block__bottom nav ul ul li {
    margin-left: 0;
}

/* HEADER */

/* INDEX BLOCKS */
.welcome-block {
/*     background-image: url(https://winnersofts.com/wp-content/themes/Winnersofts/img/bg1.jpg); */
    background-color: #020514;
    background-size: cover;
    background-position: bottom -200px center;
    background-repeat: no-repeat;
    min-height: 372px;
    padding: 85px 0 60px;
	position: relative;
}

.welcome-block > img {
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-block .container{
	position: relative;
	z-index: 1;
}

.welcome-block .title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 800;
}

.welcome-block .text {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 600;
    position: relative;
}

.welcome-block .text p {
    width: calc(100% - 300px);
}

.welcome-block .text a {
    color: #ff6400;
    border-bottom: 1px solid rgba(255, 100, 0, .7);
    transition: border-bottom .3s;
}

.welcome-block .text a:hover {
    color: #ff6e00;
    border-bottom: 1px solid rgba(255, 100, 0, 1);
}

.welcome-block .text img {
    max-width: 500px;
    position: absolute;
    bottom: -150px;
    left: calc(100% - 250px);
}

.products-block {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
}

.products-block .main-title h2,
.products-block .main-title .desc {
    color: #fff;
}

.products-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.products-item {
    display: block;
    min-height: 108px;
    width: calc(50% - 10px);
    position: relative;
}

.products-item .wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    min-height: 108px;
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.products-item:hover .wrapper {
    left: -10px;
    width: calc(100% + 20px);
    padding: 22px 10px;
    border-bottom: none;
    background: #fff;
    z-index: 2;
    color: #020514;
}

.products-item img {
    width: 67px;
    margin-right: 30px;
}

.products-item .title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
}

.products-item .text {
    display: none;
    font-weight: 600;
}

.products-item:hover .text {
    display: block;
}

.providers-desc {
    padding: 60px 0;
}

.providers-desc.p0 {
    padding: 0;
}

.providers-desc-block {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.providers-table{
    display: flex;
    flex-wrap: wrap;
    padding-left: 2.5px;
}

.providers-table + h2{
    margin-top: 18px;
}

.provider-desc {
    min-height: 108px;
    width: calc((100% - 60px) / 4);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.provider-desc.var2 {
    min-height: 117px;
}

.container.var2  .provider-desc.var2 {
    min-height: 174px;
}

.providers-table .provider-desc{
    width: calc(100% / 5);
    border: 1px solid #ff6400;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -1px;
}

.providers-table.in-row-4 .provider-desc{
    width: calc(100% / 4);
    min-height: 145px;
}

.providers-table .provider-desc:hover .provider-desc-block{
    border: 2px solid #ff6400;
    margin-top: -3px;
}

.provider-desc-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 10px 0;
    color: #020514;
}

.provider-desc.var2 .provider-desc-block {
    padding: 0;
}

.provider-desc:hover .provider-desc-block {
    z-index: 2;
    top: 0;
    left: -10px;
    right: -10px;
    background: #fff;
    border: 1px solid #ff6400;
    box-shadow: .5rem .5rem 0 rgba(0, 0, 0, .15);
}

.container.var2 .provider-desc:hover .provider-desc-block {
    transform: scale(1.05)
}

.provider-desc-block .img-block {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.container.var2 .provider-desc-block .img-block {
    min-height: 145px;
}

.providers-table.in-row-4 .provider-desc .img-block{
    min-height: 116px;
}

.provider-desc:hover .img-block {
    border-bottom: 1px solid #ff6400;
}

.provider-desc-block .img-block img {
    max-width: 145px;
    width: 100%;
}

.provider-desc:hover .img-block img {
    max-width: 175px;
}

.provider-desc-block .text,
.provider-desc-block .btn {
    display: none;
}

.provider-desc:hover .text {
    display: block;
}

.provider-desc:hover .text {
    padding: 30px 0;
    font-size: 12px;
    line-height: 1.4;
}

.provider-desc.var2:hover .text {
    margin: 0;
    position: absolute;
    top: calc(100% + 16px);
    padding: 8px;
    border: 1px solid #ff6400;
    background-color: #fff;
}

.provider-desc:hover .btn {
    font-size: 15px;
    font-weight: 700;
    margin-right: -10px;
    padding-bottom: 18px;
    border-bottom: 4px solid #ff6400;
}

.provider-desc .name {
    text-align: center;
    padding: 8px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(140,140,140,.7);
}

.provider-desc:hover .name {
    color: #fff;
    background: #ff6400;
}

.note-block {
    text-align: center;
    margin: 10px 0;
    font-weight: 700;
    color: #8c8c8c;
}

.games-slider {
    position: relative;
}

.games-slider::after {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(96%, transparent), to(rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left bottom, left top, color-stop(96%, transparent), to(rgba(0, 0, 0, 0.25)));
    background-image: linear-gradient(to bottom, transparent 96%, rgba(0, 0, 0, 0.25)), linear-gradient(to top, transparent 96%, rgba(0, 0, 0, 0.25));
    pointer-events: none;
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.games-swiper {
    min-height: 432px;
}

.games-swiper .swiper-slide {
    height: 432px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.games-swiper .swiper-slide img {
    max-height: 380px;
    max-width: 1000px
}

.games-swiper .swiper-slide .desc {
    position: absolute;
    bottom: 16px;
    left: 16px;
    max-width: 350px;
    padding: 16px 32px 16px 16px;
    background-color: rgba(204, 82, 0, .7);
}

.games-swiper .swiper-slide .desc .sup {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
}

.games-swiper .swiper-slide .desc .title {
    font-size: 36px;
    margin-bottom: 18px;
}

.games-swiper .swiper-slide .desc a {
    margin-left: 27px;
    margin-bottom: 18px;
    text-decoration: underline;
    color: rgba(255, 255, 255, .7);
}

.games-swiper .swiper-slide .desc a:hover {
    text-decoration: none;
}

.swiper-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.swiper-thumbs .swiper-wrapper {
    transition: .3s !important;
}

.swiper-thumbs .swiper-slide {
    max-width: 394px;
    width: 70vw;
    background-color: rgba(204, 82, 0, .7);
    display: flex;
    flex-direction: column;
    margin-left: 60px;
    transition: .3s;
}

.swiper-thumbs .swiper-slide a {
    padding: 14px 4px 14px 28px;
    transition: .3s;
}

.swiper-thumbs .swiper-slide:not(.link-slide) a {
    pointer-events: none;
}

.swiper-thumbs .swiper-slide.link-slide a {
    text-decoration: underline;
    color: rgba(255, 255, 255, .7);
}

.swiper-thumbs .swiper-slide:first-child {
    pointer-events: none;
    padding: 14px 4px 14px 28px;
}

.swiper-thumbs .swiper-slide:first-child .title {
    font-size: 36px;
    font-weight: 600;
}

.swiper-thumbs .swiper-slide:not(.link-slide):hover a {
    padding-left: 14px;
}

.swiper-thumbs .swiper-slide.link-slide:hover a {
    text-decoration: none;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:not(:first-child) {
    margin-left: 0px;
    max-width: 454px;
    background-color: #ff6400;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:first-child + .swiper-slide {
    margin-left: 0px;
    max-width: 454px;
    background-color: #ff6400;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active a {
    pointer-events: all;
    padding: 14px 4px 14px 14px;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:first-child + .swiper-slide a {
    pointer-events: all;
    padding: 14px 4px 14px 14px;
}

.swiper-thumbs .swiper-slide .sup {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active .sup {
    font-size: 16px;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:first-child + .swiper-slide .sup {
    font-size: 16px;
}

.swiper-thumbs .swiper-slide .title {
    font-size: 18px;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:first-child + .swiper-slide .title {
    font-size: 19px;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active:not(:first-child) .title {
    font-size: 19px;
}

.features {
    padding: 60px 0;
    position: relative;
}

.features > img {
    position: absolute;
}

.features > img:nth-child(1) {
    max-height: 800px;
    left: 10px;
    bottom: -30px;
}

.features > img:nth-child(2) {
    max-height: calc(100% - 40px);
    right: 10px;
    bottom: 0;
}

.features__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.features__item {
    color: #020514;
    width: 31.33%;
    margin-bottom: 60px;
}

.features__item .num {
    font-size: 94px;
    padding-bottom: 9px;
}

.features__item .num span {
    font-size: 56px;
    vertical-align: middle;
}

.features__item .label {
    color: #8c8c8c;
    font-weight: 700;
    border-top: 1px solid rgba(140, 140, 140, .7);
    padding-top: 16px;
}

.clients {
    background: #fff;
    padding: 60px 0;
}

.clients__block {
    display: flex;
    flex-wrap: wrap;
}

.clients__item {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 7px 18px;
}

.clients__item img {
    max-width: 145px;
    max-height: 72px;
    width: 100%;
}

.licenses {
    padding: 60px 0;
    background: #51576f;
}

.licenses .main-title h2 {
    color: #fff;
}

.licenses__block {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

.licenses__item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.licenses__item {
    padding: 20px 15px 10px;
    min-height: 340px;
    background-color: #fff;
    color: #020514;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0s;
}

.licenses__item:hover {
    position: absolute;
    left: -15px;
    width: calc(100% + 30px);
    -webkit-box-shadow: .5rem .5rem 0 rgba(0, 0, 0, .15);
    box-shadow: .5rem .5rem 0 rgba(0, 0, 0, .15);
    border: 1px solid #ff6400;
    transform: scale(1.1);
    z-index: 3;
    transition: .3s;
}

.licenses__item .img-block {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.licenses__item .img-block img {
    max-height: 72px;
    max-width: 145px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: #CC5200;
    margin: 20px 0;
}

.licenses__item .title {
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 12px;
}

.licenses__item .text {
    font-size: 10px;
    color: #8c8c8c;
}

.licenses__item a {
    margin-top: auto;
    font-size: 12px;
    border-bottom: 1px solid #020514;
}

.licenses__item a:hover {
    color: #ff6400;
    border-bottom: 1px solid #ff6400;
}

.preview-slider {
    background-image: url(/wp-content/themes/Winnersofts/img/slider-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.preview-slider .main-title h2 {
    color: #fff;
}

.preview-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-swiper {
    margin-bottom: 60px;
}

.preview-swiper .swiper-button-next,
.preview-swiper .swiper-button-prev {
    color: #fff;
    font-weight: 900;
}

.preview-slider .swiper-slide img {
    max-height: 500px;
}

.last-news {
	display: none;
    padding: 60px 0;
    background-color: #fff;
    color: #020514;
}

.last-news .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.last-news__title .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.last-news__title a {
    color: #ff6400;
    font-size: 18px;
    border-bottom: 2px solid #ff6400;
}

.last-news__title a:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.last-news__item img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    background-position: center;
    margin-bottom: 10px;
}

.last-news__item .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.last-news__item:hover .title {
    color: #ff6400;
}

.last-news__item .text {
    font-size: 11px;
    margin-bottom: 10px;
}

.last-news__item .date {
    color: #8c8c8c;
    font-size: 11px;
}

.wp-pagenavi{
	margin: 20px 0 40px;
	width: 100%;
	text-align: center;
}

.wp-pagenavi span.pages,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
	display: none;
}

.wp-pagenavi span,
.wp-pagenavi a{
	font-size: 16px;
	padding: 12px 16px;
	border-radius: 4px;
	margin: 0 3.5px;
	display: inline-block;
}

.wp-pagenavi a{
	color: #ff6400;
	border: 1px solid #ff6400;
}

.wp-pagenavi span,
.wp-pagenavi span.current,
.wp-pagenavi a:hover{
	color: #fff;
	background: #ff6400;
	border-color: #ff6400;
	border: 1px solid #ff6400;
}

span.extend{
	display: none;
}

.contacts-block {
    padding: 60px 0;
    background: #ff6400;
}

.contacts-block .main-title h2 {
    color: #fff;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-around;
}

.contacts-wrapper hr {
    margin-bottom: 20px;
    border-top: 3px solid #fff;
}

.contacts-wrapper .l-side,
.contacts-wrapper .r-side {
    max-width: 432px;
    width: calc(50% - 10px);
}

.footer-bottom .social-links {
	display: none !important;
}

.contacts-item {
    margin-bottom: 20px;
}

.contacts-item a {
    display: flex;
    align-items: center;
    font-size: 23px;
}

.contacts-item .contact-content span:nth-child(1) {
    border-bottom: 2px solid transparent;
}

.contacts-item:hover .contact-content span:nth-child(1) {
    border-bottom: 2px solid #fff;
}

.contacts-item .contact-content span:nth-child(2) {
    display: block;
    font-size: 16px;
    line-height: 29px;
}

.contacts-item a .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    margin-right: 20px;
}

.contacts-item a .img-wrapper svg,
.contacts-item a .img-wrapper img{
    width: 23px;
    height: 23px;
    color: #020514;
}

.message-form {
    padding: 20px 30px;
    background-color: #fff;
    color: #020514;
    border-radius: 4px;
}

.message-form input[type=submit] {
    width: 100%;
    padding: 10px 30px;
    background-color: #ff6400;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.message-form input[type=submit]:active,
.message-form input[type=submit]:focus-within,
.message-form input[type=submit]:focus {
    background-color: #ff6400;
    border: none;
    outline: none
}

.message-form input[type=submit]:hover {
    background-color: #f7921e;
    border: none;
    outline: none
}

.form-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column-reverse;
}

.form-field .label {
    font-size: 18px;
    margin-bottom: 5px;
    transition: .3s;
}

.form-field input {
    width: 100%;
    padding: 5px 10px;
    line-height: 32px;
    border: 1px solid rgba(140, 140, 140, .4);
    transition: .3s;
}

.form-field textarea {
    width: 100%;
    resize: none;
    min-height: 200px;
    padding: 10px;
    border: 1px solid rgba(140, 140, 140, .4);
    transition: .3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff6400;
    box-shadow: 0px 0px 3px 0px #ff6400;
}

.form-field input:focus + .label,
.form-field textarea:focus + .label {
    color: #ff6400;
}



/* INDEX BLOCKS */


/* FOOTER */

/*
footer .container > ul {
    display: flex;
    justify-content: space-between;
}

footer .container > ul + ul {
    margin-top: 30px;
}

footer .container > ul + ul > li {
    width: 100%;
}

footer .container > ul + ul > li ul {
    columns: 5;
}

footer .container > ul > li {
    width: calc(33.33% - 20px);
}

footer .container > ul > li > a {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 7px;
    margin-bottom: 14px;
}

footer .container > ul > li ul {
    columns: 2;
}

footer .container > ul > li:nth-child(2) {
    width: calc(48.33% - 20px);
}

footer .container > ul > li:nth-child(3) {
    width: calc(15% - 20px);
}

footer .container > ul > li:nth-child(3) ul {
    width: calc;
    columns: 1;
}

footer .container > ul > li li {
    line-height: 30px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    transition: .3s;
}

footer .container > ul > li li:hover {
    color: rgba(255, 255, 255, 1);
}
*/

footer nav {
    padding: 60px 0 80px;
}

footer nav .container{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.widget-title{
	width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 7px;
    margin-bottom: 14px;
}

footer .foot.widget ul{
    columns: 2;
}

.foot.widget:nth-child(1),
.foot.widget:nth-child(2){
    width: calc(41.33% - 20px);
}

.foot.widget:nth-child(3) {
    width: calc(15% - 20px);
}

.foot.widget:nth-child(3) ul{
	columns: 1;
}

footer .foot.widget ul li {
    line-height: 30px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    transition: .3s;
}

footer .foot.widget ul li:hover {
    color: rgba(255, 255, 255, 1);
}










.footer-bottom {
    background-color: #020514;
	padding-top: 20px;
    padding-bottom: 40px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

.footer-bottom .social-links {
    padding-top: 43px;
    display: flex;
}

.footer-bottom .social-links a {
    position: relative;
}

.footer-bottom .social-links a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: calc(100% + 39px);
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
}

.footer-bottom .social-links a:hover::before {
    background-color: #ff6400;
}

.footer-bottom .social-links a + a {
    margin-left: 54px;
}

.footer-bottom .social-links a:hover svg {
    fill: #ff6400;

}

.footer-bottom .social-links svg {
    width: 54px;
    height: 54px;
    fill: #CC5200;
}

.footer-bottom .payway-type {
    padding-top: 25px;
    display: flex;
    align-items: center;
}

.footer-bottom .payway-type img {
    max-height: 40px;
    max-width: 100px;
    filter: contrast(30%) brightness(70%);
}

.footer-bottom .payway-type img:hover {
    filter: none;
}

.footer-bottom .payway-type img + img {
    margin-left: 20px;
}

.footer-bottom .r-side {
    max-width: 290px;
    width: 100%;
}

.footer-bottom .logo {
    width: 100%;
    margin: 30px 0 15px;
}

.footer-bottom .copyright {
    padding-left: 40px;
    font-size: 15px;
}

.footer-bottom .licenzes {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
    text-align: right;
}



/* FOOTER */

.modals-container {
    z-index: 10;
    padding: 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    display: none;
}

.modals-container.active {
    display: flex;
}

.modal-body {
    background-color: #fff;
    color: #020514;
    opacity: 0;
    position: relative;
    top: -40px;
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out, max-height 0s ease-in-out .3s ;
    border-radius: 4px;
    max-height: 0;
    overflow: auto;
    width: 100%;
}

.modal-body.active {
    opacity: 1;
    top: 0;
    max-height: 100%;
    transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out, max-height 0s ease-in-out 0s ;
}

.modal-body.langs {
    max-width: 800px;
}

.modal-body.message {
    max-width: 500px;
}

.modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 25px;
    font-weight: 500;
}

.modal-close {
    width: 30px;
    height: 30px;
    padding: 5px;
    color: rgba(0, 0, 0, .5);
    cursor: pointer;
    margin-left: auto;
}

.modal-content {
    padding: 0 25px 25px;
}

.warning-block {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    margin-bottom: 25px;
    font-size: 18px;
    background-color: rgba(255, 100, 0, .1);
}

.warning-block img {
    margin-right: 15px;
}

.langs-list {
    display: flex;
    grid-gap: 10px;
}

.langs-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.langs-item {
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 50%;
    cursor: pointer;
}

.langs-item:hover {
    background-color: #ff6400;
}

.langs-item.active {
    background-color: #ff6400;
    position: relative;
}

/* .langs-item.active::after {
    content: '';
    position: absolute;
    top: 13px;
    right: 15px;
    width: 15px;
    height: 8px;
    border-bottom: 2px solid #3e6579;
    border-left: 2px solid #3e6579;
    transform: rotate(-45deg);
} */

.langs-item .flag {
/*     width: 60px;
    height: 60px; 
     margin-right: 15px; */
}


.langs-item .flag img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    vertical-align: top;
}

.head-block {
    background-image: url(/wp-content/themes/Winnersofts/img/bc_bg.jpg);
    padding: 60px 0;
}

.head-block .container {
    padding-top: 48px;
}

.head-block .bread-crumbs {
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 18px;
}

.head-block .bread-crumbs .divider {
    color: rgba(255,255,255,.5);
    margin-left: 4px;
    margin-right: 4px;
}

.head-block .bread-crumbs a:hover {
    color: rgba(255,255,255,.6);
}

.head-block .title {
    padding-left: 12px;
    font-size: 43px;
    font-weight: 700;
    padding-top: 18px;
}

.page-anchors {
    color: #020514;
    padding: 60px 0;
    background: #fff;
}

.page-anchors.dark {
    color: #fff;
    background: #121727;
}

.page-anchors .title {
    text-align: center;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 40px;
}

.page-anchors ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    grid-gap: 150px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-anchors li {
    list-style: disc;
    margin-left: 23px;
    padding: 3px 0;
    font-size: 23px;
    color: #ff6400;
    margin-bottom: 5px;
}

.page-anchors li a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.page-anchors li:empty {
    list-style: none;
}

.commersial-block {
    padding: 60px 0;
}

.commersial-block.dark {
    background-color: #3b4157;
}

.commersial-block.dark .text {
    color: #fff;
}

.commersial-block .text {
    font-size: 25px;
    line-height: 1.5;
    color: #020514;
    margin-bottom: 60px;
}

.commersial-block .text:last-child {
    margin-bottom: 0;
}

.text-block,
.text-block-default{
    color: #020514;
    background-color: #fff;
    padding: 60px 0;
}

.text-block.betting-head-page {
    background-image: url(/wp-content/themes/Winnersofts/img/new-pages-img/betting-bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
}

.text-block.dark {
    color: #fff;
    background-color: #121727;
}

.text-block .title,
.text-block h3,
.text-block-default h3{
    font-size: 23px;
    font-weight: 600;
}

.text-block .title.mini{
    font-size: 18px;
}

.text-block h4,
.text-block-default h4{
    font-size: 18px;
	font-weight: 600;
}

.text-block h2{
    font-size: 43px;
    font-weight: 800;
    margin-bottom: 60px;
}

.text-block-default h2{
    font-size: 43px;
    font-weight: 800;
    margin-bottom: 20px;
}

.text-block.betting-head-page h2{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-block h2 a {
    text-decoration: underline;
    color: #f7921e;
}

.text-block h2 a:hover {
    text-decoration: none;
}

.text-block .main-title h2 {
    margin-bottom: 0px;
}

.text-block .text,
.text-block p{
    margin: 20px 0 60px;
    font-size: 18px;
}

.text-block-default p{
	margin: 22px 0 22px;
    font-size: 18px;
}

.text-block.betting-head-page .text {
    font-size: 21px;
    margin-bottom: 15px;
    line-height: 40px;
}

.text-block .text.mb18 {
    margin-bottom: 18px;
}

.text-block .text.m0 {
    margin: 0;
}

.text-block .text.mb20 {
    margin-bottom: 20px;
}

.text-block .text.m0 + h2 {
    margin-top: 60px;
}

.text-block ul:not(.list-column):not(.list-columns) {
    padding-left: 40px;
    list-style: disc;
}

.text-block ul:not(.list-column) li {
    line-height: 30px;
    font-weight: 500;
}

.text-block ul.text {
    padding-left: 40px;
    list-style: disc;
    line-height: 40px;
}

.text-block.betting-head-page ul {
    font-size: 21px;
    margin-bottom: 20px;
}

.text-block.betting-head-page ul li {
    line-height: 40px;
}

.text-block .text.centered {
    text-align: center;
}

.text-block .text.large p {
    font-size: 25px;
    line-height: 40px;
    margin: 0;
}

.text-block .text:first-child {
    margin-top: 0;
}

.text-block .text:last-child {
    margin-bottom: 0;
}

.text-block h2.title {
    font-size: 22px;
    margin: 18px 0;
    font-weight: 600;
}

.list-columns ul,
.block-ul-list-column.list-columns.grid.custom ul{
    columns: 2;
    font-size: 18px;
}

.block-ul-list-column.list-columns.grid.custom{
	display: block;
}

.block-ul-list-column.list-columns.grid.custom h2{
	width: 100%;
}

.block-ul-list-column.list-columns.grid.custom ul{
	width: 100%;
}

.list-columns.grid ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 100px;
}

.list-columns.grid.custom ul li::before {
    background-image: url(/wp-content/themes/Winnersofts/img/new-pages-img/diamond.svg);
    background-size: cover;
    background-color: inherit;
    height: 40px;
    width: 40px;
    top: -3px;
    left: -5px
}

.list-columns.grid.custom.poker ul li::before {
    background-image: url(/wp-content/themes/Winnersofts/img/new-pages-img/poker.svg);
}

ul.list-columns.grid li {
    padding-right: 0;
}

.list-column {
    font-size: 18px;
}

.list-column + h2 {
    margin-top: 60px;
}

.text-block.block-ul-list-column h2{
	margin: 60px 0 60px;
}

.text-block.block-ul-list-column p{
	margin: 20px 0 20px;
}

img.alignright{
	display: block;
	float: right;
	padding: 0;
	margin: 22px 0 22px 30px;
}

img.alignleft{
	display: block;
	float: left;
	padding: 0;
	margin: 22px 30px 22px 0;
}

img.aligncenter{
	clear: both;
	display: block;
	margin: 30px auto;
}

img.alignnone{
	clear: both;
	display: block;
	margin: 30px 0;
}

.block-ul-list-column ul{
	list-style: none!important;
}

.list-columns li,
.list-column li,
.block-ul-list-column ul li{
    padding-left: 43px;
    position: relative;
    margin-bottom: 11px;
    padding-right: 70px;
}

.block-ul-list-column ul li{
	font-family: inherit;
	font-size: 17px;
	font-weight: 300;
}

.list-columns.mini li,
.list-column.mini li {
    padding-left: 20px;
}

.list-columns li::before,
.list-column li::before,
.block-ul-list-column ul li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 29px;
    height: 4px;
    background-color: #ff6400;
}

.list-columns.mini li::before,
.list-column.mini li::before {
    top: 10px;
    width: 14px;
    height: 2px;
}

.colored .list-columns.mini li::before,
.colored .list-column.mini li::before {
    top: 19px;
}

.colored {
    background-color: #ffe7cc;
    font-size: 25px;
    line-height: 40px;
    padding: 60px;
}

.colored.mini {
    font-size: 18px;
    line-height: inherit;
}

.colored.with-img .container {
    display: flex;
}

.colored.with-img img {
    max-width: 310px;
    margin-right: 30px;
    object-fit: contain;
}

.text-block .colored {
    margin-bottom: 60px;
}

.text-block.dark .colored {
    background-color: #3b4157;
}

.text-block .colored:last-child,
.colored:last-child {
    margin-bottom: 0;
}

.colored.var2 {
    background-color: #121727;
    color: #fff;
}

.colored.var2 .main-right-btn .title {
    color: #fff;
}

.colored.var3 {
    background-color: #51576f;
    color: #fff;
}

.colored.var3 .main-right-btn .title {
    color: #fff;
}

.colored.var4 {
    background-color: #fff0e6;
}

.colored.var4.dark {
    background-color: #020514;
}

.colored.var4 .row:nth-child(even) {
    background: #ffcfaf;
}

.colored.var4.dark .row:nth-child(even) {
    background-color: #121727;
}

.colored.var5 {
    background-color: #ff6400;
}

.image-l-r {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 120px);
    margin: 18px auto 60px;
}

.image-l-r:nth-child(odd) {
    flex-direction: row-reverse;
}

.image-l-r img {
    max-height: 200px;
    min-width: 340px;
    object-fit: contain;
}

.image-l-r h2.title {
    margin: 0px 7px 18px;
}

.image-l-r .desc-text {
    font-size: 18px;
    line-height: 27px;
}

.image-l-r ul {
    padding-left: 23px;
    list-style-type: disc;
    margin: 18px 0;
}

.vertical-list.text-block {
    background-color: #020514;
    padding: 60px 0;
    color: #fff;
}

.vertical-list.text-block h2 {
    color: #fff;
}

.vertical-list-wrapper {
    position: relative;
    counter-reset: section;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 70px;
    grid-template-areas:
        "content1 ."
        ". content2"
        "content3 ."
        ". content4"
        "content5 ."
        ". content6"
        "content7 ."
        ". content8"
        "content9 ."
        ". content10";
}

.vertical-list-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 105%;
    background-image: linear-gradient(to bottom, rgba(255,231,204,.6) 50%, #fff0 20%);
    background-position: top;
    background-size: 2px 20px;
    background-repeat: repeat-y;
}

.vertical-list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.vertical-list-item:nth-child(1) {
    grid-area: content1;
}

.vertical-list-item:nth-child(2) {
    grid-area: content2;
}

.vertical-list-item:nth-child(3) {
    grid-area: content3;
}

.vertical-list-item:nth-child(4) {
    grid-area: content4;
}

.vertical-list-item:nth-child(5) {
    grid-area: content5;
}

.vertical-list-item:nth-child(6) {
    grid-area: content6;
}

.vertical-list-item:nth-child(7) {
    grid-area: content7;
}

.vertical-list-item:nth-child(8) {
    grid-area: content8;
}

.vertical-list-item:nth-child(9) {
    grid-area: content9;
}

.vertical-list-item:nth-child(10) {
    grid-area: content10;
}

.vertical-list-item::before {
    content: "";
    line-height: 20px;
    color: rgba(255,231,204,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255,231,204,.6);
    background: #020514;
    border-radius: 50%;
    position: absolute;
    counter-increment: section;
    content: counter(section);
    right: -52px;
    top: calc(50% - 17px);
}

.vertical-list-item:nth-child(even){
    text-align: left;
    flex-direction: row-reverse;
}

.vertical-list-item:nth-child(even)::before{
    right: inherit;
    left: -52px;
}

.vertical-list-item img {
    width: 50px;
    margin-left: 15px;
}

.vertical-list-item:nth-child(even) img {
    margin-right: 15px;
    margin-left: 0;
}

.vertical-list-text {
    font-size: 18px;
}

.rows .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 16px;
    padding: 5px 18px;
}

.get-feedback {
    background-color: #51576f;
    overflow: hidden;
}

.get-feedback .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-feedback .arrow {
    max-width: 330px;
    width: 100%;
    background-color: #020514;
    padding: 40px 30px 40px 0;
    margin-right: 50px;
    position: relative;
}

.get-feedback .arrow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 30px;
    border-top: 76px solid transparent;
    border-bottom: 76px solid transparent;
    border-left: 40px solid #020514;
}

.get-feedback .arrow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: calc(100vw);
    background-color: #020514;
}

.get-feedback .text {
    font-size: 18px;
}

.other-products {
    padding: 60px 0;
}

.other-products .container {
    display: flex;
    justify-content: space-between;
}

.other-products-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.solution-card-wrapper {
    width: calc((100% - 60px) / 4);
}

.solution-card-wrapper .solution-card {
    width: 100%;
}

.solution-card-wrapper .text {
    color: #020514;
    font-size: 18px;
    font-weight: 500;
}

.solution-card-wrapper .additional {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.solution-card-wrapper .additional img {
    max-width: 29px;
    max-height: 29px;
}

.solution-card-wrapper .additional img + img {
    margin-left: 15px;
}

.solutions-block {
    padding: 60px 0;
}

.solution-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.solution-card {
    width: calc((100% - 60px) / 4);
    background-color: #ff6400;
    background-repeat: no-repeat;
    background-position: top -75px right -75px;
    background-size: 200px;
    padding: 30px 25px 15px;
    transition: background-color .3s;
	display: inline-block;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    background-color: #CC5200;
}

.solution-card  .title {
    font-size: 29px;
    font-weight: 700;
    max-width: 160px;
    margin-bottom: 30px;
    color: #fff;
}

.solution-card .text {
    margin-bottom: 20px;
    opacity: .85;
    transition: .3s;
    margin-bottom: auto;
}

.solution-card:hover .text {
    opacity: 1;
}

.solution-card .learn-more {
    display: flex;
    align-items: center;
    opacity: .85;
    transition: .3s;
    color: #fff;
}

.solution-card:hover .learn-more {
    opacity: 1;
}

.solution-card .learn-more svg {
    max-height: 30px;
    margin-left: 15px;
    opacity: .8;
    transition: .3s;
}

.solution-card:hover .learn-more svg {
    opacity: 1;
    margin-left: 20px;
}

.columns {
    margin: 18px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.columns.mb20 {
    margin-bottom: 20px;
}

.columns.two .columns-item {
    width: 48%;
}

.columns.two .columns-item:nth-child(n + 3) {
    margin-top: 60px;
}

.columns.two.var2  .columns-item {
    width: calc(50% - 120px);
}

.columns.two.var2  h2.title {
    margin-top: 0;
}

.columns.sports .columns-item  h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    display: block;
}

.columns.sports  h2 img {
    width: 100%;
    max-width: 358px;
    max-height: 358px;
    margin-right: 0;
}

.columns.sports  h2 .line {
    background: #ff6400;
    max-width: 222px;
    margin: 20px auto;
    height: 2px;
}

.columns.sports .columns-item li strong{
    color: #ff6400;
    font-weight: 600;
}

.columns.sports .columns-item li::marker {
    color: #ff6400;
}

.columns.three {
    margin-bottom: 20px;
}

.columns.three  .columns-item {
    width: calc(100% / 3);
    text-align: center;
    margin-bottom: 40px;
}

.columns.five  .columns-item {
    width: calc(100% / 5);
    text-align: center;
    margin-bottom: 40px;
}

.columns.five .title {
    font-size: 43px;
    color: #ff6400;
	min-height: 57px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.columns .columns-item {
    padding: 0 20px;
    line-height: normal;
}

.columns .columns-item h2 {
    display: flex;
    align-items: center;
}

.columns .columns-item img {
    max-width: 57px;
    max-height: 57px;
}

.columns-item h2 img {
    max-height: 57px;
    max-width: 57px;
    margin-right: 15px;
}

.columns.three  .title {
    font-size: 43px;
    color: #ff6400;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 68px;
}

.columns.three .title img {
    height: 57px;
}

.games-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.games-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.game-item {
    width: calc(100% / 5);
    padding: 0 7px;
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.game-item:hover img {
    transform: scale(1.1);
}

.game-item img {
    border-radius: 6px;
    width: 100%;
    transition: .3s;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.pagination .item {
    padding: 7px 10px;
    border-top: 2px solid rgba(0,0,0,0);
    border-bottom: 2px solid rgba(0,0,0,0);
    line-height: 1;
}

.pagination .item.active {
    background-color: #f7921e;
}

.pagination .item:hover {
    border-bottom: 2px solid #f7921e;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.categories .item {
    background-color: #ffe7cc;
    margin-right: 20px;
    padding: 7px 30px;
    color: #020514;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
}

.categories .item.active {
    background-color: #f7921e;
}

.main-table{
	width: 100%;
}

.main-table table{
    text-align: left;
    border-collapse: collapse;
    font-weight: 500;
    margin: 60px 0;
}

.main-table tr:nth-child(1) th {
    font-weight: 600;
    background: none;
    color: #8c8c8c;
}

.main-table th {
    font-weight: 500;
}

.main-table table td,
.main-table table th {
    width: 20%;
    font-size: 15px;
    padding: 15px;
    vertical-align: middle;
}

.main-table table tr th {
    background-color: #f7921e;
    color: #fff;
}

.main-table tr:nth-child(even) td {
    background-color: #fff0e6;
}

.main-table tr:nth-child(even) th {
    background-color: #ff6400;
}

.main-table img {
    max-height: 32px;
}

.sides-image {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.sides-image .side {
    width: 48%;
    padding-right: 60px;
}

.sides-image .side .main-right-btn .button {
    width: auto;
}

.sides-image .side .list-column li {
    padding-right: 0;
}

.sides-image .side > img {
    width: 100%;
}

.sides-image .side > img.fit {
    height: 100%;
    object-fit: cover;
}

.titled-sides .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.colored.var4 .titled-sides .row:nth-child(even) {
    background: inherit;
}

.titled-sides .row > div {
    width: 48%;
    padding-right: 43px;
}

.titled-sides .title {
    font-size: 43px;
    color: #ff6400;
    font-weight: 800;
    line-height: 1.3;
}

.titled-sides .text {
    font-size: 18px;
    margin-top: 0;
    line-height: 1.4;
    font-weight: 600;
}

.text-block.betting-features {
    background-image: url(/wp-content/themes/Winnersofts/img/new-pages-img/betting-bg3.jpg);
    background-position: top center;
    background-size: 100% auto;
    color: #fff;
}

.text-block.betting-features .flex-blocks {
    background: inherit;
    text-align: center;
}

.text-block.betting-features .img-item {
    padding: 0 0px;
    width: 25%;
}

.text-block.betting-features .img-item .img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    padding: 20px;
    background-color: #51576f;
    margin: 0 auto;
}

.text-block.betting-features .img-item .img img {
    height: 100%;
}

.text-block.betting-features .img-item .text {
    font-size: 22px;
}

.flex-blocks {
    padding: 60px 0;
}

.text-block .flex-blocks {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    color: #fff;
    background-color: #51576f;
    padding: 10px 0;
}

.flex-blocks .container {
    display: flex;
    justify-content: space-around;
}

.text-block .flex-blocks .item {
    background: inherit;
}

.text-block .flex-blocks.small .item {
    max-width: inherit;
}

.text-block .flex-blocks .line {
    min-width: 1px;
    width: 1px;
    height: auto;
    margin: 0;
    background-color: #fff;
}

.text-block .flex-blocks .line:last-child{
	display: none;
}

.text-block .flex-blocks .title {
    font-size: 60px;
}

.text-block .flex-blocks .text {
    font-size: 24px;
    font-weight: 600;
}

.text-block .flex-blocks.small .text {
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
}

.text-block .flex-blocks.small .text span {
    vertical-align: middle;
    font-size: 22px;
    font-weight: 500;
}

.flex-blocks .item {
    max-width: 200px;
    padding: 8px;
    background: linear-gradient(-45deg, #CC5200 0%, #f7931e 35%, #CC5200 72%, #f7921e 96%);
}

.flex-blocks .item.w50 {
    max-width: calc(50% - 200px);
    padding: 15px 20px 20px;
}

.flex-blocks .item.centered {
    text-align: center;
}

.flex-blocks .item hr {
    margin: 8px 0;
    background-color: #fff;
}

.flex-blocks .item p {
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}

.flex-blocks .item p span {
    font-size: 36px;
    vertical-align: middle;
}

.flex-blocks .title {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flex-blocks .text {
    font-size: 16px;
    line-height: 1.3;
}

.betting-bg {
    background-image: url(/wp-content/themes/Winnersofts/img/new-pages-img/betting-bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.img-block {
    margin-bottom: 20px;
}

.img-block.single img {
    max-width: 504px;
    width: 100%;
}

.img-block.centered {
    text-align: center;
}

.calendar-btn {
    animation: 6s ease-in infinite  pulse;
    padding: 10px 30px 10px 20px;
    min-width: 250px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    77% {
        transform: scale(1);
    }
    
    78% {
       transform: scale(1.05); 
    }
    88% {
        transform: scale(1);
    }
    89% {
       transform: scale(1); 
    }
    90% {
       transform: scale(1.05); 
    }
    100% {
        transform: scale(1);
    }
}


/*
:root {
    --dark: #020514;
    --light-gray: #8c8c8c;
    --light-gray-rgb: 140, 140, 140, ;
    --gray: #51576f;
    --dark-gray: #121727;
    --dark-gray-hover: #293047;
    --light-orange: #f7921e;
    --orange: #ff6400;
    --dark-orange: #CC5200;
    --dark-orange-rgb: 204, 82, 0, ;
    --orange-rgb: 255, 100, 0, ;
}
*/

.mobile-menu {
    display: none;
}

.nav-block__bottom nav .nav-header {
    display: none;
}

.nav-block__bottom nav .lang.mobile {
    display: none;
}

#wpadminbar a img {
	max-width: 20px;
	max-height: 20px;
}


@media screen and (max-width: 1620px) {
    .header-contact {
        font-size: 14px;
    }
    .nav-block__top {
        padding-left: 12px;
    }
    .nav-block__bottom {
        padding: 32px;
    }
    .features > img:nth-child(1),
    .features > img:nth-child(2) {
        display: none;
    }
}


@media screen and (max-width: 1440px) {
    .welcome-block {
        background-position: center;
    }
    .welcome-block .text img {
        max-width: 300px;
        bottom: -120px;
        left: calc(100% - 300px);
    }
    .header-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 10px 20px;
    }
    .header-contact {
        font-size: 11px;
        margin: 10px 20px 10px 0;
    }
    .header-contact + .header-contact {
        margin-left: 0;
    }
    .logo-block {
        min-width: 150px;
        width: auto;
        text-align: center;
    }
    .logo-block svg,
    .logo-block img {
        max-width: 80%;
        margin: 0 auto;
    }
    .nav-block__top {
        align-items: stretch;
    }
    .nav-block__bottom {
        padding: 10px 32px;
    }
    .nav-block__bottom nav ul {
        flex-wrap: wrap;
    }
    .nav-block__bottom nav ul > li {
        margin-right: 20px;
    }
    .nav-block__bottom nav ul > li + li {
        margin-left: 0;
    }
    
}

@media screen and (max-width: 991px) {
    .game-item {
        width: calc(100% / 4);
        font-size: 16px;
    }
    .game-item .game-title {
        line-height: 18px;
    }
    .flex-blocks .item.w50 {
        max-width: calc(50% - 100px);
    }
    .columns.five .columns-item {
        width: calc(100% / 2);
    }
    .columns.five .columns-item:nth-child(3) {
        width: calc(100%);
    }
    .sides-image .side {
        width: 100%;
        padding-right: 0;
    }
    .sides-image .side + .side {
        margin-top: 30px;
    }
    .sides-image {
        flex-wrap: wrap;
    }
    .image-l-r {
        width: 100%;
        margin: 20px auto;
    }
    .provider-desc-block .img-block img {
        width: 90%;
    }
    .provider-desc.var2 {
        pointer-events: none;
    }
    .providers-table .provider-desc {
        width: calc(100% / 4);
    }
    .solution-card-wrapper {
        width: calc((100% - 20px) / 2);
        margin-bottom: 20px;
    }
    .other-products-container {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .other-products .container {
        flex-wrap: wrap;
    }
    .colored.with-img img {
        max-width: 210px;
    }
    .colored {
        font-size: 20px;
    }
    .head-block .title {
        font-size: 30px;
    }
    .page-anchors li {
        font-size: 18px;
    }
    .main-table tbody tr {
        position: relative;
    }
    .main-table tbody {
        width: 100%;
        overflow: auto
    }
    .main-table table {
        width: 100%;
        display: flex;
    }
    .main-table tbody tr th:nth-child(1) {
        position: sticky;
        left: 0;
        min-width: 180px;
    }
    .footer-bottom .payway-type {
        justify-content: space-around;
    }
    .footer-bottom .social-links a + a {
        margin-left: 0;
    }
    .footer-bottom .social-links {
        width: 100%;
        justify-content: space-between;
    }
    .footer-bottom .payway-type img + img {
        margin-left: 0;
    }
    .footer-bottom .payway-type img {
        margin: 10px;
    }
    .footer-bottom .l-side {
        width: 100%;
    }
    .footer-bottom .r-side {
        margin-top: 20px;
        margin-left: auto;
    }
    .footer-bottom .container {
        flex-wrap: wrap;
    }
    .foot.widget:nth-child(1),
    .foot.widget:nth-child(2),
    .foot.widget:nth-child(3) {
        width: auto;
    }
    .foot.widget {
        margin-bottom: 20px;
    }
    footer nav {
        padding: 40px 0;
    }
    footer nav .container {
        flex-wrap: wrap;
    }
    .preview-slider .swiper-slide {
        padding: 0 10px;
    }
    .licenses__block {
        grid-template-columns: repeat(3, 1fr);
    }
    .features__item .num {
        font-size: 72px;
    }
    .nav-block__top {
        padding-left: 0;
    }
    .header-contacts {
        padding: 10px;
    }
    .nav-block__bottom {
        padding: 10px;
    }
    .welcome-block .title {
        font-size: 23px;
    }
    .welcome-block .text {
        font-size: 18px;
    }
    .main-title {
        flex-wrap: wrap;
    }
    .main-title h2 {
        width: 100%;
        font-size: 30px;
    }
    .main-title .desc {
        width: 100%;
        margin-top: 20px;
        font-size: 16px;
        text-align: left;
    }
    .solution-cards {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .solution-card {
        width: calc((100% - 20px) / 2);
        margin-bottom: 20px;
    }
    .products-item {
        border-bottom: 1px solid rgba(255, 255, 255, .2);
    }
    .products-item .wrapper {
        position: static;
        border-bottom: none;
    }
    .products-item .text {
        display: block;
    }
    .games-swiper .swiper-slide .desc {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .get-feedback .container {
        flex-direction: column;
    }
    .get-feedback .arrow {
        max-width: 100%;
        text-align: center;
        margin-right: 0;
        padding: 20px 0;
    }
    .get-feedback .arrow::after {
        border: 40px solid #020514;
        left: calc(100% - 10px);
    }
    .get-feedback .text {
        width: 100%;
        margin: 30px 0;
    }
    .get-feedback .text br {
        display: none;
    }
    .get-feedback  {
        padding-bottom: 30px;
    }
    .calendar-btn {
        min-width: 450px;
    }
}

@media screen and (max-width: 768px) {
    .swiper-thumbs .swiper-slide:first-child .title {
        font-size: 24px;
    }
    .titled-sides .row .text {
        margin-top: 20px;
    }
    .titled-sides .row > div {
        width: 100%;
        padding-right: 0;
    }
    .titled-sides .row {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .page-anchors {
        padding: 40px 0;
    }
    .text-block .flex-blocks .title {
        font-size: 40px;
    }
    .text-block.betting-features .img-item .text {
        font-size: 18px;
    }
    .text-block.betting-features .flex-blocks {
        flex-wrap: wrap;
    }
    .text-block.betting-features .img-item + .img-item {
        margin-top: 20px;
    }
    .text-block.betting-features .img-item {
        width: 50%;
    }
    .text-block .flex-blocks .text {
        font-size: 18px;
        font-weight: 600;
    }
    .flex-blocks .item.w50 {
        max-width: calc(50% - 20px);
    }
    .columns {
        margin: 20px 0;
    }
    .columns.two.var2 .columns-item {
        width: calc(50% - 10px);
        margin-bottom: 40px;
    }
    .columns.two.var2 .columns-item + .columns-item {
        margin-top: 0;
    }
    .columns.three .columns-item {
        width: calc(100% / 2);
    }
    .columns.two .columns-item + .columns-item {
        margin-top: 30px;
    }
    .columns.two .columns-item {
        width: 100%;
    }
    .columns .columns-item img {
        max-width: 45px;
        max-height: 45px;
    }
    .columns .columns-item h2 {
        font-size: 30px;
    }
    .vertical-list-item img {
        margin-left: 0;
        margin-right: 15px;
    }
    .vertical-list-item:nth-child(even)::before,
    .vertical-list-item::before {
        right: inherit;
        left: 0;
    }
    .vertical-list-item {
        flex-direction: row-reverse;
        text-align: left;
        margin-bottom: 20px;
        padding-left: 45px;
    }
    .vertical-list-wrapper::before {
        left: 15px;
    }
    .vertical-list-wrapper {
        display: block;
    }
    .image-l-r img {
        margin-bottom: 20px;
    }
    .image-l-r,
    .image-l-r:nth-child(odd) {
        flex-direction: column;
    }
    .list-columns li,
    .list-column li,
    .block-ul-list-column ul li {
        padding-right: 0;
    }
    .text-block ul:not(.list-column):not(.list-columns) {
        padding-left: 20px;
    }
    .text-block,
    .text-block-default {
        padding: 40px 0;
    }
    .commersial-block {
        padding: 40px 0;
    }
    .text-block.block-ul-list-column h2 {
        margin: 40px 0;
        font-size: 30px;
    }
    .colored.with-img .container {
        flex-direction: column;
    }
    .colored.with-img img {
        margin: 0 auto 30px;
    }
    .colored {
        padding: 30px;
    }
    .text-block h2 {
        margin-bottom: 30px;
        font-size: 30px;
    }
    .text-block .text,
    .text-block p {
        margin: 10px 0 40px;
    }
    .contacts-item .contact-content span:nth-child(1) {
        font-size: 17px;
    }
    .contacts-item .contact-content span:nth-child(2) {
        font-size: 12px;
    }
    .contacts-item {
        margin-bottom: 10px;
    }
    .contacts-item a .img-wrapper svg,
    .contacts-item a .img-wrapper img {
        width: 18px;
        height: 18px;
    }
    .contacts-item a .img-wrapper {
        width: 34px;
        height: 34px;
    }
    .contacts-block {
        padding: 40px 0;
    }
    .contacts-wrapper {
        flex-wrap: wrap;
    }
    .contacts-wrapper .l-side {
        margin-bottom: 20px;
    }
    .contacts-wrapper .l-side,
    .contacts-wrapper .r-side {
        width: 100%;
    }
	.last-news { 
			display: none;
	}
    .last-news .container {
        grid-template-columns: 1fr 1fr;
    }
    .last-news__title .title {
        font-size: 30px;
    }
    .last-news {
        padding: 40px 0;
    }
    .preview-slider {
        padding: 40px 0;
    }
    .licenses__item .img-block {
        margin-bottom: 0;
        min-height: 68px;
    }
    .licenses__block {
        grid-template-columns: repeat(2, 1fr);
    }
    .licenses__item:hover {
        transform: scale(1);
        width: 100%;
        left: 0;
        border: none;
        position: static;
    }
    .licenses {
        padding: 40px 0;
    }
    .clients {
        padding: 40px 0;
    }
    .features {
        padding: 40px 0;
    }
    .features__item .num {
        font-size: 60px;
    }
    .features__item .num span {
        font-size: 35px;
    }
    .features__item {
        margin-bottom: 40px;
    }
    .providers-desc {
        padding: 40px 0;
    }
    .swiper-thumbs .swiper-slide {
        width: calc(100% - 60px);
    }
    .swiper-thumbs .swiper-slide.swiper-slide-thumb-active:first-child + .swiper-slide {
        width: 100%;
    }
    .swiper-thumbs .swiper-slide.swiper-slide-thumb-active:not(:first-child) {
        width: 100%;
    }
    .provider-desc {
        pointer-events: none;
    }
    .products-item:hover .text {
        display: none;
    }
    .products-item .text {
        display: none;
    }
    .products-item .title {
        font-size: 18px;
    }
    .products-item img {
        width: 50px;
    }
    .products-item .wrapper {
        min-height: auto;
        padding: 12px 0;
    }
    .products-item {
        width: 100%;
        min-height: auto;
    }
    .products-items {
        margin-bottom: 40px;
    }
    .products-block {
        padding: 40px 0;
    }
    .main-right-btn .button {
        margin-right: -15px;
        width: calc(80% + 5px);
        padding: 10px 20px;
    }
    .solution-card {
        width: 100%;
    }
    .main-title {
        margin-bottom: 40px;
    }
    .solutions-block {
        padding: 40px 0;
    }
    .welcome-block .text p {
        width: 100%;
    }
    .welcome-block .text img {
        display: none;
    }
    .welcome-block {
        min-height: auto;
        padding: 55px 0 40px;
    }
    .mobile-menu {
        display: block;
    }
    .nav-block {
        max-width: 64px;
    }
    .nav-block__bottom {
        text-align: center;
    }
    .nav-block__bottom .mobile-menu {
        width: 42px;
        height: 42px;
        margin: 0 auto;
    }
    .nav-block__bottom nav {
        position: fixed;
        top: 30px;
        left: 30px;
        right: 30px;
        background-color: #fff;
        display: none;
        padding: 25px;
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow: auto;
    }
    .nav-block__bottom nav.active {
        display: block;
    }
    .nav-block__bottom nav.active + .mobile-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .6);
        backdrop-filter: blur(10px);
        z-index: 10;
    }
    .nav-block__bottom nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-block__bottom nav ul > li {
        width: 100%;
        border-bottom: 2px solid rgba(0, 0, 0, .1);
        padding: 10px;
    }
    .nav-block__bottom nav ul > li li {
        border-bottom: none;
    }
    .nav-block__bottom nav ul > li a:hover {
        color: #020514;
    }
    .nav-block__bottom nav ul > li ul {
        position: static;
        opacity: 1;
        pointer-events: all;
        background: #fff;
    }
    
    .nav-block__bottom nav .nav-header {
        display: flex;
        justify-content: flex-end;
    }

    .nav-block__bottom nav .nav-header svg {
        width: 20px;
        height: 20px;
        color: rgba(0, 0, 0, .5);
    }

    .nav-block__bottom nav .lang.mobile {
        display: flex;
        align-items: center;
        color: #020514;
        font-size: 16px;
        padding: 10px 0;
    }

    .nav-block__bottom nav .lang.mobile .flag {
        width: 21px;
        height: 21px;
        margin-right: 15px;
    }

    .nav-block__bottom nav .lang.mobile .flag img {
        width: 21px;
        height: 21px;
        object-fit: cover;
        background-position: center;
        border-radius: 50%;
    }
	header .lang img {
		width: 34px;
		height: 34px;
	}
    
    header {
        position: relative;
    }
    .header-contacts {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #51576f;
        flex-direction: column;
        align-items: center;
    }
    .header-contact {
        margin-right: 0;
    }
    .logo-block {
        max-width: 100%;
        width: calc(100% - 80px);
    }
    .nav-block__top .lang {
        font-size: 0px;
    }
    .nav-block__top .lang img {
        margin-right: 0;
    }
}

@media screen and (max-width: 560px) {
	.modals-container {
		padding: 0;
	}
    .categories .item {
        font-size: 16px;
        padding: 7px 15px;
        line-height: 18px;
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .game-item {
        width: calc(100% / 2);
        font-size: 16px;
    }
    .list-columns.grid.custom ul {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        padding-left: 0;
    }
    .providers-table.in-row-4 .provider-desc {
        width: calc(100% / 2);
    }
    .flex-blocks .item.w50 {
        max-width: 100%;
        width: 100%;
    }
    .flex-blocks .item.w50 + .item.w50 {
        margin-top: 20px;
    }
    .flex-blocks .container {
        flex-wrap: wrap;
    }
    .text-block.betting-features .img-item {
        width: 100%;
    }
    .text-block .flex-blocks .line {
        width: 80%;
        height: 1px;
        margin: 15px 0;
    }
    .text-block .flex-blocks .item {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    .text-block .flex-blocks {
        flex-direction: column;
        align-items: center;
    }
    .columns.five .columns-item {
        width: 100%;
    }
    .providers-table .provider-desc {
        width: calc(100% / 2);
    }
    .columns.two.var2 .columns-item {
        width: 100%;
        padding: 0;
    }
    .columns.three .columns-item {
        width: 100%;
    }
    .rows .row {
        font-size: 12px;
        line-height: 16px;
    }
    .rows .row .l-side {
        padding-right: 15px;
        max-width: 200px;
        width: 100%;
    }
    .rows .row .r-side {
        width: 50%;
    }
    img.alignright {
        width: 100%;
        margin: 0 auto;
        float: none;
    }
    .solution-card-wrapper {
        width: 100%;
    }
    .colored .container {
        padding: 0;
    }
    .colored {
        padding: 30px 15px;
    }
    .page-anchors ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .calendar-btn {
        min-width: auto;
        width: 100%;
    }
    .footer-bottom .r-side {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
    .footer-bottom .copyright {
        padding-left: 0;
    }
    .features__item {
        width: 45%;
    }
    .features__item .num span {
        font-size: 25px;
    }
    .features__item .num {
        font-size: 45px;
    }
    .nav-block__bottom nav {
        left: 10px;
        right: 10px;
    }
    .foot.widget:nth-child(1),
    .foot.widget:nth-child(2),
    .foot.widget:nth-child(3) {
        width: 100%;
    }
    .footer-bottom .social-links svg {
        width: 45px;
        height: 45px;
    }
    .footer-bottom .payway-type {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 400px) {
    .last-news__title .title {
        margin-bottom: 20px;
    }
    .last-news__title a {
        font-size: 16px;
    }
    .licenses__block {
        grid-template-columns: repeat(2, 1fr);
    }
    .licenses__item .img-block img {
        width: 100%;
        object-fit: contain;
    }
    .licenses__item-wrapper {
        position: static;
        display: block;
    }
    .last-news .container {
        grid-template-columns: 1fr;
    }
    .message-form {
        padding: 15px;
    }
    footer .foot.widget ul {
        columns: 1;
    }
}



























