@-webkit-keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}
@keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    to {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}
@-webkit-keyframes _entrance {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes _entrance {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes _entrance2 {
    0% {
        opacity: 0;
        -webkit-transform: translate(-30%, 0);
        transform: translate(-30%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@keyframes _entrance2 {
    0% {
        opacity: 0;
        -webkit-transform: translate(-30%, 0);
        transform: translate(-30%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes _exit {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}
@keyframes _exit {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}
@-webkit-keyframes _fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes _fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes _fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes _fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes _attention {
    0% {
        background-color: orange;
    }
    to {
        background-color: red;
    }
}
@keyframes _attention {
    0% {
        background-color: orange;
    }
    to {
        background-color: red;
    }
}
@-webkit-keyframes _anim_down {
    0% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@keyframes _anim_down {
    0% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes _hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    99% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        display: none;
        overflow: hidden;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
    }
}
@keyframes _hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    99% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        display: none;
        overflow: hidden;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
    }
}
.welcome {
    width: 95%;
    max-width: 600px;
    margin: 1em auto;
    position: relative;
    overflow: hidden;
}
.welcome .mixit {
    font-family: "Lovelo", sans-serif;
    font-weight: 700;
}
.welcome:not(.margin-0) {
    margin: 1em auto;
}
.welcome img {
    display: block;
    width: 100%;
    border-radius: 15px 0 15px 0;
}
.welcome .content {
    position: absolute;
    top: 65%;
    left: 5%;
    width: 100%;
    text-align: left;
}
.welcome .content .button {
    font-size: 1.4em;
    margin: 1em auto 0 auto;
    padding: 0 14px;
    text-transform: uppercase;
}
.welcome .typo {
    border-radius: initial;
    width: 65%;
    margin: 0.5em auto;
}
.welcome p {
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
    text-align: center;
    font-size: 1.25em;
    margin: 0 auto;
    width: 90%;
}
@media screen and (min-width: 568px) {
    .welcome {
        max-width: 1750px;
    }
    .welcome .content {
        text-align: left;
        width: 55%;
        top: 84%;
        left: 4%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .welcome .content .button {
        margin: 0.5em 0 0 0;
        line-height: 1.5em;
        font-size: 1.5em;
    }
    .welcome p {
        text-align: left;
        margin: 0;
        font-size: 1em;
    }
    .welcome .typo {
        margin: 0.5em 0;
    }
}
@media screen and (min-width: 768px) {
    .welcome p {
        font-size: 1.5em;
    }
    .welcome .content .button--custom {
        font-size: 2em;
    }
}
@media screen and (min-width: 1024px) {
    .welcome:not(.margin-0) {
        margin: 2em auto;
    }
    .welcome p {
        font-size: 2em;
    }
    .welcome .typo {
        width: 40%;
    }
    .welcome .content {
        text-align: left;
        width: 55%;
        top: 84%;
        left: 4%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
    .welcome .content .button {
        font-size: 1.5em;
        margin: 0.5em 0;
        line-height: 2em;
    }
    .welcome .content .button--custom {
        padding: 0 0.6em 0 0.5em;
        line-height: 1.6em;
        font-size: 2.9em;
        -webkit-box-shadow: 4px 4px 0px #110918;
        box-shadow: 4px 4px 0px #110918;
    }
}
@media screen and (min-width: 1400px) {
    .welcome .content .button {
        font-size: 2.5em;
    }
}
#discover h3 {
    color: red;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1em;
    font-size: 1em;
}
#discover h3 i {
    float: left;
    font-size: 2em;
    margin-right: 5px;
}
#discover h3 strong {
    display: block;
    font-weight: 900;
}
@media screen and (min-width: 360px) {
    #discover h3 {
        font-size: 1.2em;
    }
}
@media screen and (min-width: 768px) {
    #discover h3 {
        font-size: 1.5em;
    }
}
#discover .providers {
    margin: 0 0 2em 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#discover .providers li {
    width: 33%;
    text-align: center;
    padding: 1em 0;
}
#discover .providers li a {
    text-decoration: none;
    font-weight: 700;
}
#discover .providers img {
    display: block;
    width: auto;
    max-width: 80%;
    max-height: 25px;
    margin: 0 auto;
}
@media screen and (min-width: 568px) {
    #discover .providers {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #discover .providers li {
        width: auto;
    }
}
@media screen and (min-width: 768px) {
    #discover .providers li {
        margin: 0 1em;
    }
    #discover .providers img {
        max-height: 40px;
    }
}
#topgames {
    background-color: #29153b;
}
@media screen and (min-width: 768px) {
    #topgames {
        padding: 2em 0;
    }
}
@media screen and (min-width: 768px) {
    #newgames {
        padding: 2em 0;
    }
}
@media screen and (min-width: 768px) {
    #slotgames {
        padding: 2em 0;
    }
}
#cardgames {
    background-color: #29153b;
}
@media screen and (min-width: 768px) {
    #cardgames {
        padding: 2em 0;
    }
}
#explore {
    margin: 3em auto;
}
#explore h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
    #explore h2 {
        font-size: 1.5em;
        font-weight: 700;
    }
}
#explore .providers {
    margin: 0 0 1em 0;
    padding: 0 0 0.5em 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
}
#explore .providers li {
    min-width: 40%;
    margin-right: 1em;
    position: relative;
}
#explore .providers li:last-child {
    margin-right: 0;
}
#explore .providers li a {
    display: block;
    width: 100%;
}
#explore .providers li a img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
#explore .providers li p.games {
    position: absolute;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 2em;
    bottom: 0;
    left: 0;
    color: #fff;
    margin: 0;
}
#explore .providers::-webkit-scrollbar {
    -webkit-appearance: none;
}
#explore .providers::-webkit-scrollbar:vertical {
    width: 11px;
}
#explore .providers::-webkit-scrollbar:horizontal {
    height: 11px;
}
#explore .providers::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    background-color: #29153b;
}
#explore .providers::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
}
@media screen and (min-width: 568px) {
    #explore .providers li {
        min-width: 25%;
    }
}
@media screen and (min-width: 768px) {
    #explore .providers li {
        min-width: 21%;
    }
}
@media screen and (min-width: 1200px) {
    #explore .providers {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #explore .providers li {
        min-width: unset;
        width: 20%;
        max-width: 390px;
    }
}
#tournaments {
    margin: 2em 0;
    position: relative;
}
#tournaments .wrapper {
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#tournaments .info {
    padding: 1em 0;
}
#tournaments .info img {
    display: block;
    width: 90%;
    max-width: 603px;
    margin: 0 auto 1em auto;
}
#tournaments .info p {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-size: 1.2em;
    padding: 0 2em;
}
#tournaments .cta {
    font-size: 1.3em;
}
#tournaments picture img {
    display: block;
    width: 100%;
    max-width: 864px;
    margin: 0;
}
@media screen and (min-width: 568px) {
    #tournaments .wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    #tournaments .cta {
        font-size: 1em;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    #tournaments .info {
        padding: 0;
    }
    #tournaments .info p {
        padding: 0 1em;
        font-size: 1em;
    }
}
@media screen and (min-width: 768px) {
    #tournaments .info {
        width: 38%;
    }
    #tournaments .cta {
        font-size: 1.5em;
    }
    #tournaments picture {
        width: 50%;
        max-width: 864px;
    }
}
@media screen and (min-width: 1200px) {
    #tournaments {
        margin: 3em 0;
    }
    #tournaments .info p {
        font-size: 2em;
        padding: 0 2em;
    }
    #tournaments .cta {
        font-size: 2em;
    }
}
#join {
    margin-bottom: 3em;
}
#join .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#join h2 {
    margin: 0;
    color: red;
    text-transform: uppercase;
}
#join .form {
    width: 100%;
}
#join .graphics {
    width: 100%;
    position: relative;
    background-color: #0ec4c5;
    padding-top: 1em;
}
#join .graphics img {
    width: 100%;
    display: block;
}
#join .graphics .front {
    position: absolute;
    top: -20px;
    right: 0;
}
#join .graphics .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}
#join .graphics .info .amount {
    width: 40%;
}
#join .graphics .info .amount img {
    display: block;
    width: 100%;
}
#join .graphics .info .fs {
    width: 100%;
    text-align: center;
}
@media screen and (min-width: 568px) {
    #join .wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    #join .form {
        width: 60%;
        padding-right: 2em;
    }
    #join .graphics {
        width: 40%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    #join .graphics .info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 2.5em;
    }
    #join .graphics .info .amount {
        width: 65%;
    }
    #join .graphics .info .fs,
    #join .graphics .info .get {
        line-height: 1em;
    }
}
@media screen and (min-width: 640px) {
    #join .graphics .info {
        font-size: 2em;
    }
    #join .graphics .info .fs,
    #join .graphics .info .get {
        padding: 0 1em;
    }
}
@media screen and (min-width: 768px) {
    #join form {
        margin-top: 1em;
    }
    #join .graphics .info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    #join .graphics .info .amount {
        width: 45%;
    }
    #join .graphics .info .fs,
    #join .graphics .info .get {
        padding: 0;
    }
}
@media screen and (min-width: 1024px) {
    #join .graphics {
        padding-top: 0;
    }
    #join .graphics .info {
        font-size: 2.5em;
    }
}
@media screen and (min-width: 1208px) {
    #join .form {
        width: 45%;
    }
    #join .graphics {
        width: 55%;
        background-image: url(/images/home/signup_dsk.png);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: contain;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #join .graphics .signupimg {
        display: none;
    }
    #join .graphics .info {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 40%;
        font-size: 3em;
        text-shadow: 3px 3px 2px #0ec4c5, -3px -3px 2px #0ec4c5;
    }
    #join .graphics .info .amount {
        width: 65%;
    }
}
#winners {
    text-align: center;
    color: #fff;
}
#winners img.character {
    display: none;
}
#winners p {
    color: #fff;
}
#winners h3 {
    text-align: left;
    text-transform: uppercase;
    color: #fec2a8;
    border-bottom: 1px solid #fec2a8;
    padding-bottom: 9px;
    margin: 1em 0 2em 0;
}
#winners h3:nth-child(n + 2) {
    margin-top: 2em;
}
#winners h3 strong {
    font-weight: 900;
}
#winners ul.winnerslist {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    height: 180px;
    overflow: hidden;
}
#winners ul.winnerslist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0;
}
#winners ul.winnerslist li img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #fec2a8;
    padding: 2px;
    margin: 0 0.5em 0 0;
}
#winners ul.winnerslist li p {
    margin: 0;
}
#winners ul.winnerslist li.up {
    -webkit-transition: all 2.3s;
    transition: all 2.3s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
