body, html {
    padding: 0px;
    margin: 0px;
    background: #b8d4ff;
    font-family: 'Montserrat', sans-serif;

}

h1 {
    text-transform: capitalize;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

#header-content {
    position: fixed;
    top: 0;
    z-index: 99;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
}

#header-content .logo img {
    height: 50px;
    margin: 6px;
    margin-left: 22px;
}

.header_mainonline {
    font-size: 16px;
    color: #8851a9;
}

.login {
    margin-right: 2%;
    color: #ffffff;
    border-radius: 20px;
    background: #27d525;
    font-size: 0.9em;
}

.login a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 8px 18px;
    border-radius: 20px;
}

.login a:hover {
    background-color: #693;
}

a:hover img {
    opacity: 0.8;
    transition: all 0.3s;
}

.no-desk-top {
    display: none;
}

#container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 250px minmax(200px, 1fr);
    max-width: 1280px;
    margin: 80px auto 0;
    background: #a4bbff;
}

#menu-left {
    min-width: 250px;
}

#menu-left ul {
    list-style-type: none;
    margin: 0;
    font-size: 16px;
    border: none;
    padding: 16px;
    position: sticky;
    top: 66px;
}

#menu-left ul li {
    line-height: 50px;
    border: none;
    display: block;
    margin: 0;
}

#menu-left ul li a {
    padding: 0 15px;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#menu-left ul li:hover {
    background: #e7e3e3;
}

#menu-left ul li i {
    margin-right: 16px;
}

#menu-left ul li img {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 4px;
}

.menu-selected {
    background: #66C;
    color: white !important;
}

@media screen and (min-width: 700px) {
    #menu-left {
        display: block !important;
    }
}

#main-page {
    margin-top: 12px;
    max-width: 1180px;
    width: 100%;
    /*margin-right: 20px;*/
}

.tags-label {
    background: #09F;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
    padding: 3px 12px;
    display: inline-block;
    margin: 2px 6px;
    text-decoration: none;
    width: auto;
    text-align: center;
    font-weight:bold;
}

a:hover.tags-label {
    background: #0CF;
}

@media only screen and (max-width: 600px) {
    .swiper_tags .fa-fire {
        margin-left: 6px;
    }

    .tags-label {
        font-size: 16px;
    }
}

.circle_icon {
    background: #d8e1d7;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 4px;
}

.btn_round {
    border-radius: 20px;
    background: #000;
    padding: 12px 40px;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-top: 40px;
}

.btn_round:hover {
    background: #660 !important;
}

.new_top_game {
    height: 320px;
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.new_top_bg {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.05);
}

.new_top_front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 90%;*/
    z-index: 2;
    color: white;
    text-align: center;
}

.new_top_front h2 {
    font-size: 2em;
    margin: 0px;
    color: #fff;
}

.new_top_front a {
    text-decoration: none !important;
}

.modal_login > div {
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    text-align: center;
    padding: 24px;
    font-size: 20px;
    border-radius: 20px;
    box-shadow: 1px 5px 20px 0px rgba(0, 0, 0, 0.52);
    background: linear-gradient(135deg, rgba(226, 226, 226, 1) 0%, rgba(255, 255, 255, 1) 34%, rgba(235, 235, 235, 1) 73%, rgba(254, 254, 254, 1) 100%);
    width: 500px;
}

@media only screen and (max-width: 700px) {
    .modal_login > div {
        width: 70%;
    }

    .new_top_game {
        height: auto;
        margin: 10px;
        border-bottom: 1px solid #d5d5d5;
        padding-bottom: 16px;
    }

    .new_top_game h2 {
        font-size: 1.2em;
    }

    .new_top_front {
        all: unset;
    }

    .new_top_front p {
        display: none;
    }

    /*.new_top_front img {*/
    /*    border-radius: 16px;*/
    /*    float: none !important;*/
    /*    margin: 0px;*/
    /*    width: 100%;*/
    /*    height: auto;*/
    /*}*/

    .new_top_front h2 {
        color: #06C;
        width: 60%;
    }

    .btn_round {
        float: right;
        margin-top: -40px;
    }
}


