@font-face {
    font-family: 'Manrope-Regular';
    src: url("../fonts/Manrope-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope-ExtraBold';
    src: url("../fonts/Manrope-ExtraBold.ttf");
    font-weight: normal;
    font-style: normal;
}

/******************************* Common Start ************************/

*, *:before, *:after {
    box-sizing: border-box
}

img, body, table, a, form, a img, h1, h2, h3, h4, h5, h6, li, hr, ul, ol {
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
}

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

a:hover {
    text-decoration: underline;
}

body {
    font-family: 'Manrope-Regular', sans-serif;
    font-size: 15px;
}

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

.text-left {
    text-align: left;
}

.white {
    color: #ffffff;
}

.inline {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-justify-center {
    justify-content: center;
}

.flex-align-center {
    align-items: center;
}

.flex-direction-column {
    flex-direction: column;
}

.margin-auto {
    margin: auto;
}

.block {
    display: block;
}

.core-cursor-pointer {
    cursor: pointer;
}

.terms-link {
    text-decoration: underline;
    color: #282828;
}

.core-width-100-percent {
    width: 100%;
}

.core-z-999 {
    z-index: 999 !important;
}

/******************************* Common End ************************/

/******************************* Buttons Start ************************/
.btn {
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none;
}

.btn-grey {
    border: 0;
    background: #f4f4fb;
    color: #3f3f3f;
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    padding: 10px 100px;
    border-radius: 30px;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/******************************* Buttons End ************************/


/******************** Header Start *****************************/

.header {
    position: relative;
}

.header .top-ribbon {
    width: 100%;
    padding: 0 2%;
    position: relative;
    display: flex;
    height: 65px;
    align-items: center;
    justify-content: space-between;
    background: #3A3D87;
    z-index: 10;
    overflow: hidden;
}

.page-main.scrolled .header .top-ribbon,
.scrolled .header .top-ribbon {
    position: fixed;
    background: #3A3D87;
    z-index: 80;
    width: 100%;
    top: 0;
    left: 0;
}

.page-online-bingo .header .top-ribbon,
.page-online-slots .header .top-ribbon {
    background: #174E86;
}

.header .top-ribbon .logo,
.page-main.scrolled .header .top-ribbon .logo {
    position: absolute;
    left: calc(50% - 75px);
    display: block;
    width: 155px;
    height: 50px;
    background: url('../images/svg/logo.svg') no-repeat;
}

.header .top-ribbon .link-to-login,
.page-main.scrolled .header .top-ribbon .link-to-login {
    font-size: 16px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #ffffff;
    margin-right: 20px;
}

.header .top-ribbon .link-to-login:hover {
    color: #FFFF00;
    text-decoration: none;
}

.header .top-ribbon .btn-join,
.page-main.scrolled .header .top-ribbon .btn-join {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    border-radius: 25px;
    padding: 8px 43px;
    background: #E22753;
}

.page-online-bingo .header .top-ribbon .btn-join,
.page-online-slots .header .top-ribbon .btn-join {
    background: #E22753;
    color: #ffffff;
}

.header .top-ribbon .login-container{
    display: flex;
    align-items: center
}

.header .top-ribbon .login-container .btn-join:hover {
    text-decoration: none;
}

.page-main .header .top-ribbon .logo {
    display: none;
}

.page-main .header .top-menu ul li a {
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #ffffff;
}

.page-main .header .top-menu ul li a:hover {
    color: #FFFF00;
}

.page-main .header .top-ribbon .link-to-login {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.page-main .header .top-ribbon .link-to-login:hover {
    color: #FFFF00;
}

.header .top-ribbon .btn-join:hover,
.page-main.scrolled .header .top-ribbon .btn-join:hover {
    background: linear-gradient(to right, #23282D 0%, #1C1F23 100%);
    color: #ffffff;
}

.header .navigation-block span:hover {
    color: #E22753;
}

.header .logo img {
    width: 150px;
}

.button-menu {
    cursor: pointer;
    margin: 0 10px;
}

.button-menu span.line {
    display: block;
    width: 33px;
    height: 4px;
    margin: 0 0 5px 0;
    position: relative;
    border-radius: 3px;
    z-index: 1;
    background: #ffffff;
    -webkit-transform-origin: 4px 0;
    transform-origin: 4px 0;
    transition: all 300ms ease;
}

.button-menu span.line:nth-child(3) {
    margin: 0
}

.button-menu.opened span.line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
    transform: rotate(45deg) translate(0px, 0px);
    background: #292F36;
}

.button-menu.opened span.line:nth-child(2) {
    opacity: 0;
}

.button-menu.opened span.line:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 1px);
    transform-origin: 0 100%;
    background: #292F36;
}

/******************** Header End *****************************/

/******************** Menu Start *****************************/

.header .top-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .top-menu ul li {
    margin: 0 15px;
}

.header .top-menu ul li a, .page-main.scrolled .header .top-menu ul li a {
    color: #ffffff;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 16px;
}

.header .top-menu ul li a.home-link, .page-main .header .top-menu ul li a.home-link {
    display: block;
    width: 17px;
    height: 14px;
    background: url('../images/svg/home.svg') no-repeat;
    background-size: cover;
    font-size: 0;
    margin-top: 2px;
}

.header .top-menu ul li.current a.home-link,
.page-main .header .top-menu ul li.current a.home-link{
    background: url('../images/svg/home-selected.svg') no-repeat;
}

.header .top-menu ul li.current a {
    color: #FFFF00;
    cursor: default;
}

.header .top-menu ul li a:hover,
.page-main.scrolled .header .top-ribbon .top-menu ul li a:hover {
    text-decoration: none;
    color: #FFFF00;
}

.page-main.scrolled .header .top-menu.mobile-menu-opened ul li a:hover,
.page-main.scrolled .header .top-ribbon .top-menu.mobile-menu-opened ul li a:hover {
    color: #008AE8;
}

/******************** Menu End *****************************/

/******************** Footer Start **************************************/

.footer {
    padding-bottom: 30px;
}

.footer .footer-bg {
    background: #1B2533;
}

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

.footer .social-links {
    text-align: center;
}

.footer .social-links a {
    margin: 0 25px;
}

.footer .social-links a img {
    width: 22px;
}

.footer .footer-info {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.footer .footer-info .helpful-links {
    white-space: nowrap;
}

.footer .footer-info .helpful-links .helpful-links-title {
    font-size: 15px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #FFFF00;
    text-align: right;
}

.footer .footer-info .helpful-links ul.footer-privacy-links li {
    display: block;
    text-align: right;
}

.footer .footer-info .helpful-links ul.footer-privacy-links li a {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.footer .footer-info .helpful-links ul.footer-privacy-links li a:hover {
    text-decoration: none;
    color: #FFFF00;
}

.footer .footer-info .helpful-links ul.footer-privacy-links li .footer-privacy-separator {
    display: none;
}

.footer .core-footer-licensing-information-wrapper {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.5;
    padding: 0 20px;
    width: 45%;
    text-align: left;
}

.footer .footer-info .core-footer-licensing-information-wrapper a {
    color: #ffffff;
    text-decoration: underline;
}

.footer .security-container {
    display: flex;
    flex-direction: column;
}

.footer .security-container .core-footer-regulatory-wrapper {
    order: 1;
}

.footer .security-container .core-footer-responsible-gaming-wrapper {
    order: 0;
}

.footer .logo img {
    width: 200px;
}

.core-footer-links.footer-privacy-links {
    list-style-type: none;
    width: 100%;
    text-align: center;
    margin: 15px auto;
    display: block;
    padding: 0;
}

.core-footer-links.footer-privacy-links .core-footer-link.footer-privacy-link {
    padding: 0;
}

.core-footer-links.footer-privacy-links .core-footer-link.footer-privacy-link:after {
    content: unset;
}

.footer .logo img {
    width: 150px;
    margin-top: 50px;
}

.footer .footer-info .helpful-links .helpful-links-title {
    font-weight: normal;
}

/******************** Footer End **************************************/

/******************** Section Start **************************************/

.section-wrapper .section-container {
    margin: 0 10%;
}

.section-wrapper .section-container .section-title.white {
    color: #ffffff;
    font-weight: normal;
}

.section-wrapper .section-container h2.section-title {
    color: #2E3192;
    font-size: 30px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-weight: normal;
}

.section-wrapper .section-container h3.section-title {
    color: #292F36;
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    text-align: center;
    margin: 0 auto 30px;
}

.section-wrapper .section-container a.link {
    text-decoration: underline;
    font-size: 16px;
}

.section-wrapper .section-container .link-wrapper {
    margin: 10px 0 50px;
}

/******************** Section End **************************************/

/******************** Home Page Start **************************************/

.top-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-banner .section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    max-width: 900px;
    position: relative;
    top: -30px;
}

.top-banner-wrapper {
    width: 100%;
    position: relative;
}

.top-banner-wrapper .main-top-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner-wrapper .main-top-banner {
    max-width: 100%;
}

.page-main .top-banner-wrapper .waveWrapperInner,
.page-online-bingo .top-banner-wrapper .waveWrapperInner,
.page-online-slots .top-banner-wrapper .waveWrapperInner {
    background-image: none;
}

.top-banner .text-welcome-offer {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 25px;
    color: #FFFF00;
}

.top-banner .text-claim-offer {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 55px;
    line-height: 1;
    color: #ffffff;
    margin: 15px auto 10px;
}

.top-banner .promo-code {
    font-size: 25px;
    margin: 0;
}

.top-banner .promo-code span {
    color: #FFFF00;
}

.welcome-offer-wrapper .info-text p {
    color: #828282;
    font-size: 10px;
    padding: 5px 0;
    width: 70%;
    margin: 0 auto 5px;
    line-height: 13px;
}

.welcome-offer-wrapper .text-welcome-offer {
    margin: 50px 0 20px 0;
    font-size: 20px;
    color: #2E3192;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-weight: normal;
}

.welcome-offer-wrapper .text-claim-offer {
    color: #2E3192;
    font-size: 30px;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.welcome-offer-description {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
}

.welcome-offer-description:first-of-type {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 25px;
    margin-top: 30px;
}

.btn-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    text-transform: capitalize;
    background: #E22753;
    padding: 10px 0;
    border-radius: 30px;
    width: 300px;
    text-align: center;
}

.btn-link:hover {
    text-decoration: none;
    background: #ce143f;
    color: #FFF !important;
}

.welcome-offer-wrapper.section-wrapper .btn-link {
    margin: 20px auto;
}

.welcome-offer-wrapper.section-wrapper .section-container a.link {
    color: #292F36;
}

.welcome-offer-wrapper .banners-container {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    margin: 40px auto 65px;
}

.welcome-offer-wrapper .banners-container .separator {
    font-size: 30px;
    margin: 0 30px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #282936;
}

.welcome-offer-wrapper .banners-container img {
    width: 200px;
}

.how-to-claim-wrapper.section-wrapper {
    background-color: #222877;
    padding: 20px 0;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container.section-container .how-to-claim-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container.section-container .how-to-claim-block img {
    width: 45px;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container.section-container .how-to-claim-block .step-arrow {
    width: 12px;
    margin: 0 20px;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step {
    color: #ffffff;
    font-size: 15px;
    max-width: 205px;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-block img {
    margin: 0 10px;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step span {
    display: block;
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step span.mobile-only {
    display: none;
}

.brilliant-bingo-rooms-wrapper.section-wrapper {
    background-size: cover;
    padding: 100px 0 50px 0;
}

.brilliant-bingo-rooms-wrapper.section-wrapper .rooms-block, .super-slot-games-wrapper.section-wrapper .slots-block {
    width: 75%;
    margin: 50px auto 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brilliant-bingo-rooms-wrapper.section-wrapper .room .front, .super-slot-games-wrapper.section-wrapper .slot .front {
    position: relative;
    font-size: 0;
}

.brilliant-bingo-rooms-wrapper.section-wrapper .room, .super-slot-games-wrapper.section-wrapper .slot {
    position: relative;
    margin: 2px;
    flex-basis: calc((100% - 24px) / 5);
}

.brilliant-bingo-rooms-wrapper.section-wrapper .room span.label {
    position: absolute;
    background: #E22753;
    color: #fff;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 12px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 5px 0;
}

.brilliant-bingo-rooms-wrapper.section-wrapper .room a img, .super-slot-games-wrapper.section-wrapper .slot a img {
    width: 100%;
    border-radius: 5px;
}

.brilliant-bingo-rooms-wrapper.section-wrapper .room .back {
    display: none;
}

.hint-wrapper {
    font-size: 15px;
    color: #292F36;
}

.hint-wrapper span {
    font-size: 18px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    text-transform: uppercase;
    padding-right: 5px;
}

.page-main .hint-wrapper {
    height: 45px;
    padding: 10px 0;
    position: relative;
    z-index: 4;
}

.page-main .hint-wrapper p {
    margin: 0 auto;
    color: #ffffff;
}

.page-main .hint-wrapper span {
    color: #FFFF00;
}

.super-slot-games-wrapper.section-wrapper {
    background-size: cover;
    padding: 100px 0;
}

.page-main .bingo-room-and-slots-games {
    position: relative;
}

.page-main .bingo-room-and-slots-games .waveWrapper {
    height: auto;
}

.page-main .bingo-room-and-slots-games .waveWrapperInner {
    background: #3A3D87;
    background-size: cover;
}

.page-main .bingo-room-and-slots-games .section-container {
    position: relative;
    z-index: 4;
}

.rewards-wrapper.section-wrapper h2.section-title {
    color: #ffffff;
}

.rewards-wrapper.section-wrapper .info-text {
    font-size: 10px;
    color: #ffffff;
    width: 70%;
    margin: auto;
}

.rewards-wrapper.section-wrapper .info-text .terms-link {
    color: inherit;
}

.rewards-wrapper.section-wrapper .rewards-block {
    margin: 50px 0;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}

.rewards-wrapper.section-wrapper .rewards-block .rewards-card span {
    color: #FFD200;
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    display: block;
    padding-bottom: 5px;
}

.rewards-wrapper.section-wrapper .rewards-block .rewards-card {
    max-width: 531px;
    height: 200px;
    font-size: 15px;
    color: #ffffff;
    background: rgba(23, 27, 30, 0.4);
    margin: 3px;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-basis: calc((100% - 12px) / 2);
}

.rewards-wrapper.section-wrapper .rewards-block .rewards-card img {
    width: 115px;
    height: 115px;
}

.rewards-wrapper.section-wrapper .rewards-block .rewards-card .rewards-text {
    max-width: 50%;
    text-align: left;
}

.playsafe-securely-wrapper.section-wrapper {
    padding: 50px 0;
}

.playsafe-securely-wrapper.section-wrapper h3.section-title{
    margin: 0 auto;
}

.playsafe-securely-wrapper.section-wrapper .images-block {
    min-width: 370px;
}

.playsafe-securely-wrapper .playsafe-securely {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
}

.playsafe-securely-wrapper .playsafe-content h3.section-title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    color: #2E3192;
}

.playsafe-securely-wrapper .playsafe-securely p {
    color: #2E3192;
    font-size: 16px;
    text-align: left;
}

.playsafe-securely-wrapper .playsafe-securely-text {
    width: 35%;
    margin-left: 20px;
}

.playsafe-securely-wrapper.section-wrapper .social-links a {
    margin: 30px 20px 0 30px;
    display: inline-block;
}

.register-form-wrapper.section-wrapper {
    padding: 50px 0;
    background-size: cover;
}

.register-form-wrapper.section-wrapper .input-text {
    width: 500px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 15px 25px;
    margin: 3px 0;
    background: #ffffff;
    outline: none;
    font-size: 16px;
    font-family: 'Manrope-Regular', sans-serif;
}

.register-form-wrapper.section-wrapper form {
    margin-top: 50px;
}

.register-form-wrapper.section-wrapper .btn-link {
    margin: 15px auto 0 auto;
}

/******************** Home Page End **************************************/

/******************** Bingo Rooms Start **************************************/

.page-online-bingo .top-banner,
.page-online-slots .top-banner {
    position: relative;
    width: 100%;
    height: 100%;
    background: none;
    background-size: cover;
}

.page-online-bingo .our-bingo-wrapper {
    padding-top: 30px;
}

.bottom-banner .bottom-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.bottom-banner .bottom-banner-image {
    max-width: 100%;
}

.page-online-bingo .bottom-banner, .page-online-slots .bottom-banner, .register-confirm-wrapper .welcome-banner {
    width: 100%;
    background: linear-gradient(to top, #575AAC 20%, #3A3D87 80%);
    background-size: cover;
}

.page-online-bingo .bottom-banner .welcome-text, .page-online-slots .bottom-banner .welcome-text, .register-confirm-wrapper .welcome-banner .welcome-text {
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #FFFF00;
    padding-top: 40px;
    padding-bottom: 5px;
}

.page-online-bingo .bottom-banner h2, .page-online-slots .bottom-banner h2, .register-confirm-wrapper .welcome-banner h2 {
    font-size: 55px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #ffffff;
    line-height: 1;
}

.page-online-bingo .bottom-banner p, .page-online-slots .bottom-banner p, .register-confirm-wrapper .welcome-banner p {
    font-size: 10px;
    color: #ffffff;
    width: 70%;
    margin: auto;
    padding-bottom: 15px;
}

.page-online-bingo .bottom-banner p .terms-link, .page-online-slots .bottom-banner p .terms-link, .register-confirm-wrapper .welcome-banner p .terms-link {
    color: #ffffff;
    text-decoration: underline;
}

.page-online-bingo .bottom-banner .promo-code, .page-online-slots .bottom-banner .promo-code, .register-confirm-wrapper .welcome-banner .promo-code {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    padding: 15px 0 10px 0;
}

.page-online-bingo .bottom-banner .promo-code span, .page-online-slots .bottom-banner span, .register-confirm-wrapper .welcome-banner span {
    color: #FFFF00;
}

.page-online-bingo .bottom-banner .promo-code .btn-link, .page-online-slots .bottom-banner .promo-code .btn-link, .register-confirm-wrapper .welcome-banner .promo-code .btn-link {
    margin: 0 20px;
}

.page-online-bingo .bottom-banner .promo-code .btn-link:hover, .page-online-slots .bottom-banner .promo-code .btn-link:hover, .register-confirm-wrapper .welcome-banner .promo-code .btn-link:hover {
    background: linear-gradient(to right, #D30D41 0%, #AF0E40 100%);
}

.page-online-bingo .bottom-banner .promo-code .btn-link:hover, .page-online-slots .bottom-banner .promo-code .btn-link:hover, .register-confirm-wrapper .welcome-banner .promo-code .btn-link:hover {
    text-decoration: none;
}

.page-online-bingo .bingo-rooms-wrapper .rooms-block {
    margin: 20px 0;
}

.bingo-rooms-wrapper .rooms-block {
    display: flex;
    flex-wrap: wrap;
}

.bingo-rooms-wrapper .rooms-block .room {
    flex-basis: 25%;
    padding: 0 2px;
    margin: 2px 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.bingo-rooms-wrapper .rooms-block .room .front {
    font-size: 0;
    position: relative;
}

.bingo-rooms-wrapper .rooms-block .room .front img {
    width: 100%;
    border-radius: 5px;
}

.bingo-rooms-wrapper .rooms-block .room .front span.label {
    position: absolute;
    background: linear-gradient(to right, #F50A3F 0%, #CE0B3E 100%);
    color: #ffffff;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 11px;
    font-family: 'Manrope-Regular', sans-serif;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 5px 0;
}

.bingo-rooms-wrapper .rooms-block .room .back {
    display: none;
    position: absolute;
    z-index: 1;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    text-align: center;
    line-height: 1.7vw;
    font-size: 1vw;
}

.bingo-rooms-wrapper .rooms-block .room:hover .back {
    display: block;
}

.bingo-rooms-wrapper .rooms-block .room .back .room-name {
    font-size: 1.3vw;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-weight: normal;
    padding: 3% 0 1% 0;
}

.bingo-rooms-wrapper .rooms-block .room .back span {
    font-size: 1vw;
    color: #BA173F;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.bingo-rooms-wrapper .rooms-block .room .back .flex div {
    margin: 0 20px;
}

.bingo-rooms-wrapper .rooms-block .room .back .btn-link {
    width: 40%;
    margin: 5px auto 0 auto;
    padding: 15px 0;
    line-height: 1;
    font-size: 1vw;
    border-radius: 5px;
    background: #BA173F;
}

.bingo-rooms-wrapper .rooms-block .room .back .btn-link:hover {
    text-decoration: none;
}

.link-to-lobby {
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #E22753;
    position: relative;
    padding-right: 20px;
}

.link-to-lobby:hover {
    color: #CE0B3E;
    text-decoration: none;
}

.search-wrapper {
    padding: 20px 0;
}

/******************** Bingo Rooms End **************************************/

/******************** Slots Start **************************************/

.page-online-slots .our-slots-top-wrapper {
    padding-top: 30px;
}

.page-online-slots .our-slots-bottom-wrapper,
.page-online-bingo .our-slots-bottom-wrapper{
    padding-bottom: 50px;
}

.page-online-slots .btn-link.core-button-expand, .page-online-bingo .btn-link.core-button-expand {
    background: #ffffff;
    color: #292F36;
    border: 1px solid #292F36;
    font-size: 15px;
    font-family: 'Manrope-Regular', sans-serif;
    text-transform: none;
    width: 145px;
}

.btn-link.core-button-expand:hover {
    background: #292F36;
    color: #fff;
    border: 1px solid #292F36;
    font-size: 15px;
    font-family: 'Manrope-Regular', sans-serif;
    text-transform: none;
    width: 145px;
}

.page-online-bingo h4.title,
.page-online-slots h4.title {
    font-size: 20px;
    color: #292F36;
    font-weight: normal;
    margin: 30px 0;
}

.slots-wrapper h4.section-title, .page-online-slots .section-wrapper h4.section-title {
    font-size: 18px;
    margin: 30px 0 10px 0;
    font-weight: normal;
    color: #292F36;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.slots-tab-wrapper .slots-block {
    margin-bottom: 50px;
}

.slots-block {
    display: flex;
    flex-wrap: wrap;
}

.slots-block .slot {
    border-radius: 5px;
    margin: 2px;
    position: relative;
    flex-basis: calc((100% - 24px) / 6);
}

.slots-block .slot .front {
    position: relative;
    font-size: 0;
}

.slots-block.favourite-slots .slot {
    background: #f4f4fb;
    flex-basis: calc((100% - 28px) / 7);
}

.slots-block.favourite-slots .slot[data-core-favorite-instant-game-placeholder]:first-child {
    background: #f4f4fb;
    position: relative;
    min-height: calc(80vw / 7);
}

.slots-block.favourite-slots .slot:first-child .front {
    z-index: 1;
}

.slots-block.favourite-slots .slot:first-child .back {
    z-index: 2;
}

.slots-block.favourite-slots .slot[data-core-favorite-instant-game-placeholder]:first-child:after {
    position: absolute;
    content: 'Click the heart icon to add a game';
    margin: auto;
    width: 100%;
    top: 65px;
    left: 0;
    font-size: 1vw;
    text-align: center;
    padding: 0 10%;
}

.slots-block .slot img {
    width: 100%;
    border-radius: 5px;
}

.slots-block .slot .back {
    display: none;
    position: absolute;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 35px;
}

.page-main .slots-block .slot .back, .page-online-slots .slots-block .slot .back {
    padding: 0;
}

.slots-block .slot:hover .back {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.slots-block .slot .back .slot-name {
    font-size: 1.1vw;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-weight: normal;
    color: #292F36;
    text-align: center;
    padding: 0 5%;
}

.slots-block .slot .back .btn-link {
    width: 70%;
    margin: auto;
    font-size: 1vw;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    background: #BA173F;
}

.slots-block .slot .back .btn-link:hover {
    text-decoration: none;
}

.page-online-slots .accordion-text, .page-online-bingo .accordion-text {
    overflow: hidden;
    margin-bottom: 10px;
    transition: all .5s ease;
    height: auto;
}

.page-online-slots .accordion-text.core-collapsed-wrapper,
.page-online-bingo .accordion-text.core-collapsed-wrapper{
    height: 225px;
}

.slots-tab-wrapper .search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slots-menu {
    list-style: none;
}

.slots-menu li {
    display: inline-block;
    margin-right: 40px;
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #292F36;
    cursor: pointer;
}

.slots-menu li:hover {
    color: #1CB1BB;
}

.slots-menu li.active {
    color: #1CB1BB;
    cursor: default;
}

.slots-tab-wrapper .search-wrapper .core-ig-search-box {
    position: relative;
}

.slots-tab-wrapper .search-wrapper .core-ig-search-box .core-ig-search-input {
    background: #f4f4fb;
    border: 0;
    padding: 10px 50px 10px 20px;
    width: 400px;
    border-radius: 50px;
    color: #292F36;
    font-size: 16px;
    font-family: 'Manrope-Regular', sans-serif;
}

.slots-tab-wrapper .search-wrapper .core-ig-search-box .core-ig-search-input::placeholder {
    color: #ADADAD;
    font-size: 16px;
}

.core-ig-search-box .core-ig-search-list {
    position: absolute;
    top: 50px;
    left: 0;
    width: 90%;
    margin: 0 5%;
    background: linear-gradient(135deg, #262731 0%, #1B191C 100%);
    z-index: 5;
    border-radius: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.core-ig-search-box .core-ig-search-list::-webkit-scrollbar {
    width: 10px;
}

.core-ig-search-box .core-ig-search-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.core-ig-search-box .core-ig-search-list::-webkit-scrollbar-thumb {
    background: #585858;
    border-radius: 10px;
}

.core-ig-search-box .core-ig-search-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.core-ig-search-box .core-ig-search-list .core-ig-search-item {
    display: flex;
    background: #fff;
    margin: 10px;
    border-radius: 60px;
    padding: 5px;
    cursor: pointer;
}

.core-ig-search-box .core-ig-search-list .core-ig-search-item:hover {
    background: #1CB1BB;
    color: #ffffff;
}

.core-ig-search-box .core-ig-search-list .core-ig-search-item:hover span {
    color: #ffffff;
}

.core-ig-search-box .core-ig-search-list .core-ig-search-item .core-ig-search-img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.core-ig-search-box .core-ig-search-list .core-ig-search-item .core-ig-search-title {
    font-size: 16px;
    line-height: 21px;
    font-family: 'Manrope-Regular', sans-serif;
    padding-top: 4px;
    color: #292F36;
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
}

/******************** Slots End **************************************/

/******************** Welcome offer Start **************************************/

.page-welcome-offer .top-banner {
    height: 550px;
    background: none;
}

.page-welcome-offer .terms-conditions-wrapper .terms-conditions-block {
    margin: auto;
    width: 70%;
}

.page-welcome-offer .terms-conditions-wrapper h3.section-title {
    font-size: 20px;
    color: #828282;
    font-family: 'Manrope-Regular', sans-serif;
    text-align: left;
    font-weight: normal;
}

.page-welcome-offer .terms-conditions-wrapper .text ol li {
    font-size: 12px;
    color: #828282;
    margin-bottom: 10px;
}

.page-welcome-offer .terms-conditions-wrapper .text ol li a {
    color: #828282;
    text-decoration: underline;
}

.page-welcome-offer .terms-conditions-wrapper .text ol li ol {
    margin: 10px 20px;
    list-style: lower-alpha;
}

.page-welcome-offer .terms-conditions-wrapper {
    margin-bottom: 50px;
}

.page-welcome-offer .secure-payments-options-wrapper img {
    width: 425px;
}

.page-welcome-offer .section-wrapper .section-container h3.section-title {
    margin: 30px 0;
}

.page-welcome-offer .how-to-claim-wrapper.section-wrapper {
    background-color: transparent;
}

.page-welcome-offer .how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step {
    color: #292F36;
}

/******************** Welcome offer End **************************************/

/******************** Carousel Start **************************************/

.bottom-panels-wrapper .bottom-panels-container {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.bottom-panels-wrapper .panel {
    position: absolute;
    width: 480px;
    height: 215px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 20px;
    opacity: 0.5;
    margin: 30px 10px;
    transition: all 300ms ease;
    outline: none;
}

.bottom-panels-wrapper .panel.game-panel img {
    width: 150px;
    border-radius: 50%;
}

.bottom-panels-wrapper .panel .panel-title {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 25px;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.bottom-panels-wrapper .panel.red {
    background: linear-gradient(135deg, #FFA300 0%, #ED4800 100%);
}

.bottom-panels-wrapper .panel.red a {
    color: #FF2C6D;
}

.bottom-panels-wrapper .panel.green {
    background: linear-gradient(135deg, #B9E793 0%, #1CB1BB 100%);
}

.bottom-panels-wrapper .panel.green a {
    color: #26DA9B;
}

.bottom-panels-wrapper .panel.blue {
    background: linear-gradient(135deg, #FF4D94 0%, #1B0554 100%);
}

.bottom-panels-wrapper .panel.blue img {
    max-width: 150px;
}

.bottom-panels-wrapper .panel.green img {
    max-width: 110px;
}

.bottom-panels-wrapper .panel.blue a {
    color: #8F2A74;
}

.bottom-panels-wrapper .panel a, .bottom-panels-wrapper .panel span.action {
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #E22753;
    display: block;
    background: #ffffff;
    padding: 5px 0;
    border-radius: 20px;
    text-align: center;
    width: 180px;
    cursor: pointer;
}

.bottom-panels-wrapper .panel a:hover, .bottom-panels-wrapper .panel span.action:hover {
    text-decoration: none;
    opacity: 0.8
}

/******************** Carousel End **************************************/

.fade-content > * {
    transition: ease opacity .25s, ease transform .25s;
}

/******************** Inner Pages Start **************************************/

.content {
    margin: 0 10% 50px;
}

.content * {
    color: #333333;
    line-height: 22px;
}

.content h1 {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 60px;
    text-align: left;
    margin: 100px 0 70px;
    line-height: 1.5;
}

.content h2 {
    font-size: 25px;
    margin: 30px 0;
    color: #333333;
}

/******************** Inner Pages  End **************************************/

/************************* Promotions Page Start ******************************/

.promoTitle h2 {
    font-weight: normal;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 20px !important;
}

.promoDesc b {
    font-weight: normal;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.promoImg {
    border-radius: 10px;
}

.promoBtn {
    font-size: 20px !important;
    background: linear-gradient(to right, #F50A3F 0%, #CE0B3E 100%) !important;
    padding: 13px 40px !important;
    font-weight: normal !important;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.promoBtn:hover {
    background: linear-gradient(to right, #D30D41 0%, #AF0E40 100%) !important;
    text-decoration: none;
}

.promoTcs li {
    color: #828282 !important;
    font-size: 12px;
}

.promoTcs a {
    color: #828282 !important;
    text-decoration: underline;
}

.promoTcs h3 {
    color: #828282 !important;
    font-weight: normal;
}

.promoBox img {
    max-width: 100%;
    border-radius: 10px;
}

.promoBox {
    width: 30% !important;
}

.promoContent.promoIndex0 {
    display: block;
}

.promoContent {
    display: none;
}

.promoTcs ol {
    line-height: 22px;
}

.section-wrapper .section-container .lastUpdate {
    font-size: 12px;
    color: #828282;
    text-align: left;
}

/************************* Promotions Page End ******************************/

/************************** Our Sites Start ******************/

#ourSites .grid-container {
    margin: 0 10%;
}

#ourSites .grid-container .siteTypeWrapper .grid-x {
    display: flex;
    flex-wrap: wrap;
}

#ourSites .grid-container .siteTypeWrapper .grid-x .site {
    flex-basis: calc(100% / 4);
}

#ourSites .grid-container .siteTypeWrapper .siteCardWraper {

}

#ourSites .grid-container .siteTypeWrapper .siteCard {
    height: 100%;
}

#ourSites .grid-container .siteTypeWrapper .siteCard .description {
    max-height: calc(100% - 108px);
    overflow-y: auto;
}

#ourSites {
    font-family: 'Manrope-Regular', sans-serif;
    font-size: 16px;
}

#ourSites .grid-container .siteTypeWrapper .siteCard .description::-webkit-scrollbar {
    width: 5px;
}

#ourSites .grid-container .siteTypeWrapper .siteCard .description::-webkit-scrollbar-track {
    background: #e4e4e4;
    border-radius: 30px;
}

#ourSites .grid-container .siteTypeWrapper .siteCard .description::-webkit-scrollbar-thumb {
    background: #a5a4a4;
    border-radius: 0;
}

#ourSites .grid-container .siteTypeWrapper .siteCard .description::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/************************** Our Sites Start ******************/

/************************** FAQ Start ******************/

.page-faq .faqs-page,
.page-faq .contact-page {
    color: #333333;
}

.page-faq .faqheader,
.page-faq .contactheader {
    text-align: center;
    margin: 100px 0 30px 0;
}

.page-faq .faqheader h2,
.page-faq .contactheader h2 {
    padding-top: 0;
    font-size: 60px;
    margin: 0;
    text-align: left;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.page-faq .faqheader p,
.page-faq .contactheader p {
    font-size: 16px;
    text-align: left;
}

.page-faq .row.faqLayout {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 50px;
}

.page-faq .leftCol {
    width: 30%;
    float: none;
    padding: 0;
    margin-bottom: 0;
}

.page-faq .liHeader {
    background: transparent;
    color: #333333;
    width: 100%;
    display: block;
    line-height: 40px;
    margin-bottom: 4px;
    cursor: pointer;
    padding: 0;
    border-bottom: 0;
    border-radius: 0;
}

.page-faq .liHeader.act {
    background: transparent;
    font-family: 'Manrope-ExtraBold', sans-serif;
    color: #007AF2;
}

.page-faq .rightCol {
    width: 60%;
    float: none;
    padding: 0;
    margin-bottom: 0;
}

.page-faq .section h3 {
    color: #007AF2;
    font-size: 20px;
    font-weight: normal;
}

.page-faq .button-contact-us {
    background: transparent;
    color: #333333;
    width: 140px;
    display: block;
    text-align: center;
    line-height: 40px;
    margin: 20px 0 0;
    cursor: pointer;
    padding: 0;
    border: solid 2px #333333;
    border-radius: 5px;
}

.page-faq .button-contact-us:hover {
    background: transparent;
    opacity: 0.5;
}

/************************** FAQ Start End ******************/

/************************* Contact Us Start *************************/

.page-sendmail .content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-sendmail .content p {
    font-size: 16px;
}

.page-sendmail h1 {
    margin-bottom: 0;
}

.page-sendmail .text-block,
.page-sendmail .send-mail-form-wrapper {
    text-align: left;
}

.page-sendmail .send-mail-form-wrapper {
    margin: 0;
}

.page-sendmail .text-block a {
    color: #007af2;
    text-decoration: underline;
}

.page-sendmail h2 {
    font-family: 'Manrope-Regular', sans-serif;
    color: #007AF2;
    margin: 30px 0 0;
    font-size: 20px;
}

.page-sendmail .phone-number-wrapper h2 {
    margin: 50px 0 0;
}

.page-sendmail .text-block .phone-number-wrapper p {
    margin: 0;
    line-height: 1.5;
}

.page-sendmail .text-block .phone-number-wrapper p.large-text {
    font-family: 'Manrope-Regular', sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
}

.page-sendmail .text-block .phone-number-wrapper p.large-text.phone-number {
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 30px;
    margin-bottom: 0;
}

.page-sendmail .send-mail-form-wrapper {
    width: 500px;
    margin: 0 0 100px;
}

.page-sendmail .send-mail-form-wrapper .caption {
    text-align: left;
    margin-bottom: 5px;
}

.page-sendmail .send-mail-form-wrapper .error {
    color: red;
}

.page-sendmail .button-submit {
    display: block;
    background-color: #007AF2;
    color: #ffffff;
    width: 140px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    border: solid 2px #007AF2;
    border-radius: 5px;
    cursor: pointer;
}

.page-sendmail .button-submit:hover {
    background: #007AF2;
    color: #ffffff;
    border: solid 2px #007AF2;
    opacity: 0.5;
}

.page-sendmail .send-mail-form-wrapper input,
.page-sendmail .send-mail-form-wrapper select,
.page-sendmail .send-mail-form-wrapper textarea {
    background-color: transparent;
    border: solid 2px #333333;
    border-radius: 5px;
    padding: 10px;
}

.page-sendmail .send-mail-form-wrapper textarea {
    resize: vertical;
}

.page-sendmail .send-mail-form-wrapper textarea::placeholder, .page-sendmail .send-mail-form-wrapper input::placeholder {
    color: transparent;
}

/************************* Contact Us End *************************/

/********** Cookies Start *********/

#CookieMessageDiv.bar .message_block .cookieMsgClose .CookieCloseBtn {
    background-color: #2E3192!important;
    color: #fff;
    font-family: 'Manrope-ExtraBold', sans-serif;
    font-weight: normal !important;
    padding: 10% 2%;
    border-radius: 50px !important;
    border: none !important;
}

#CookieMessageDiv.bar .message_block .cookieMsgClose .CookieCloseBtn:hover {
    background-color: #7F1C7F!important;
}

#CookieMessageDiv.bar .message_block .message_container {
    font-family: 'Manrope-Regular', sans-serif;
}

#CookieMessageDiv img.icon {
    width: 30px !important;
    height: 30px !important;
}

/********** Cookies End *********/

/******************************* Cookies Message Start ************************/

#CookieMessageDiv.bar {
    width: 97%;
    margin-left: 1.5%;
    margin-bottom: 1.5%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

#CookieMessageDiv.bar .message_block .cookieMsgClose .CookieCloseBtn {
    background-color: #424591!important;
}

#CookieMessageDiv.bar .message_block .cookieMsgClose .CookieCloseBtn:hover {
    background-color: #2a2c6b!important;
}

/******************************* Cookies Message End ************************/

#covidWithdrawalReversalNotification {
    padding-top: 20px;
}

/******************** Page Not Found Start **************************************/

.page-not-found-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #333333;
    padding: 70px 20px;
}

.page-not-found-wrapper .large-text {
    font-size: 60px;
    font-family: 'Manrope-ExtraBold', sans-serif;
}

.page-not-found-wrapper .middle-text {
    font-size: 16px;
}

.page-not-found-wrapper p {
    margin: 30px 0;
    font-size: 16px;
}

.page-not-found-wrapper ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.page-not-found-wrapper ul li a {
    font-size: 16px;
    color: #007AF2;
    text-decoration: none;
    line-height: 1.5;
}

/******************** Page Not Found End **************************************/

/******************************** Custom Scroll Start *******************************/

.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #272c32;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #585858;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*********************************** Custom Scroll End ******************************/

/*************************** Wave Animation Start ******************************/

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 105%;
    background-image: linear-gradient(to top, #575AAC 20%, #3A3D87 80%);
}

.bgTop {
    z-index: 4;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 3;
    opacity: 0.75;
}

.bgBottom {
    z-index: 2;
}

.wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move-wave 3s;
    -webkit-animation: move-wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}

/*************************** Wave Animation End ******************************/

/*************************** Circle Animation Start ******************************/

.circle-wrapper {
    position: relative;
}

.circle-wrapper .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 250px;
    width: 250px;
    border-radius: 2000px;
}

.circle-wrapper .circle:before, .circle:after {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

.circle-wrapper .circle:before {
    box-shadow: inset 0 15px 0 rgba(85, 88, 170, 0.6), inset 15px 0 0 rgba(85, 88, 170, 0.6), inset 0 -15px 0 rgba(85, 88, 170, 0.6), inset -15px 0 0 rgba(85, 88, 170, 0.6);
    animation: counterclockwise 10.5s -10.5s linear infinite;
}
.circle-wrapper .circle:after {
    box-shadow: inset 0 20px 0 rgba(58, 61, 135, 0.6), inset 20px 0 0 rgba(58, 61, 135, 0.6), inset 0 -20px 0 rgba(58, 61, 135, 0.6), inset -20px 0 0 rgba(58, 61, 135, 0.6);
    animation: counterclockwise 10.5s -10.5s linear infinite;
}

@keyframes clockwise {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(180deg) scaleX(0.80) scaleY(0.95);
    }
    100% {
        transform: rotateZ(360deg) scaleX(1) scaleY(1);
    }
}
@keyframes counterclockwise {
    0% {
        transform: rotateZ(0deg) scaleX(1) scaleY(1);
    }
    50% {
        transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.8);
    }
    100% {
        transform: rotateZ(-360deg) scaleX(1) scaleY(1);
    }
}

/*************************** Circle Animation End ******************************/

/*************************** Pulse Button Animation Start ******************************/

.pulse-button-wrapper{
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pulse-button {
    display: block;
    width: 300px;
    height: 70px;
    font-size: 20px;
    font-family: 'Manrope-ExtraBold', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 72px;
    letter-spacing: 0;
    color: white;
    border: none;
    border-radius: 500px;
    background: radial-gradient(circle, rgba(226,39,83,1) 0%, rgba(175,11,54,1) 100%);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(226,39,83, 0.5);
    -webkit-animation: pulse 1.5s infinite;
}

.pulse-button:hover {
    -webkit-animation: none;
    text-decoration: none;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(226, 39, 83, 0);
    }
    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(226, 39, 83, 0);
    }
}

/*************************** Pulse Button Animation End ******************************/

/*************************** Animation Link Start ******************************/

.animation-link-wrapper{
    margin: 30px 0;
}

.animation-link-wrapper .animation-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: 'Manrope-Regular', sans-serif;
}

.animation-link-wrapper .animation-link {
    width: 170px;
    height: auto;
}

.animation-link-wrapper .animation-link .circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 35px;
    height: 35px;
    background: #282936;
    border-radius: 200px;
}

.animation-link-wrapper .animation-link.white .circle{
    background: #fff;
}

.animation-link-wrapper .animation-link .circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.animation-link-wrapper .animation-link.white .circle .icon{
    background: #061139;
}

.animation-link-wrapper .animation-link .circle .icon.arrow {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.325rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.animation-link-wrapper .animation-link .circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.animation-link-wrapper .animation-link.white .circle .icon.arrow::before{
    border-top: 0.125rem solid #061139;
    border-right: 0.125rem solid #061139;
}

.animation-link-wrapper .animation-link .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 30px;
    right: 0;
    bottom: 0;
    padding: 0.35rem 0;
    margin: 0 0 0 0;
    color: #282936;
    line-height: 1.6;
    text-align: center;
}

.animation-link-wrapper .animation-link.white .button-text{
    color: #fff;
}

.animation-link-wrapper .animation-link:hover .circle {
    width: 100%;
}

.animation-link-wrapper .animation-link:hover .circle .icon.arrow {
    background: #fff;
    -webkit-transform: translate(1rem, 0);
    transform: translate(1rem, 0);
}

.animation-link-wrapper .animation-link.white:hover .circle .icon.arrow{
    background: #061139;
}

.animation-link-wrapper .animation-link:hover .button-text {
    color: #fff;
}

.animation-link-wrapper .animation-link.white:hover .button-text {
    color: #061139;
}

/*************************** Animation Link End ******************************/




/*************************** Mobile Start ******************************/

@media only screen and (max-width: 1200px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .header .top-ribbon {
        height: 70px;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 80;
    }
    .scrolled .header .top-ribbon {
        position: fixed;
    }
    .page-main.scrolled .header .top-ribbon,
    .page-welcome-offer.scrolled .header .top-ribbon {
        background: #3A3D87;
    }
    .core-menu.top-menu {
        position: fixed;
        top: 0;
        right: -120%;
        width: 100vw;
        height: 100vh;
        background: #FFFFFF !important;
        z-index: 3;
        display: flex;
        align-items: flex-end;
        transition: all 300ms ease;
    }
    .core-menu.top-menu.opened {
        right: 0;
    }
    .button-menu.mobile-only {
        display: inline-block;
        vertical-align: text-bottom;
    }
    .header .top-ribbon .link-to-login {
        color: #ffffff;
    }
    .header .top-ribbon.mobile-menu-opened .link-to-login,
    .page-main.scrolled .header .top-ribbon.mobile-menu-opened .link-to-login {
        color: #2E3192;
    }
    .header .top-ribbon.mobile-menu-opened .login-container, .header .top-ribbon.mobile-menu-opened .logo {
        z-index: 3;
    }
    .header .top-ribbon .logo, .page-main.scrolled .header .top-ribbon .logo, .page-main .header .top-ribbon .logo {
        display: block;
        position: relative;
        background: url('../images/svg/logo.svg') no-repeat;
        background-size: contain;
        width: 80px;
        height: 100%;
        top: 24px;
        left: 5px;
    }
    .header .top-ribbon.mobile-menu-opened .logo,
    .page-main.scrolled .header .top-ribbon.mobile-menu-opened .logo {
        background: url('../images/mobile/logo-mobile.svg') no-repeat;
    }
    .header .top-menu ul {
        flex-direction: column;
        margin: 0 10vw 30vw;
        text-align: left;
        flex-grow: 1;
    }
    .header .top-menu ul li {
        margin: 3vh 0;
    }
    .header .top-ribbon.mobile-menu-opened .top-menu ul li a {
        font-size: 7.5vw;
        color: #292F36;
        background: none;
        display: inline;
    }
    .header .top-ribbon.mobile-menu-opened .top-menu ul li a:hover,
    .header .top-ribbon.mobile-menu-opened .top-menu ul li.current a {
        text-decoration: none;
        color: #008AE8;
    }
    .header .mobile-menu-opened .top-menu ul li a:hover,
    .page-main.scrolled .header .top-ribbon.mobile-menu-opened .top-menu ul li a:hover {
        text-decoration: none;
        color: #008AE8;
    }
    .header .top-menu ul li.current a.home-link, .page-main .header .top-menu ul li.current a.home-link{
        background: none;
    }
    .playsafe-securely-wrapper .playsafe-securely p {
        color: #292F36;
    }
    .significant-wrapper .info-text p {
        color: #828282;
        font-size: 3vw;
    }
    .page-online-slots .accordion-text.core-collapsed-wrapper,
    .page-online-bingo .accordion-text.core-collapsed-wrapper {
        height: 100px;
    }
    .page-welcome-offer .top-banner-wrapper,
    .page-welcome-offer .waveWrapper {
        height: auto;
    }
    .page-welcome-offer .top-banner {
        height: auto;
        padding: 60px 0 120px;
    }
    .page-welcome-offer .top-banner .section-container {
        display: flex;
        top: 0;
    }
    .page-welcome-offer .top-banner .info-text p {
        font-size: 15px;
        text-align: justify;
        margin: 20px 0 0;
        padding: 0 20px;
        color: rgba(255,255,255,0.7);
    }
    .page-welcome-offer .top-banner .info-text a {
        color: rgba(255,255,255,0.7);
    }
    .page-welcome-offer .section-container h3.section-title {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        color: #292f36;
    }
    .how-to-claim-wrapper.section-wrapper .how-to-claim-container.section-container .how-to-claim-block {
        flex-wrap: wrap;
        text-align: center;
        margin-bottom: 40px;
    }
    .how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step {
        font-size: 4vw;
        color: #292F36;
        max-width: 100%;
    }
    .how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step span.desktop-only {
        display: none;
    }
    .how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step span.mobile-only {
        display: block;
        font-family: 'Manrope-ExtraBold', sans-serif;
        font-size: 6vw;
        margin: 20px auto 10px;
    }
    .page-welcome-offer .how-to-claim-wrapper .info-text.mobile-only p,
    .page-welcome-offer .how-to-claim-wrapper .info-text.mobile-only .terms-link {
        color: #828282;
        font-size: 12px;
        text-align: justify;
    }
    .page-welcome-offer .terms-conditions-wrapper .section-container h3.section-title {
        text-align: center;
        color: #828282;
    }
    .page-welcome-offer .terms-conditions-wrapper .terms-conditions-block {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .top-banner .section-container {
        display: none;
    }
    .top-banner .text-welcome-offer {
        font-size: 6vw;
    }
    .top-banner .text-claim-offer {
        font-size: 6vw;
    }
    .page-welcome-offer .top-banner .promo-code {
        font-size: 6vw;
    }
    .page-welcome-offer .top-banner .info-text p {
        font-size: 11px;
    }
    .page-welcome-offer .top-banner .terms-link {
        color: #ffffff;
    }
    .welcome-offer-wrapper .text-welcome-offer {
        margin: 2vh 0;
        color: #2E3192;
    }
    .welcome-offer-wrapper .banners-container {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        padding: 40px 0 0;
    }
    .welcome-offer-wrapper .text-claim-offer {
        color: #2E3192;
    }
    .welcome-offer-wrapper .welcome-content .info-text p{
        margin: 0 auto 30px;
    }
    .animated-circle-block {
        width: 50%;
    }
    .page-main .animated-circle-block {
        margin-bottom: 60px;
    }
    .circle-wrapper:not(:last-child) {
        margin-bottom: 40px;
    }
    .register-form-wrapper.section-wrapper {
        padding: 0;
    }
    .pulse-button-wrapper.mobile-only {
        display: flex;
    }
    .pulse-button-wrapper {
        margin: 0 0 30px;
    }
    .playsafe-securely-wrapper.section-wrapper {
        padding: 60px 0 30px;
    }
    .playsafe-securely-wrapper .playsafe-securely p {
        text-align: left;
    }
    .brilliant-bingo-rooms-wrapper.section-wrapper,
    .super-slot-games-wrapper.section-wrapper {
        padding: 40px 0 10px;
    }
    .super-slot-games-wrapper.section-wrapper {
        padding-bottom: 60px;
    }
    .page-faq .faqheader h2,
    .page-faq .contactheader h2 {
        font-size: 50px;
        margin: 70px 0;
    }
    .page-faq .button-contact-us,
    .page-faq .button-contact-us:hover {
        background: #333333;
        color: #ffffff;
        width: 100%;
    }
    .page-sendmail .content {
        padding: 0 10%;
    }
    .page-sendmail .button-faq,
    .page-sendmail .button-faq:hover {
        background: #333333;
    }
    .content h1 {
        font-size: 50px;
        margin: 70px 0;
    }
    .header .top-ribbon .btn-join,
    .page-main.scrolled .header .top-ribbon .btn-join {
        padding: 8px 30px
    }
    .header .top-ribbon .link-to-login,
    .page-main.scrolled .header .top-ribbon .link-to-login {
        margin-right: 10px;
    }
    .wave {
        background-size: 100% 40px;
        width: 200%;
    }
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
    .section-wrapper .section-container {
        margin: 0 7vw;
    }
    .welcome-offer-wrapper .text-welcome-offer {
        font-size: 6vw;
        margin: 3vh 0;
    }
    .welcome-offer-wrapper .text-claim-offer {
        font-family: 'Manrope-ExtraBold', sans-serif;
        font-size: 8vw;
    }
    .welcome-offer-wrapper .text-claim-offer.promo-code {
        font-size: 6vw;
        margin: 4vw 0;
    }
    .welcome-offer-wrapper .text-claim-offer.promo-code span {
        color: #8A0081;
    }
    .welcome-offer-wrapper .welcome-content .info-text p {
        font-size: 3vw;
        line-height: 4vw;
        color: #828282;
        width: 100%;
        text-align: justify;
        text-align-last: center;
    }
    .promo-banner .title {
        text-transform: uppercase;
        font-family: 'Manrope-ExtraBold', sans-serif;
        font-size: 6vw;
        margin: 10vw 0 5vw 0;
        text-align: center;
    }
    .promo-banner img {
        width: 100%;
    }
    .promo-banner .link-block {
        margin: 2vw 0 10vw 0;
    }
    .promo-banner a {
        font-size: 4.5vw;
        color: #292F36;
        text-decoration: underline;
    }
    .section-wrapper .section-container h2.section-title {
        font-size: 6vw;
        font-weight: normal;
    }
    .brilliant-bingo-rooms-wrapper.section-wrapper, .super-slot-games-wrapper.section-wrapper,
    .rewards-wrapper.section-wrapper, .playsafe-securely-wrapper.section-wrapper {
        padding: 10vw 0;
        background-size: cover;
    }
    .section-wrapper .section-container .link-wrapper {
        margin: 0;
    }
    .section-wrapper .section-container a.link {
        font-size: 4.5vw;
    }
    .brilliant-bingo-rooms-wrapper.section-wrapper .rooms-block, .super-slot-games-wrapper.section-wrapper .slots-block {
        width: 100%;
        margin: 7vw 0;
    }
    .brilliant-bingo-rooms-wrapper.section-wrapper .room, .super-slot-games-wrapper .slots-block .slot, .slots-block .slot {
        flex-basis: calc((100% - 8px) / 2);
    }
    .rewards-wrapper.section-wrapper .info-text {
        font-size: 4vw;
        width: 100%;
        text-align: justify;
        text-align-last: center;
    }
    .rewards-wrapper.section-wrapper .rewards-block {
        margin: 5vw 0;
    }
    .rewards-wrapper.section-wrapper .rewards-block .rewards-card, .rewards-wrapper.section-wrapper .rewards-block .rewards-card span {
        font-size: 4vw;
        flex-basis: 100%;
    }
    .playsafe-securely-container {
        display: flex;
        flex-direction: column;
    }
    .playsafe-securely-container .social-links {
        order: 0;
    }
    .playsafe-securely-container .social-links {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        color: #292f36;
    }
    .playsafe-securely-container .playsafe-securely {
        flex-wrap: wrap;
    }
    .playsafe-securely-wrapper .playsafe-securely-container .playsafe-securely .playsafe-securely-text {
        width: 100%;
        margin: 0;
    }
    .playsafe-securely-wrapper.section-wrapper .images-block {
        min-width: 320px;
    }
    .playsafe-securely .playsafe-securely-text p {
        font-size: 4vw;
        color: #292f36;
    }
    .section-wrapper .section-container h3.section-title {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        color: #292f36;
    }
    .section-wrapper .section-container p {
        font-size: 4vw;
        color: #292f36;
    }
    .page-main .slots-block .slot .back .slot-name, .page-online-slots .slots-block .slot .back .slot-name {
        font-size: 5vw;
    }
    .page-main .slots-block .slot .back .btn-link, .page-online-slots .slots-block .slot .back .btn-link {
        font-size: 4vw;
    }
    .page-main .slots-block .slot:hover .back, .page-online-slots .slots-block .slot:hover .back {
        padding: 0;
    }
    /************************** Mobile Online Bingo Start **************/
    .page-online-bingo .section-wrapper .section-container p {
        text-align: left;
    }
    .page-online-bingo .top-banner {
        height: 75vw;
        background: url('../images/mobile/mobile-bingo-banner.png') no-repeat top center;
        background-size: cover;
    }
    .bingo-rooms-wrapper .rooms-block .room {
        flex-basis: 100%;
        margin: 2vw 0;
    }
    .bingo-rooms-wrapper .rooms-block .room .back {
        font-size: 4vw;
        line-height: 6vw;
    }
    .bingo-rooms-wrapper .rooms-block .room .back span {
        font-size: 4vw;
    }
    .bingo-rooms-wrapper .rooms-block .room .back .room-name {
        font-size: 5vw;
    }
    .bingo-rooms-wrapper .rooms-block .room .back .btn-link {
        font-size: 4vw;
    }
    /************************** Mobile Online Bingo End **************/
    /************************** Mobile Slots Bingo Start **************/
    .page-online-slots .top-banner {
        height: 75vw;
        background: url('../images/mobile/mobile-slots-banner.png') no-repeat top center;
        background-size: cover;
    }
    .page-online-slots .section-wrapper h4.section-title {
        font-size: 5vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        color: #292f36;
    }
    .page-online-bingo h4.title,
    .page-online-slots h4.title {
        font-size: 5vw;
        color: #292f36;
    }
    .page-online-slots .our-slots-bottom-wrapper p {
        text-align: left;
    }
    .page-online-slots .btn-link.core-button-expand,
    .page-online-bingo .btn-link.core-button-expand {
        margin: auto;
        font-size: 4vw;
        width: 40vw;
    }
    /************************** Mobile Slots Bingo End **************/
    /***************************** Mobile Welcome Offer Start ***********************/
    .page-welcome-offer .top-banner {
        padding: 60px 0;
    }
    .page-welcome-offer .top-banner p {
        margin: 3vw 0;
        padding: 0;
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        color: #292f36;
    }
    .page-welcome-offer .top-banner p.yellow {
        color: #FFFF00;
    }
    .page-welcome-offer .top-banner .small-text p {
        font-size: 3vw;
        margin: 0 5vw;
        font-family: 'Manrope-Regular', sans-serif;
        text-align: justify;
        text-align-last: center;
    }
    .page-welcome-offer .top-banner .small-text a {
        color: #292f36;
        text-decoration: underline;
    }
    .page-welcome-offer .top-banner p.large-text {
        font-size: 9vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
    }
    .page-welcome-offer .top-banner .promo-code {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        padding: 0;
    }
    .page-welcome-offer .rewards-steps .separator {
        display: none;
    }
    .page-welcome-offer .rewards-steps {
        flex-wrap: wrap;
    }
    .page-welcome-offer .rewards-steps .step {
        margin: 0;
        transform: scale(0.8);
    }
    .page-welcome-offer h2.mobile-title {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
        font-weight: normal;
        text-transform: uppercase;
        text-align: center;
        color: #292f36;
        margin: 3vw 0;
    }
    .claim-steps-wrapper .what-you-get {
        margin-bottom: 10vw;
    }
    .claim-steps-wrapper .what-you-get img {
        width: 100%;
    }
    .claim-steps-wrapper .claim-steps ul {
        list-style: none;
        text-align: center;
        color: #292f36;
    }
    .claim-steps-wrapper .claim-steps .mobile-title {
        text-transform: none;
        margin-top: 10vw;
    }
    .page-welcome-offer .claim-offer-block {
        margin: 10vw 0;
        padding: 0;
    }
    .page-welcome-offer .claim-offer-block .btn-link {
        width: 50vw;
        font-size: 5vw;
    }
    .page-welcome-offer .start-rewards-wrapper p.small-text {
        font-size: 3vw;
        font-family: 'Manrope-Regular', sans-serif;
        color: #828282;
        width: 100%;
        margin: 0;
        text-align: justify;
        text-align-last: center;
    }
    .page-welcome-offer .start-rewards-wrapper p.small-text a {
        color: #292f36;
        text-decoration: underline;
    }
    .page-welcome-offer h3.section-title {
        margin: 20vw 0 0 0;
    }
    .page-welcome-offer .start-rewards-wrapper p {
        width: 100%;
        font-size: 4vw;
        color: #292f36;
    }
    .page-welcome-offer .start-rewards-wrapper .info-text {
        font-size: 3vw;
        width: 100%;
    }
    .page-welcome-offer .terms-conditions-wrapper .text {
        margin: 5vw 0 10vw 0;
    }
    .page-welcome-offer .terms-conditions-wrapper .text ol {
        margin-left: 4vw;
    }
    .page-welcome-offer .terms-conditions-wrapper .text ol li {
        font-size: 3vw;
        margin-bottom: 3vw;
    }
    .page-welcome-offer .terms-conditions-wrapper .text ol li ol {
        margin: 3vw 5vw;
    }
    /***************************** Mobile Welcome Offer End ***********************/
    /************************** Our Sites Start ******************/
    #ourSites .header .title {
        font-size: 9vw !important;
        text-align: left;
    }
    #ourSites .header .text {
        font-size: 4vw !important;
        text-align: left;
    }
    #ourSites .site {
        flex-basis: calc(100% / 3);
    }
    .siteTypeWrapper {
        margin-bottom: 20px !important;
    }
    #ourSites .siteTypeTitle {
        font-size: 5vw !important;
    }
    #ourSites .siteCardWraper {
        width: 90vw;
        left: 5vw;
        top: 15vw;
        z-index: 101;
    }
    #ourSites .siteCardWraper .siteCard {
        padding: 5vw;
    }
    #ourSites .siteCardWraper .siteCard .siteCloseBtn {
        top: -35px;
        right: 0;
    }
    #ourSites .siteCardWraper .siteCard .title {
        font-size: 6vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
    }
    #ourSites .siteCardWraper .siteCard .description {
        font-size: 15px;
        margin-bottom: 10px;
        max-height: 60vh;
        overflow-y: auto;
    }
    #ourSites .siteCardWraper .siteCard .link {
        font-size: 5vw;
        width: 50vw;
        margin: auto;
        background: #3fd16a;
        border-radius: 50px;
        text-transform: capitalize;
        font-family: 'Manrope-ExtraBold', sans-serif;
    }
    #ourSites .siteCardWraper .siteCard .description p {
        font-size: 4vw;
    }
    #ourSites .popupWraper {
        z-index: 100;
    }
    /************************** Our Sites End ******************/
    /******************** Contact Us Start *************************/
    .page-sendmail .text-block,
    .page-sendmail .send-mail-form-wrapper {
        text-align: left;
    }
    .page-sendmail h1 {
        text-align: left;
        font-size: 9vw;
        margin-top: 10vw;
    }
    .page-sendmail .send-mail-form-wrapper {
        width: 100%;
        margin: 0 auto 20vw auto;
    }
    .page-sendmail h2 {
        font-size: 4vw;
    }
    .page-sendmail .text-block .phone-number-wrapper p.large-text {
        font-size: 4vw;
    }
    .page-sendmail .text-block .phone-number-wrapper p.large-text.phone-number {
        font-size: 5vw;
    }
    .page-sendmail .text-block .phone-number-wrapper p {
        font-size: 4vw;
    }
    .page-sendmail .text-block .phone-number-wrapper p.space-bottom {
        margin-bottom: 5vw;
    }
    .page-sendmail .send-mail-form-wrapper textarea::placeholder,
    .page-sendmail .send-mail-form-wrapper input::placeholder {
        color: #adadad;
    }
    .page-sendmail .button-submit {
        width: 40vw;
        margin: auto;
        text-align: center;
    }
    .page-sendmail .button-faq, .page-faq .button-contact-us {
        display: block;
        background: #3fd16a;
        color: #ffffff;
        text-align: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 3vw 0;
        text-decoration: none;
        margin: 0;
        border-radius: 0;
        line-height: normal;
        z-index: 10;
    }
    /******************** Contact Us End *************************/
    /************************************* Terms page Start ***********************************/
    .page-terms .content, .page-gamehelp .content, .page-gamehelp90 .content,
    .page-gamehelp52 .content {
        margin: 0 5%;
    }
    .page-terms ol#numList > li {
        display: block;
        counter-increment: item;
        margin-bottom: 0.6em;
        padding-top: 10px;
    }
    .page-terms ol#numList > li:before {
        content: counters(item, ".") ". ";
        display: inline;
        padding-right: 0;
        font-weight: normal;
    }
    .page-gamehelp .content h2, .page-terms .content h2, .page-gamehelp90 .content h2,
    .page-gamehelp52 .content h2 {
        display: inline;
    }
    .page-gamehelp img, .page-gamehelp90 img, .page-gamehelp52 img {
        max-width: 100%;
    }
    .page-gamehelp90 ul, .page-gamehelp90 ol {
        margin-left: 20px;
    }
    .page-service-update-faq .content {
        margin: 20px 10vw;
    }
    .bankingLeft {
        width: auto !important;
    }
    .bankingLeft img {
        max-width: 100%;
    }
    .page-terms a {
        word-break: break-word;
    }
    /************************************* Terms page End ***********************************/
    .footer .footer-info {
        flex-direction: column;
        padding: 0 0 10vw 0;
    }
    .footer .footer-info .helpful-links ul.footer-privacy-links li {
        text-align: center;
    }
    .footer .footer-info .helpful-links ul.footer-privacy-links li a {
        font-size: 5vw;
        font-family: 'Manrope-ExtraBold', sans-serif;
    }
    .footer .footer-info .core-footer-licensing-information-wrapper {
        width: 100%;
        padding: 0 5vw;
    }
    .footer #paymentScroll {
        width: 100% !important;
    }
    .footer #security {
        width: 100% !important;
    }
}

/* Small devices (phones, 600px and down) */

@media only screen and (max-width: 640px) {
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
    .circle-wrapper .circle {
        width: 150px;
        height: 150px;
    }
    .welcome-offer-wrapper .banners-container img {
        width: 100px;
    }
}

@media only screen and (max-width: 425px) {
    .top-banner .text-claim-offer {
        font-size: 9vw;
        padding: 0 20px 10px;
        line-height: 1.2;
    }
    .how-to-claim-wrapper.section-wrapper {
        padding: 0;
    }
    .how-to-claim-wrapper.section-wrapper .how-to-claim-container .how-to-claim-step {
        max-width: 250px;
    }
    .playsafe-securely-wrapper.section-wrapper .images-block {
        min-width: 280px;
    }
}

/*************************** Mobile End ******************************/