#winners .latest-winners,
#winners .top-winners {
    padding: 1em;
}
@media screen and (min-width: 568px) {
    #winners {
        color: #000;
    }
    #winners h3 {
        margin: 0.5em 0 1em 0;
    }
    #winners .latest-winners,
    #winners .top-winners {
        background: #090211;
        width: 50%;
        max-width: 485px;
        border: 1px solid #110918;
        margin: 0 9px;
    }
    #winners .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1em 0;
    }
}
@media screen and (min-width: 768px) {
    #winners h3 {
        font-size: 1.5em;
        margin: 0.5em 0 1em 0;
        text-align: center;
    }
    #winners .latest-winners,
    #winners .top-winners {
        font-size: 1.125em;
        width: 40%;
        margin: 0 18px;
    }
    #winners ul.winnerslist {
        height: 240px;
    }
}
@media screen and (min-width: 1024px) {
    #winners {
        margin: 100px auto;
    }
    #winners img.character {
        display: block;
        position: absolute;
        height: 110%;
        width: auto;
        z-index: 2;
        bottom: 0;
        right: -10px;
    }
    #winners h3 {
        font-size: 1.45em;
        text-align: left;
        border-bottom: none;
    }
    #winners .latest-winners,
    #winners .top-winners {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 30%;
        border: none;
        background-color: transparent;
    }
    #winners .winners-box:first-child {
        border-right: 1px solid #fec2a8;
    }
    #winners .wrapper {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background-image: url("/images/home/winners-bg-cleopatra.png");
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: contain;
        background-color: #090211;
        border-radius: 10px;
        position: relative;
    }
}