.rating-box {
    position: relative;
    vertical-align: middle;
    font-size: 2em;
    display: inline-block;
    color: #dbdbdb;
    font-weight: 900;
}

.rating-box:before {
    content: "\f005 \f005 \f005 \f005 \f005";
}

.rating-box .rating {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    color: orange;
}

.rating-box .rating:before {
    content: "\f005 \f005 \f005 \f005 \f005";
}

.ratingsmall {
    font-size: 1em;
    margin: 6px 0px;
}

.search {
    width: 300px;
}

.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    z-index: 99;
    right: -32px;
    top: 14px;
    color: #959595;
}

.suggest {
    background: #b7dcfd;
    border-radius: 20px;
    padding: 12px !important;
    font-size: 17px;
}

@media screen and (max-width: 600px) {
    .suggest {
        padding: 12px !important;
    }

}

@media screen and (min-width: 600px) {
    .suggest {
        padding: 12px 25px !important;
    }

}

#header-content
.suggest:hover, .suggest:focus {
    box-shadow: 0px -1px 13px rgba(140, 102, 255, 0.55);
    background: #fff;
}

.cerchio_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 12px;
    border-radius: 12px;
    background-color: #656a98;
    padding: 12px;
}

.cerchio_box {
    padding: 6px;
    text-align: center;
    background-color: #464a68;
    border-radius: 10px;
    text-align: center;
}

.cerchio_box_img {
    border-radius: 15px;
    width: 120px;
    height: 120px;
    margin: 6px auto;
}

@media screen and (max-width: 600px) {
    .cerchio_box_img {
        width: 100px !important;
        height: 100px !important;
    }
}

.cerchio_box a {
    display: block;
    color: #FFFFFF;
    font-size: 15px;
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: bold;
}

.cerchio_box a:hover {
    color: #FFCC00;
}

.dropbtn {
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 0px;
    right: 0px;
    transition: all .3s ease;
    opacity: 0;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #747474;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    top: 35px;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.box-shadow {
    background-color: #7d80f9;
    box-shadow: 0 6px 13px rgba(102, 102, 102, 0.12);
    border-radius: 12px;
}

@media screen and (min-width: 700px) {
    .box-shadow {
        margin-right: 7px;
    }
}



#prefer_top {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-column-gap: 1.4%;
    padding-bottom: 8px;
    margin-top: 12px;
    overflow: hidden;
}

.prbox {
    padding: 8px;
    font-size: 13px;
    height: 130px;
    margin-bottom: 6px;
    text-align: center;
    position: relative;
}

.prbox a {
    color: #000000;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    height: 100%;
    font-weight: bold;
}

.prbox a img {
    border: 0px;
    width: 75px;
    height: 75px;
    border-radius: 3rem;
    object-fit: cover;
    margin-bottom: 10px;
}

.prbox a:hover {
    color: #0099FF;
    background: #f2f2f2;
}

/* paginazione */
#pagination {
    display: table;
    margin: 6px auto;
}

#pagination a {
    display: inline-block;
    border-radius: 5rem;
    background: #09F;
    text-align: center;
    color: #fff;
    padding: 6px;
    text-decoration: none;
    margin: 0px 4px;
    margin-top: 34px;
    min-width: 16px;
    height: 16px;
}

#pagination a:hover {
    background-color: #69C;
}

@media only screen and (max-width: 900px) {
    #prefer_top {
        margin-left: 8px;
    }
}

.latest_box {
    overflow: hidden;
    margin: 6px;
}

.latest_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
}

