@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
*:before,
*:after {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 12px;
    background: #303030;
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #303030 0%, rgba(15, 48, 79, 1) 100%);
}

 ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #303030 0%, rgba(15, 48, 79, 1) 100%);
}

html {
    padding: 0;
    margin: 0;
    height: 100%;
}

img {
    max-width: 100%;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
    color: #fff;
    background: #0f0f0f;
    font-family: 'Rubik', sans-serif;
}

.container {
    max-width: 1400px;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/** Header **/

.t-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.header-top {
    background: #000;
    color: #fff;
    padding: 4px 0;
    border-bottom: 1px solid #303030;
}

.h_topleft img {
    max-width: 160px;
}

.h_topleft a {
    color: #fff;
    display: inline-block;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 13px;
}

.h_topleft a.header-live {
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}

.h_topleft a i {
    font-size: 17px;
    vertical-align: middle;
    margin-right: 5px;
}

.h_topleft a:hover {
    color: #c410ff;
}

.header-live::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 50%;
    transform: translate(0, -50%);
    background-color: #FFFFFF;
    vertical-align: middle;
}

.h_right {
    float: right;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login_head {
    margin-right: 10px;
    display: flex;
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 3px 3px;
    align-items: center;
}
.login_head img{
    height: fit-content;
}
.login_head input {
    padding: 0;
    background: #ffffff;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #b2b2b2;
}

.login_head input::placeholder {
    color: #d6d6d6;
    text-transform: uppercase;
    font-size: 12px;
}

.forgot-pw {
    color: #b2b2b2;
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 7px;
}

.forgot-pw:hover {
    color: #ffa200;
}

button.def-btn {
    background: none;
    border: 1px solid #dfc671;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 3px;
    padding: 6px 3px;
    width: 113px;
    /* height: 27px; */
    margin-right: 10px;
    font-weight: 600;
}

button.def-btn:hover {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000000;
}

button.def-btn.reg {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    border: 1px solid #815a2b;
}

.menu-col {
    position: inherit;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.header-menu {
    background: #000;
    height: 50px;
}

.m_item a.link-item {
    color: #e2cf79;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 0px 5px;
    padding-right: 25px;
}

.m_item a.link-item:hover,
.m_item a.link-item.active {
    color: #949494;
    text-decoration: none;
}
.m_item a.link-item:hover img,
.m_item a.link-item.active img{
    filter: grayscale(1);
}

.m_item:hover a.link-item {
}

.dropdown_menu {
    position: absolute;
    z-index: 9;
    background: rgb(0 0 0 / 85%);
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    visibility: hidden;
}

.m_item:hover .dropdown_menu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.dropitem {
    max-width: 1400px;
    margin: auto;
}

.dropitem a {
    transition: all 0.3s;
    padding: 10px 19px;
    display: inline-block;
}

.dropitem a img {
    max-width: 150px;
    margin: 0 auto;
}

.dropitem a:hover {
    background: rgb(69 69 69 / 60%);
    transition: all 0.3s;
}

.dropitem a:hover .mn-text {
    color: #f1c40f;
}

.mn-text {
    display: block;
    color: #e2cf79;
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
}

.header_menu {
    width: 100%;
}

.main-nav {align-items: center;}


/* After Login */

.user_name {
    display: inline-block;
    margin: 0 5px;
}

.user_name span {
    padding-left: 5px;
}

.dropdown_wrap {
    position: relative;
    display: inline-block;
}

.dropdown-option {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2;
    top: 35px;
    left: 0;
    width: 125px;
    text-align: center;
    border: 1px solid #e2cf79;
    transition: all 0.3s;
    border-radius: 4px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
}

.dropdown_wrap:hover .dropdown-option {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    z-index: 2;
    transform: none;
}


/*balance*/

.dropdown-balance {
    display: none;
    position: absolute;
    width: 400px;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    z-index: 2;
    text-align: center;
    border: 1px solid #e2cf79;
    left: auto;
    right: 0;
}

.balance-drop:hover .dropdown-balance {
    display: block;
}

.summary-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 9px 0px;
    font-size: 14px;
    padding-bottom: 10px;
}

.main-item,
.main-amount {
    background: linear-gradient(to bottom, rgba(157, 54, 209, 1) 0%, rgba(66, 9, 93, 1) 100%);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
}

.main-item,
.main-amount {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
}

.platform-item {
    text-transform: uppercase;
    font-weight: 500;
    padding: 0px 10px;
}

.balc {
    display: inline-block;
    margin: 0 3px;
}

.amount-item {
    text-align: right;
    height: 25px;
    padding: 0px 10px;
}

button.btn-in {
    display: inline-block;
    border: none;
    margin: 0 5px;
    height: 100%;
    padding: 0px 10px;
    background: #78b714;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

button.btn-out {
    display: inline-block;
    border: none;
    margin: 0 2px;
    height: 100%;
    padding: 0px 10px;
    background: #b71414;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}


/*balanceEND*/


/*addmsgEND*/

.download_icon_main {
    display: inline-block;
}

.download_icon {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    margin-right: 7px;
}


/*language*/

.lang-box {
    top: 10px;
    right: 8px;
    display: inline-block;
}

button#language-menu {
    color: #dcdcdc;
    font-size: 13px;
    padding: 0;
}

.lang-box button img {
}

.dropdown-menu.language {
    padding: 2px 0;
    margin: 0;
    min-width: 48px;
    font-size: 13px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    left: 0px!important;
    z-index: 99999;
}

.dropdown-menu.language .dropdown-item {
    padding: 3px 10px;
    color: #ffffff;
    text-align: left;
}

.dropdown-menu.language .dropdown-item:hover {
    background-color: #262626;
}

.dropdown-menu.language .dropdown-item img {
    max-width: 23px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown_wrap:hover .dropdown-option {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    z-index: 2;
    transform: none;
}

.dropdown-option ul {
    padding: 0;
    margin: 0
}

.dropdown-option ul li {
    list-style-type: none;
}

.dropdown-option ul li a {
    color: #fff;
    padding: 6px 1px;
    display: block;
    font-size: 13px;
}

.dropdown-option ul li a:hover {
    background: #979797;
    color: #fff;
}


/* end */


/* STEP */

.stepWrapper {
    margin: 0 auto;
    color: #FFF;
}

.stepDiv {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 180px;
    cursor: pointer;
}

.stepDiv h3 {
    font-size: 22px;
    margin-bottom: 0px;
    color: #e2cf79;
    font-weight: 500;
}

.stepDiv p {
    font-size: 12px;
}

.step-text {
    width: 45%;
    margin-left: 65px;
    margin-top: 60px;
    text-transform: uppercase;
}

.step1 {
    background: url(../images/common/index/1.png) no-repeat;
    color: #FFF;
    /* height: 138px; */
    width: 25%;
    background-size: 100%;
}

.step1:hover {
    filter: grayscale(1);
}

.step2 {
    background: url(../images/common/index/2.png) no-repeat;
    color: #FFF;
    width: 25%;
    background-size: 100%;
}

.step2:hover {
    filter: grayscale(1);
}

.step3 {
    background: url(../images/common/index/3.png) no-repeat;
    color: #FFF;
    width: 25%;
    background-size: 100%;
}

.step3:hover {
    filter: grayscale(1);
}

.step4 {
    background: url(../images/common/index/4.png) no-repeat;
    color: #FFF;
    width: 25%;
    background-size: 100%;
}

.step4:hover {
    filter: grayscale(1);
}


/* VIDEO */

.video-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.video-wrapper {
    max-width: 70%;
    margin: 0 auto;
}

.video-title {
    margin-bottom: 10px;
}

.video-title i {
    margin-right: 10px;
}

.video-text {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.t-body {
    padding-top: 108px;
}

.slider-section{
    position: relative;
}
.annoucement {
    padding: 5px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #00000047;
}

.icon-annoucement {
    color: #4a87bc;
}

.game-wrapper {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin-bottom: 25px;
}

.game-local {
    position: relative;
    transition: all ease-in 0.3s;
}

.game-local:hover {
    transform: translate(0, -10px);
}

.game-local img {
    width: 100%;
}

.game-local h4 {
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    bottom: 0;
    width: 100%;
    color: #fff;
    background: url(../images/common/index/hover_game.png)no-repeat center;
    background-size: cover;
    padding: 10px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}


/* DOWNLOAD lobby */

.download-lobby-sec {
    background: url(../images/common/index/banner-download.png)no-repeat center;
    height: 514px;
    background-size: contain;
}

.download-lobby-title {
    text-align: center;
}

.download-lobby-title h3 {
    color: #ca2525;
    font-weight: 700;
    text-shadow: 1px 1px 4px #0000008f;
}

.download-lobby-title p {
    color: #000;
    font-size: 12px;
    width: 50%;
    margin: 0 auto;
}

.download-lobby-box {
    width: 39%;
    float: right;
    position: absolute;
    right: 112px;
    top: 111px;
}

.download-lobby-center {
    width: 68%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 46px;
}

.download-lobby-col {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 43px;
}

.download-lobby-col a {
    display: block;
    background: #ca2525;
    color: #fff;
    margin: 0 auto;
    margin-top: 10px;
    width: 80%;
    padding: 5px;
    border-radius: 7px;
}

.download-lobby-col a i {
    margin-right: 10px;
}

.join-bar {
    background: linear-gradient(to bottom, rgba(85, 4, 4, 1) 1%, rgba(17, 1, 1, 1) 100%);
    border: 1px solid #ff0000;
    border-radius: 5px;
    padding: 10px 25px;
    margin-top: 50px;
    box-shadow: 0 0 12px 2px #ff0000;
    font-size: 12px;
    text-align: center;
}

.join-bar p {
    margin: 0;
}

.step-box-1 {
    background: url(../images/common/index/step1.png)no-repeat center;
    display: block;
    height: 112px;
    background-size: 100% 100%;
    padding: 10px;
}

.step-box-2 {
    background: url(../images/common/index/step2.png)no-repeat center;
    display: block;
    height: 112px;
    background-size: 100% 100%;
    padding: 10px;
}

.step-box-3 {
    background: url(../images/common/index/step3.png)no-repeat center;
    display: block;
    height: 112px;
    background-size: 100% 100%;
    padding: 10px;
}

.step-box-4 {
    background: url(../images/common/index/step4.png)no-repeat center;
    display: block;
    height: 112px;
    background-size: 100% 100%;
    padding: 10px;
}

.left-text {
    float: left;
    position: absolute;
    bottom: 6px;
    left: 99px;
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
}

.right-text {
    position: absolute;
    right: 25px;
    color: #000;
    width: 50%;
    top: 20px;
}

.right-text h4 {
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-weight: 700;
    width: 100%;
    display: block;
    font-family: 'Rubik', sans-serif;
}

.right-text p {
    margin: 0;
    font-size: 11px;
    width: 100%;
}


/* LIVESTREAM */

.live-stream {
    background: url(../images/common/index/bg-sports.jpg)no-repeat center;
}

.live-stream iframe {
    /* width: 90%; */
    margin: 0 auto;
    border: none;
    background: #ffffff1f;
    padding: 20px 0;
}


/* PROMOTION SLIDE */

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    /* -webkit-box-orient: vertical; */
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    position: relative
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, .5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swiper-container.one {
    padding-top: 40px;
    text-align: center;
}

.swiper-container.one .swiper-slide {
    padding: 0 43px;
}

.swiper-container {
    width: 100%;
}

.swiper-slide img {
    display: block;
    margin: auto;
    width: 100%;
}

.swiper-slide {
    width: 390px;
    height: auto;
    padding: 0 15px;
}

.two .swiper-slide {
    width: 300px;
}

.swiper-slide img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide .slider-image .preview-icon {
    z-index: -1;
    width: calc(100% - 30px);
}

.swiper-slide.swiper-slide-active .slider-image:hover .preview-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}


/* ABOUT LOBBY */

.about-lobby-content {
    background: #fff;
    height: 166px;
}

.about-text-title {
    color: #be0000;
    text-transform: capitalize;
    font-weight: 600;
}

.about-lobby-content p {
    color: #000;
    font-size: 12px;
}

.result-content {
    min-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background: #fff;
    padding: 13px;
}

.result-table .table-column {
    flex: 0 0 11.1%;
    max-width: 11.1%;
}

.result-table .table-column>div {
    border: 0.5px solid #13b3e5;
    width: 40px;
    height: 40px;
}

#myCarousel1 {
    margin-top: 0;
}


/* BETTABLE */

.casino-1 {
    background: url(../images/common/index/live-casino.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.casino-2 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-2.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casino-3 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-3.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casino-4 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-4.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casino-5 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-5.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casino-6 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-6.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casino-7 {
    background: #f3f3f3 url(../images/casino-slide/casino-slide-7.png);
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 100px;
    padding: 15px;
}

.casinoResult-title {
    display: table;
    width: 70%;
    margin: 10px 0;
}

.casinoResult-title {
    display: table;
    width: 70%;
    margin: 10px 0;
}

.casinoResult-title img {
    max-width: 75px;
}

.casinoResult-title>div {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.resultTable {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    background-color: #fff;
    margin-top: 5px;
}

.resultR-blc {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.resultR-red {
    background-color: #dd0000;
    color: #fff;
    border-color: #dd0000;
}

.resultR-green {
    background-color: #298c00;
    color: #fff;
    border-color: #298c00;
}

.circle {
    padding: 0px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    text-transform: uppercase;
}

.home-title {
    padding: 10px 0 7px;
    font-size: 18px;
    color: #222;
    font-weight: bold;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.casino-slide {
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: inline-block;
    position: relative;
    background-color: #f3f3f3;
}

.result {
    border: 1px solid #13b3e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resultB-p {
    border-color: #dd0000;
    color: #dd0000;
}

.resultB-b {
    border-color: #1818ff;
    color: #1818ff;
}

.resultB-t {
    border-color: #298c00;
    color: #298c00;
}

.btn-casino {
    color: #222;
    border-radius: 2px;
    position: absolute;
    bottom: 10%;
    left: 10%;
    padding: 7px 35px;
    display: inline-block;
    font-weight: bold;
    background: #fcb813;
    text-transform: uppercase;
    border-radius: 8px;
}

.gold-gradient01 {
    background: #fcb813;
}

.casinoResult-game {
    text-align: right;
    color: #888;
    text-transform: capitalize;
    font-weight: 200;
}

.baccaratResult {
    height: 26px;
}

.result-title {
    color: #be0000;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
}

.result-content .swiper-container {
    width: 100%;
}

.result-content .swiper-slide {
    width: 100%;
    height: 300px;
}

.swipe1 {
    background: url(../images/common/index/live-casino.jpg)no-repeat;
    background-size: cover;
    height: 300px;
}

.btn-theme {
    background: #df9112;
    background: linear-gradient( 180deg, #f1f029 0, #ffb53c);
    transition: all .5s ease-in-out!important;
}

.table-column {
    flex: 0 0 11.1%;
    max-width: 11.1%;
}

.table-column>div span b.player {
    border-color: #e3342f;
    background: #e3342f;
}

.table-column>div span b.banker {
    border-color: #3037f4;
    background: #3037f4;
}

.table-column>div span b.tie {
    border-color: #31af00;
    background: #31af00;
}

.table-column>div span {
    width: 24px;
    height: 24px;
    font-weight: 700;
}

.table-column>div span b {
    border-radius: 50%;
    border: 2px solid #fff;
    width: 100%;
    height: 100%;
    color: #fff;
}

.index-title {
    padding-top: 150px;
}


/* FEATURE */

.feature-sec {
    margin-top: 150px;
}

.feature-box {
    text-align: center;
}

.feature-box img {
    margin-bottom: 30px;
    min-height: 150px;
}

.feature-big {
    color: #fe0000;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
}

.feature-small {
    color: #aeaeae;
    font-size: 10px;
    text-align: left;
}

.feature-bottom {
    margin-top: 100px;
    margin-bottom: 100px;
}


/* FOOTER */

.t-footer {
    background: #1a1a1a;
}

.footer-sec {
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer-main-title{
    color: #565656;
    text-transform: uppercase;
    font-size: 28px;
}
.footer-sub-title {
    color: #565656;
    text-transform: uppercase;
    font-size: 20px;
}
.footer-title {
    color: #565656;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-sec ul {
    padding-left: 0;
    list-style: none;
    display: flex;
}

.footer-sec ul li {
    padding-right: 10px;
}

.footer-last {
    text-align: center;
    background: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-last ul {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding-left: 0;
}

.footer-last ul li {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-last ul li:last-child {
    border: none;
}

.footer-last ul li a {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
}

.footer-last ul li a:hover {
    color: #e2cf79;
}

.copyright-text {
    align-self: center;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
}

.seo-sec {
    padding-top: 25px;
    border-bottom: 1px dotted #aeaeae;
    padding-bottom: 25px;
}

.seo-sec p {
    font-size: 12px;
    color: #565656;
}


/* SPORTS */

.sport-sec {
    
}

.sport-sec .nav-tabs {
    border: none;
}

.sport-sec .nav-tabs .nav-item.show .nav-link,
.sport-sec .nav-tabs .nav-link.active {
    background: url(../images/common/sports/btn-red.png)no-repeat center;
    border: none;
}

.sport-sec .nav-tabs .nav-link {
    background: url(../images/common/sports/btn-black.png)no-repeat center;
    border: none;
    height: 68px;
    width: 242px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sport-sec .tab-pane {
    background: #aeaeae;
    height: 600px;
    padding: 10px;
}


/* PRODUCT */

.game-container {
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.game-box img {
    width: 100%;
}

.game-box a {
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.game-box a:hover {
    top: -10px;
}


/* BLOG */

.blog-sec {
    padding-top: 20px;
    padding-bottom: 20px;
}

.blog-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #dfc671;
    border-radius: 5px;
    background: #131313;
}

.blog-title-box {
    border: 1px solid #dfc671;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.blog-title-box i {
    font-size: 28px;
    color: #e2cf79;
    margin-left: 10px;
    margin-right: 10px;
}

.blog-boxer {
    display: grid;
    grid-template-columns: 40% 60%;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 25px 0;
    grid-gap: 10px;
}

.blog-content-page {
    margin-bottom: 10px;
}

.blog-boxer img {
    width: 100%;
}

.blog-boxer h4 {
    color: #e2cf79;
    font-weight: 600;
    font-size: 26px;
}

.blog-time-title {
    color: #166138;
}

.blog-time-title p {
    color: #e2cf79;
}

.blog-time-title p i {
    margin-right: 10px;
    color: #e2cf79;
}

.blog-content {
    color: #fff;
    margin-bottom: 15px;
    max-height: 95px;
    overflow: auto;
    font-size: 13px;
}

.blog-boxer .moreinfo_btn {
    display: flex;
    align-items: center;
    width: 23%;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.blog-boxer .moreinfo_btn:hover {
    color: #e2cf79;
}

.blog-boxer_inner {
    display: grid;
    padding-bottom: 10px;
}

.blog-boxer .moreinfo_btn i {
    background: #fff;
    color: #000000;
    border-radius: 50%;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    padding: 2px;
    padding-left: 5px;
}

.seperate-line {
    height: 1px;
    width: 80%;
    margin: 0 auto;
    background: #dfc671;
    border-radius: 10px;
}

.moreinfo_btn {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    text-transform: uppercase;
    border: none;
    width: 100px;
    height: 30px;
    font-size: 13px;
}


/* INFO */

.info-bg {
    min-height: 887px;
}

.info-nav ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.info-content {
    margin-top: 20px;
}

.info-content p {
    font-size: 13px;
}

.info-title h5 {
    color: #e2cf79;
    text-transform: uppercase;
    position: relative;
}

.info-title h5::after {
    content: "";
    width: 15%;
    height: 3px;
    background: #e2cf79;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.info-nav ul li a {
    color: #fff;
    width: 100%;
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    border-radius: 39px;
    padding: 17px 18px;
    background: #21262a;
    margin-bottom: 5px;
    border: 1px solid #3f4853;
}

.info-nav ul li a.active,
.info-nav ul li a:hover {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #ffffff;
    border: 1px solid #f9c15e;
}

.info-center {
    background: #21262a;
    border-radius: 20px;
    padding: 20px;
    min-height: 700px;
}

.info-content ul {
    font-size: 13px;
}

.info-center .accordion-button {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    border-radius: 6px;
    color: #000000;
    width: 100%;
    text-align: initial;
    font-size: 14px;
    padding: 12px;
    border: none;
}

.info-wrapper {
    font-size: 13px;
    margin-top: 20px;
}

.info-center .accordion-item {
    background: none;
    margin-bottom: 10px;
}

.info-center .accordion-button::after {
    background-image: url(../images/common/caret-down-solid.svg);
    filter: invert(1);
    width: 21px;
    height: 15px;
    background-position-y: -10px;
}


/* CONTACT */

.contact-box {
    border-radius: 5px;
    text-align: center;
    position: relative;
    margin-top: 30px;
    font-size: 13px;
}

.contact-icon {
    width: 100%;
    display: block;
    margin-bottom: 20px!important;
}

.contact-icon img {
    max-width: 60px;
}

.contact-link div:first-child {
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-box a {
    color: #fff;
}

.contact-box a i {
    margin-left: 10px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
}


/* BANK */

.bank-table tr.trans td {
    background: #13131375;
    color: #fff;
    border: 1px solid #f9c15e;
    padding: 2px;
    font-size: 15px;
    font-weight: 200;
}

.bank-table tr.trans1 td {
    background: #13131375;
    color: #fff;
    border: 1px solid #f9c15e;
    padding: 2px;
    font-size: 13px;
}

.bank-table tr.dwbox td {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #fff;
    border: 1px solid #f9c15e;
    padding: 2px;
}


/* DOWNLOAD */

.about-sec {
    padding: 45px 0;
    background: #0f0f0f;
}

.about-menu {
    overflow: hidden;
    text-align: center;
    max-width: 70%;
    margin: auto;
    box-shadow: 0 5px 10px 0 rgba(9, 13, 26, 0.1);
}

.about-menu a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 37px!important;
    background: #21262a;
    margin-bottom: 5px;
    text-align: initial;
    border: 1px solid #3f4853;
}

.about-menu a:hover,
.about-menu a.active {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #ffffff!important;
}

.about-menu.nav {
    display: block;
}

.about-menu a:last-child::after {
    content: none;
}

.about-container {
    color: #2b2929;
}

.ab-title {
    color: #4e2268;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.absub-title {
    color: #4e2268;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

button.btn-tnc {
    background: linear-gradient(-88deg, #51236c, #873eb1 60%);
    color: #fff;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
}

button.btn-tnc.collapsed {
    background: #363636;
    color: #fff;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #fff;
    color: #333;
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

.tnc-body ol {
    padding-left: 15px;
}

.tnc-body ol li {
    padding-bottom: 8px;
}

.dl_box {
    max-width: 200px;
    position: relative;
    text-align: center;
    margin: auto 15px;
    display: inline-block;
}

.gname {
    color: #fdd738;
    font-size: 17px;
}

.download_btn {
    color: #000000;
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    border-radius: 25px;
    padding: 8px 2px;
    display: block;
    width: 170px;
    text-align: center;
    margin: 3px auto 10px;
    font-size: 16px;
}

.download_btn:hover {
    color: #e2cf79;
    filter: brightness(1.15);
    transition: linear 0.5s;
}

.access-info-box {
    max-width: 600px;
    margin: 20px auto;
    font-size: 13px;
}

.mob-formTable tr th {
    border: 1px solid #e2cf79;
    padding: 8px;
    color: #000;
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
}

.mob-formTable tr td {
    background: rgb(22 22 22 / 80%);
    border: 1px solid #e2cf79;
    padding: 8px;
    color: #fff;
}

input.change-pw {
    padding: 5px;
    margin: 7px 0;
    border-radius: 3px;
    border: 1px solid #c5c5c5;
    width: 100%;
}

.categ-content .tab-pane {
    position: relative;
    overflow: hidden;
    border: 3px solid #4f2066;
    border-radius: 3px;
    background: #4f2066;
}

.panebox {
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    min-height: 535px;
}

.tab-pane video {
    position: absolute;
    left: 50%;
    top: 50%;
    /* The following will size the video to fit the full container. Not necessary, just nice.*/
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.download-container {
    text-align: center;
}

.about-sec .tab-content {
    background: #1f1f1f;
    border: aliceblue;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}


/** Deposit **/

.about-menu a.bdrx::after {
    content: none;
}

.menu_title {
    color: #e2cf79;
    font-weight: 600;
    background: none;
    padding: 10px;
    text-transform: uppercase;
}

.wallet-balance-wrapper {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e2cf79;
    margin-bottom: 25px;
}

.balance-table {
    margin: -1px;
    width: 101%;
}

.balance-table tr td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e2cf79;
    background: #1f1f1f;
}

.bal_remain {
    font-weight: 600;
    color: #e2cf79;
}

.wallet-wrapper {
    background: #1f1f1f;
    padding: 35px;
    border-radius: 5px;
}

ul.payment-tabs {
    border-bottom: none;
    margin-bottom: 30px;
    justify-content: center;
}

.nav-tabs.payment-tabs .nav-item.show .nav-link,
.nav-tabs.payment-tabs .nav-link.active {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000000;
    border: none;
}

.nav-tabs.payment-tabs .nav-link {
    border-radius: 50px;
    border: 1px solid #3f4853;
    background: #21262a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    padding: 7px 33px;
    margin: 0 10px;
}

.wallet-form {
    display: grid;
    grid-template-columns: 220px auto;
    grid-gap: 17px 5px;
    font-size: 15px;
    margin: auto;
}

.wallet-form input,
.wallet-form select {
    border-radius: 4px;
    background: #fff;
    color: #000;
    border: 1px solid #ffffff;
    padding: 0px 15px;
    height: 37px;
    width: 100%;
}

.wallet-form input:focus,
.wallet-form select:focus {
    border: 1px solid #fdbd00;
    outline: none;
}

input:disabled {
    background: #E8E8E8;
}

.wfield {
    position: relative;
}

.smx {
    font-size: 14px;
    margin-left: 27px;
}

input.date-field {
    width: 40%;
}

select.time-field {
    width: 29%;
}

.optional {
    font-size: 15px;
}

.upload-wrap {
    position: relative;
}

.upload-btn {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

input.upload-field {
    width: 72%;
}

button.upload-button {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    border: none;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    padding: 0px 10px;
    width: 27%;
    border-radius: 4px;
    height: 37px;
    cursor: pointer;
}

.wlabel-pro {
    grid-column: 1/3;
}

.agree-field input[type="radio"] {
    vertical-align: middle;
    width: 20px;
    margin-right: 10px;
}

input.transfer-field {
    width: 70%;
}

button.max-btn {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 0px 10px;
    width: 29%;
    border-radius: 4px;
    height: 38px;
    margin-left: 4px;
}

button.max-btn:hover,
button.max-btn:focus {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    outline: none;
    box-shadow: none;
}

table.bank-info-table {
    font-size: 16px;
    max-width: 750px;
    margin: auto;
    margin-bottom: 30px;
}

table.bank-info-table tr td {
    border: 1px solid #D5D5D5;
    text-align: center;
    padding: 4px;
    width: 50%;
}

table.bank-info-table tr th {
    border: 1px solid #D5D5D5;
    text-align: center;
    padding: 4px;
    background: #3c3c3c;
    color: #fff;
}

.trans-table {
    margin-top: 35px;
    font-size: 13px;
}

.trans-table table {
    text-align: center;
    width: 100%;
}

.trans-table table tr th {
    border: 1px solid #e2cf79;
    padding: 4px;
    color: #000;
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    font-weight: 400;
}

.trans-table table tr td {
    border: 1px solid #e2cf79;
    padding: 4px;
    cursor: pointer;
}

.trans-table table tr:nth-child(odd) {
    background: #818181;
    color: #000;
}

.agree-field {
    display: flex;
    align-items: center;
}


/** Register **/

.register-sec {
    margin-top: 30px;
    margin-bottom: 30px;
}

.fg-wrapper {
    background: #1f1f1f;
    padding: 30px;
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: 30% auto;
    grid-gap: 30px;
    color: #fff;
    border-radius: 5px;
}

.fg-form {
    max-width: 100%;
}

.enter-remind {
    border: 1px solid #e2cf79;
    padding: 20px;
    font-size: 17px;
    height: 120px;
    color: #e2cf79;
    display: flex;
    align-items: center;
}

.bk-title {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    margin-bottom: 15px;
}

.regfield {
    display: grid;
    grid-template-columns: 145px auto;
    grid-gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.rgfeild {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.rgfeild.date_input input {
    width: 100%;
}

.regfield .label {
    align-self: center;
}

span.manred {
    color: red;
    float: right;
}

.regfield input {
    font-size: 13px;
    padding: 3px 10px;
    border: 1px solid #d6d6d6;
    height: 34px;
    width: 100%;
}

.vericode {
    position: absolute;
    top: 5px;
    right: 7px;
}

button.reg-btn {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    padding: 3px 20px;
    height: 34px;
}

button.reg-btn:hover {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #fff;
}

.benefit-box {
    border: 1px solid #e2cf79;
    padding: 20px;
}

.benefit-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e2cf79;
}

.benefit-box ul {
    padding: 0;
    padding-left: 15px;
    color: #ffffff;
    font-size: 13px;
}

.benefit-box ul li {
    padding-bottom: 5px;
}

.accept-field {
    font-size: 13px;
    color: #c7c7c7;
}

.regbn {
    grid-column: 1/3;
}

.notice-sec {
    background: #00a0df;
}

.annouce-in {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    height: 33px;
    background-color: #00a0df;
    padding: 10px;
}

.icon {
    color: #fff;
    font-size: 18px;
}

.runningtext {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    width: 100%;
    padding-left: 10px;
    color: #fff;
    font-size: 14px;
}

.upload_rep {
    border: none;
}

.input_date {
    width: 100%;
}

.mainwallet_custom {
    margin-bottom: 0px;
}

.btn_transfer_all {
    width: 102px;
    margin-left: 10px;
    margin-top: 0px;
}

.mainwallet_text {
    font-weight: bold;
    font-size: 16px;
    padding-left: 0px;
}

.step-tab {
    position: relative;
    text-align: center;
    max-width: 240px;
    margin: 0px auto 20px;
    display: flex;
    justify-content: space-between;
}

span.step-round {
    position: relative;
    z-index: 2;
    background: #E1E1E1;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

span.step-round a {
    color: #000;
    display: block;
    width: 100%;
}

span.step-round.active {
    background: #e2cf79;
}

.step-line {
    position: absolute;
    top: 49%;
    width: 100%;
    height: 1px;
    background: #c5c5c5;
}

.regfield select {
    font-size: 13px;
    padding: 3px 10px;
    border: 1px solid #d6d6d6;
    height: 34px;
    width: 100%;
}

select.phone-code {
    width: 35%;
}

input.phone-input {
    width: 64%;
}

.rgfeild.dob {
    display: grid;
    grid-template-columns: 30% 38% 30%;
    grid-gap: 3px;
}

select.dob-input {
    padding: 4px;
}

.congratz-wrap {
    text-align: center;
}

.congrat {
    font-size: 18px;
    font-weight: 700;
    padding: 10px;
}


/*** Slots ***/

.slots-sec {
    margin-bottom: 0px;
    display: block;
    margin: 0px auto;
    position: relative;
}

.slots-charac {
    position: relative;
}

.slots-wrapper {
    z-index: 2;
    position: relative;
}

.slots-wrapper a {
    display: block;
    width: auto;
    height: auto;
    z-index: 1;
    text-align: center;
    transition: all ease-in 0.3s;
}

.slots-wrapper a:hover {
    transform: scale(1.1);
}

.slots-wrapper img {
    top: 0;
    left: 0;
    overflow: hidden;
}

.slots-wrapper a:hover>.close_img {
    opacity: 0;
}

.slots-wrapper a:hover>.open_img {
    opacity: 1;
}

.slots-wrapper a .open_img {
    opacity: 0;
}

.slots-box.actives a>.close_img {
    opacity: 1;
    /* filter: grayscale(1); */
}

.slots-box.actives a>.open_img {
    opacity: 1;
}

.rows1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    margin: 15px 0;
}

.rows2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: auto;
}

.slots-box {
    position: relative;
}

.stt {
    margin-top: 25px;
}

.sport-sec .lby-bnr {
    top: -38px;
    position: relative;
}

.lby-bnr {
    position: relative;
}

.rows3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin: 15px 0;
}

.rows3 img {
    /* height:340px; */
    display: block;
    margin: 0px auto;
}

.modal-dialog {
    max-width: 861px;
}

.modal-header {
    padding: 10px 15px 10px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    background: rgba(26, 8, 1, 1);
    background: -moz-linear-gradient(top, rgba(26, 8, 1, 1) 0%, rgba(75, 9, 17, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(26, 8, 1, 1)), color-stop(100%, rgba(75, 9, 17, 1)));
    background: -webkit-linear-gradient(top, rgba(26, 8, 1, 1) 0%, rgba(75, 9, 17, 1) 100%);
    background: -o-linear-gradient(top, rgba(26, 8, 1, 1) 0%, rgba(75, 9, 17, 1) 100%);
    background: -ms-linear-gradient(top, rgba(26, 8, 1, 1) 0%, rgba(75, 9, 17, 1) 100%);
    background: linear-gradient(to bottom, rgba(26, 8, 1, 1) 0%, rgba(75, 9, 17, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1a0801', endColorstr='#4b0911', GradientType=0);
}

.modal-title {
    color: #fff;
    text-align: center;
    line-height: 40px;
}

.close span {
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
    display: block;
    line-height: 19px;
}

.close {
    opacity: 1;
}

.modal-content {
    border-radius: 18px;
}

.ag-guide {
    padding: 0px 20px 20px;
    color: #fff;
}


/* promo */

.mix {
    display: none;
}

.promo-sec {
    padding: 30px 0;
}

.filter-menu-bar {
    text-align: center;
    margin-bottom: 20px;
}

.filter-menu-bar ul li a {
    position: relative;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 30px;
    background: #000;
    border: 1px solid #dfc671;
    margin-top: 30px;
}

.pmbox {
    cursor: pointer;
    border: none;
    color: #fff;
    border-radius: 0;
    margin-left: 0px;
    display: flex;
    width: 25%;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 17px;
    border: 1px solid transparent;
}

.pmbox.active,
.pmbox:hover {
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    border: none;
    border-radius: 30px;
    color: #000000;
    border: 1px solid #dfc671;
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 30px;
}

.promo-img {}

.promo-img img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dfc671;
}


/********************* VIP ************************/

.vip-title-col td {}

.vip-in-table {
    background: linear-gradient(to bottom, #3f6383 0%, #2b4359 15%, rgba(12, 19, 25, 1) 100%);
    padding: 30px;
    border: 1px solid #386891;
    border-radius: 25px;
}

.vip-in-table tr th:first-child {
    /* background: #2c2a2b; */
}

.vip-in-table tr th {
    text-align: center;
    border-bottom: 1px solid #386891;
    /* background: #ffffffad; */
    padding: 15px;
    margin: 0;
}

.vip-in-table tr th img {
    /* width: 100%; */
    /* margin-top: -6px; */
}

.vip-in-table tr td {
    padding: 8px 25px;
    text-align: center;
    text-transform: uppercase;
}

.vip-in-table tr td:first-child {
    text-align: center;
    color: #93f6ff;
}

.color-yellow {
    color: #ffc600;
}

.table-note {
    color: #f3e272;
    font-size: 10px;
    padding: 10px;
}

.vip-tnc {
    padding: 20px;
    margin-top: 15px;
    color: #fff;
}

.vip-tnc h5 {
    color: #ffffff;
    font-size: 16px;
}

.vip-tnc ul {
    list-style: decimal;
}

.vip-tnc ul li {
    color: #ffffff;
    font-size: 13px;
    line-height: 22px;
}

.vip-content {
    margin-top: 45px;
    margin-bottom: 30px;
}

.vip-tnc ul {
    padding-left: 22px;
    padding-left: 10px;
    list-style: none;
}

.vip-l ul li:last-child {
    padding-bottom: 25px;
}

.bottom-col td {
    background: linear-gradient(to bottom, #ffcb01 0%, #c95a0b 100%) !important;
    border: none !important;
    color: #000;
    font-weight: 700;
    font-size: 12px;
}

.table-title {
    color: #d3a13a;
    font-size: 32px;
    font-weight: 700;
    padding-left: 15px;
}

.vip-title {
    color: #d3a13a;
    font-size: 30px;
    font-weight: 700;
    border-bottom: 1px solid #d3a13a;
    width: 220px;
}

.vip-sub-title {
    color: #d3a13a;
    font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
}

.sub-title {
    color: #d3a13a;
    font-size: 20px;
    margin-top: 20px;
}

.vip-content-text {
    margin-bottom: 20px;
    padding: 10px;
}

.vip-box-large td {
    padding: 25px !important;
}


/* JACKPOT */

.jackpot-sec {
    padding-top: 20px;
}

.jackpot-frame {
    background: url(../images/common/jackpot.png)no-repeat center top;
    height: 138px;
    position: relative;
}

.jackpot-frame .container {
    position: relative;
}

.jackpot-digit {
    position: absolute;
    right: 266px;
    top: 40px;
}

.jackpot-digit .num-item {
    display: inline-block;
    float: left;
    height: 70px;
    width: 65px;
    line-height: 70px;
    font-size: 50px;
    color: #1e1e1e;
    text-align: center;
    background: url(../images/common/jackpot_bg.png);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-right: 9px;
}

.jackpot-digit .space-item {
    display: inline-block;
    float: left;
    height: 70px;
    width: 32px;
    line-height: 70px;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    background: url(../images/common/jackpot_bg.png);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.seo-sec {
    padding-top: 25px;
    border-bottom: 1px dotted #aeaeae;
    padding-bottom: 25px;
}

.index_bg{
    background: url(../images/common/index/background_1.jpg)no-repeat center top;
}
.index_s_bg{
    background: #1a1a1a;
}
.index_t_bg{
    background: url(../images/common/index/background_2.jpg)no-repeat center top;
}
.footer-copyright{
    background: #000;
    padding: 10px 0;
}
.border-hr{
    width: 2px;
    height: 15px;
    background: #303030;
    margin-left: 15px;
    margin-right: 15px;
}
.m_main a{
    padding: 0!important;
}
.game-title{
    text-align: center;
    padding-top: 30px;
    width: 100%;
    padding-bottom: 15px;
}
.widget-top{
    padding: 50px 0;
}
.casino_bg{
    background: url(../images/common/casino/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.sport_bg{
    background: url(../images/common/sports/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.esport_bg{
    background: url(../images/common/esports/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.slot_bg{
    background: url(../images/common/slots/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.fish_bg{
    background: url(../images/common/fish/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.v_bg{
    background: url(../images/common/virtual-sport/background.jpg)no-repeat center top;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
.pm_banner img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
}
.submit_btn{
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
}
/* 6/6 UPDATED */
.download-sec{
    display: flex;
    justify-content: right;
    align-items: center;
    background: url(../images/common/index/Gamingsoftdownload.jpg) no-repeat center;
    min-height: 612px;
    position: relative;
    background-size: cover;
}

.download-qr{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
      /* You can adjust this value based on your requirements */
    padding-right: 20%;
    max-width: 100%;
}

.download-qr a{
    background: linear-gradient(to bottom, rgba(232,222,136,1) 0%,rgba(203,161,81,1) 50%,rgba(121,82,39,1) 100%);
    color: #000!important;
    padding: 5px 15px;
    border-radius: 10px;
    display: block;
    width: 100%;  /* This will make the anchor tag take full width */
    margin: 10px auto;
    font-size: 14px;
    text-transform: uppercase;
}

.download-qr img{
    max-height: 150px;
}

.download-qr a img{
    max-height: 25px;
}

@media screen and (max-width: 1480px) {
    .download-qr {
        max-width: 90%;
        padding-right: 10%;
    }

    .download-qr img {
    }
    
    .download-qr a img {
        max-height: 20px;
    }
}