.latest_box a {
    text-decoration: none;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.latest_box h3 {
    margin: 8px 0px;
}

.latest_box .l_text {
    padding: 6px 12px;
    font-size: 14px;
}

.latest_box .tags-label {
    color: #fff;
    font-size: 11px;
    margin: 2px 2px;
}

@media only screen and (max-width: 900px) {
    .latest_box {
        margin: 16px;
    }
}

.boxelenco {
    display: block;
    margin: 8px 0px;
}

.boxelenco img {
    float: left;
    margin-right: 10px;
}

.latest_list_grid {
    display: grid;
    grid-template-columns: auto 350px;
    grid-gap: 10px;
}

.latest_list {
    padding: 9px 0px 12px 6px;
    border-bottom: 1px solid #CCC;
    height: 65px;
}

.latest_list img {
    display: inline-block;
    float: left;
    margin-right: 10px;
    max-width: 110px;
    width: 110px;
    height: 65px
}

.latest_box p {
    color: #888;
}

.latest_list .tag_piccolo a {
    color: #690;
    font-size: 11px;
}

.latest_list .l_text {
    padding: 0px;
}

.list_title {
    font-weight: 600;
    font-size: 15px;
}

@media only screen and (max-width: 700px) {
    .latest_grid {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 0px;
    }

    .latest_box {
        margin: 8px;
    }

    .latest_box p {
        font-size: 13px;
        margin: 6px 0px;
        color: #000;
    }

    .latest_box h3 {
        margin: -5px 0px 0px 0px;
    }

    .latest_box span {
        display: block;
    }

    /*.latest_box img {*/
    /*    display: inline;*/
    /*    object-fit: cover;*/
    /*    width:25%!important;*/
    /*    height:25%!important;*/
    /*}*/
    .box_view img {
        display: inline;
        object-fit: cover;
        width: 25% !important;
        height: 25% !important;
    }
}

/*.latest_box img {*/
/*    margin-right: 12px;*/
/*    border-radius: 50%;*/
/*    width: 30%;*/
/*    height: 30%;*/
/*}*/

.box_view img {
    margin-right: 12px;
    border-radius: 50%;
    width: 30%;
    height: 30%;
}

.main_cloud a {
    border: 1px solid #e3e3e3;
    border-radius: 4rem;
    padding: 6px 16px;
    display: inline-block;
    font-size: 12px;
    color: #606a70;
    margin: 6px;
}

@media only screen and (max-width: 600px) {
    .latest_list_grid {
        display: block;
    }

    .latest_list {
        /*height: auto;*/
    }

    .latest_list img {
        height: 67px !important;
    }
}

#main_random {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 24px;
}

.main_rand {
    padding: 12px;
}

.main_rand a {
    text-decoration: none;
    /*color: #09F;*/
}

.lista_gruppi {
    display: block;
    font-size: 12px;
    color: #62a321 !important;
    text-transform: capitalize;
    padding: 4px 2px;
    border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 600px) {
    #main_random {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 16px;
        margin: 12px;
    }
}

#category-list ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 16px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    font-size: 11px;
}

#category-list li {
    border: 1px solid #7cabf5;
    border-radius: 15px;
    background: #7cabf5;
    height: 45px;
    line-height: 45px;
    text-transform: uppercase;
    overflow: hidden;
}

#category-list {
    margin-bottom: 2rem;
}

@media screen and (min-width: 700px) {
    #category-list {
        margin-right: 7px;
    }
}

.pill img {
    height: 30px;
    width: 30px;
    object-fit: cover;
    float: left;
    margin: 8px 8px 8px 3px;
}

.pill a {
    color: #069;
    font-weight: 600;
    text-decoration: none;
    display: block;
    font-size: 15px;
}

.pill a:hover {
    background: #069;
    color: #fff;
}

.pill p {
    margin: 0px;
    padding: 0px;
}

@media only screen and (max-width: 600px) {
    #category-list ul {
        /*display: block;*/
        font-size: 1.2em;
        margin: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    #category-list li {
        margin: 6px 0;
    }
}

footer {
    padding: 12px 12px;
    padding-left: 2%;
    border-top: 1px solid #CCC;
    font-size: 13px;
    margin-top: 36px;
}

footer a {
    color: #333;
}

@media only screen and (max-width: 900px) {
    footer {
        text-align: center;
    }
}

@media only screen and (max-width: 1280px) {
    #container {
        grid-template-columns: 250px minmax(200px, 1fr);
    }

    #menu-left {
        min-width: 250px;
    }

    .cerchio_grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}


@media only screen and (max-width: 700px) {
    h1 {
        font-size: 1.4em;
        text-align: center;
    }

    h2 {
        margin-left: 16px;
    }

    .only-mobile {
        display: block
    }

    .nomobile {
        display: none;
    }

    #container {
        grid-template-columns: 100%;
    }

    .cerchio_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 6px;
    }

    .login {
        margin: 12px;
    }

    .login a {
        color: #746c6c;
        background: #f2f2f2;
        padding: 12px 18px;
        border-radius: 0px;
    }

    #menu-left {
        display: none;
        width: 100%;
        height: 100%;
        z-index: 999;
        position: fixed;
        overflow: scroll;
        background: #fff;
        top: 63px;
        border-top: 1px solid #e7e7e7;
    }

    #menu-left ul {
        padding: 2px;
        top: 6px;
        /*width: -webkit-fill-available;*/
        position: relative;
    }

    .suggest {
        /*margin: 5px;*/
        margin: 4rem 0 0;
    }

    #container {
        margin-top: 64px;
    }

    #header-content {
        box-shadow: none;
    }

    #header-content .logo img {
        height: 44px;
        margin: 5px 0px;
    }

    .search, .header_mainonline {
        display: none;
    }

    .show-menu {
        display: inline-block;
        font-size: 2em;
        margin: 0px 0px 0px 2px;
        padding: 8px;
        color: #a7b8e9;
        vertical-align: super;
    }

    .search-icon {
        display: inline-block;
        position: inherit;
        right: 0px;
        top: 0px;
        padding: 8px;
        font-size: 1.4em;
        color: #bcbcbc;
    }

    .search {
        position: absolute;
        left: 43px;
        top: 8px;
    }

    .search-box {
        position: initial;
    }

    .easy-autocomplete-container {
        width: 122% !important;
        margin-left: -39px !important;
        margin-top: 3px !important;
    }

    .easy-autocomplete {
        width: 96% !important;
    }
}


.suggest {
    width: 100%;
    border: none;
    padding: 2px;
    border: 0px;
    -webkit-appearance: none;
    box-shadow: inset 0px 0px 0px 0px red;
}

input:focus {
    outline: none !important;
    border: 1px solid red;
    box-shadow: 0 0 10px #719ECE;
}

div.header-container p {
    margin: 0px;
}

.easy-autocomplete-container ul .eac-category {
    padding: 10px 0px;
    font-style: normal;
}

.easy-autocomplete-container ul .eac-category:first-of-type {
    padding-top: 0;
}

.easy-autocomplete-container ul li {
    border-bottom: 1px dotted #00FFFF;
}

div.header-container {
    background-color: #46bcfe;
    color: #fff;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    clear: both;
    overflow: hidden;
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: -8px;
}

div.header-container p.left-align {
    float: left;
    font-weight: bold;
}

.showall a {
    color: #F5C5FC;
    float: right;
    text-transform: lowercase;
    font-size: 12px;
}

.easy-autocomplete-container ul li div {
    word-break: normal;
}

.main_di {
    background: #95acf1;
    border-radius: 16px;
    padding: 5px;
    margin: 10px;
    font-size: 17px;
}

.main_di .title374 {
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 12px;
}

.main_di a {
    color: #fff;
}

.main_di .btn374 {
    padding: 6px 18px;
    background: orange;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    margin-top: .6rem;
}

.mixcategorie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

.mixcategorie h3 {
    margin: 0;
    position: absolute;
    padding: 20px;
    color:#fff;
}

.mixcategorie img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
}

@media only screen and (max-width: 600px) {
    .mixcategorie {
        display: block;
    }

    .mixcategorie .box-shadow {
        margin: 10px;
        grid-template-columns: repeat(4, 1fr);
    }
}


.line-view {
    background-color: #a4bbff;
    height: 6px;
    flex: 0 1 100%;
}

.latest_box h2 {
    padding: 0 20px;
}

.index-desc {
    font-size: 13px;
    margin: 6px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.word-content {
    width: 100%;
}

.box_view {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cerchio_box_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.latest-content {
    font-size: 18px;
    color: #040404;
    margin-bottom: 10px;
    grid-column: 1 / -1;
    max-width: 800px;
    font-weight: bold;
}

.back_to_top {
    position: fixed;
    right: 2rem;
    bottom: 5rem;
    z-index: 1;
    height: 3rem;
    width: 3rem;
    box-shadow: 0 0 28px #0000009c;
    cursor: pointer;
    display: flex;
    background: #6c91ff;
    border-radius: 50%;
}

.back_to_top img {
    width: 65%;
    height: 65%;
}

.about-content {
    text-align: center
}

.about-content a {
    text-decoration: auto;
    font-weight: bold;
}

.cate-view {
    margin-bottom: 10px;
}

.cate-view img {
    border-radius: 10px;
    margin: 5px 0;
    height: 100px;
    width: 100%;
}

.cate-title-view {
    font-size: 15px;
    font-weight: 600;
    color: #009;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.margin {
    padding: 10px;
}

.action-img {
    width: 100%;
    height: 75%;
}

.margin-top-20 {
    margin-top: 20px;
}

.hot-icon {
    color: red;
    margin-top: 6px;
}

.over-hidden {
    overflow: hidden;
}

.line-view_2 {
    border-bottom: 1px solid #CCC !important;
    margin: 12px 0 !important;
}

@media screen and (min-width: 700px) {
    #main-page {
        margin-bottom: 2rem;
    }

    .div_main {
        margin-right: 7px;
    }
}

.desc-content {
    background: #f0f8ec;
    padding: 10px 10px 0;
    border-radius: 8px;
}

.top-info_main {
    padding: 12px 0;
}

.div_main {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    min-width: 95%;
    text-align: center;
}

#game {
    /*width: 1140px;*/
    margin: 0 auto;
    height: 700px;
}

#game iframe {
    width: 1140px;
    height: 700px;
}

@media only screen and (max-width: 900px) {
    .top-info_main {
        text-align: center;
        color: #666;
        font-size: 0.8em;
        padding: 12px;
    }

    .top-info_main .tags-label {
        font-size: 13px;
    }

    .div_main {
        width: auto;
        min-width: inherit;
    }

    #game {
        width: 100%;
    }

    #game iframe {
        width: 100%;
    }
}

.game-title-info {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-info {
    background: #ff0000;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 8px 0;
    color: #fff;
}

.like i {
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #c3e6ff;
    color: #5077b8;
}

.like i:hover {
    background: #6b8ced;
    color: #fff;
}

[data-placeholder]:empty:before {
    content: attr(data-placeholder);
    color: #888;
    font-style: italic;
}

.desc-info {
    padding: 0 12px;
    text-align: left;
}

@media only screen and (max-width: 900px) {
    .desc-info {
        padding: 0;
        margin: 2px;
    }

    .desc-info p {
        font-size: 16px;
        color: #666;
    }
}

@media screen and (max-width: 750px) {
    h3 {
        padding: 12px;
        /*text-align: center;*/
    }

    .fullscreen {
        position: fixed;
        display: block;
        width: 100% !important;
        height: 100% !important;
        top: 0;
        left: 0;
        z-index: 99;
        background: #fff;
    }

    #game {
        height: 350px;
    }

    .new_top_front {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
}

#main-game {
    position: relative;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.game-icon{
    border-radius:20px;
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.game_btn{
    padding: 6px 20px;
    margin: 20px;
}

.game-view{
    background: #323336;
    border-radius: 20px;
}


.desc_btn {
    border: solid 1px #d3d3d3;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
    background: #803be1;
    font-size: 1rem;
    margin: 1rem 0;
}

@media screen and (max-width: 700px) {
    #desc-info{
        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 12;
        -webkit-box-orient: vertical;
    }

    .pc_search{
        display:none!important;
    }

}

@media screen and (min-width: 700px) {
    .title-info {
        display:none!important;
    }
    .mobile_search{
        display:none!important;
    }
}

.uppercase{
    padding: 5px!important;
    text-align:left!important;
    margin-top: 1rem !important;
    font-size:1.5rem;
}

.relate-game-title{
    font-size:1.5rem;
}

.relate-game-btn{
    background:orange;
    color:#fff;
    display: table;
    margin:6px 0;
}

.relate-img{
    border-radius:10px;
    margin:5px 0;
    height:100px;
    width:100%;
}

.relate-title{
    font-weight:bold;
    color: #009;
    text-decoration:none;
    font-size:15px;
    text-transform:uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.adBox {
    width: calc(100% + 2rem - 20px);
    margin-left: calc(-1rem + 10px);
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #CCCCCC;
    color: #000;
}

.adBox0 {
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 15px 0 15px 0;
}