/*--
Author: SiongHo
Started: Feb11,2018
Last Updated:
--*/

@font-face {
    font-family: GOTHAM_BOLD;
    src: url("/g.7me.co/fonts/GOTHAM-BOLD.OTF") format("opentype");
}

html,
body {
    background-color: #23232F;
    font-family: "Poppins";
}

body a:hover{
	text-decoration:none;
}

.line{
    border-bottom: 1px solid #4a4a4a;
    width: 100%;
    float: left;
    margin: 3px 0 15px;
}

/* hamburger menu*/
.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}
/*-- navigation bar --*/
nav.navbar.navbar-default {
    /*padding: 1em 4em 0em 4em;*/
    padding:20px 70px 15px 70px;
    border: none;
    background-color: white;
    background-size:cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    color: #fff;
    height: 368px;
    z-index: 2;
}
.navbar {
margin-bottom:0px;
}

.navbar-default .navbar-brand,
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {

}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color:#fff;
    background:none;
    cursor: pointer;
}
.navbar-default .navbar-nav > li > a {
    font-weight:600;
    font-size: 1em;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
}
.navbar-default .navbar-nav > li > a:hover{
    color:#fff;
}
.navbar-default .navbar-nav > li > a:focus {
    color: #fff;
	outline:none;
}
.navbar-nav > li > a {
    padding:0 1.5em;
}
.navbar-collapse {
    padding: 0;
}
.navbar-left .logo{
    max-height:45px;; z-index: 999;
}
/*Navigation bar*/
.navbar-right {
    float: right !important;
}
/*Language Menu Dropdown*/
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #fff;
    text-decoration: none;
    /*background-color: #c73fa2;*/
    background-color: #2e7fd3;
    font-size:20px;
}

.link-effect a {
  overflow: hidden;
  font-weight: 400;
    color: #fff!important;
}
.link-effect a span {
  position: relative;
  display: inline-block; /*cannot remove this, hover will not work*/
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-effect a span::before {
  color:#fff;
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.link-effect a:hover span {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.dropdown-menu {
    background-color: #2f2f23;
}

/*Home.blade.php
#2e7fd3 blue and #c73fa2 purple color used
*/

.banner{
    height:100vh;
    width: 100vw;
    max-width:100%; /*max-width to avoid horizontal scrollbar*/
    /*You can also viewport percentage units, namely use vh and vw (viewport height)
    and (viewport width) units to cause content to stretch to fill a proportionate amount of the viewport,
    where 100 = 100%. This is likely the preferred solution vs implicit % units,
    depending on your required browser support
    and does not require the element to be nested within a parent with explicit height/width settings*/
    background: -moz-linear-gradient(319deg, #c73fa2 0%, #2E7ED3 95%, #2E7ED3 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #c73fa2), color-stop(95%, #2E7ED3), color-stop(100%, #2E7ED3)); /* safari4+,chrome */
    background: -webkit-linear-gradient(319deg, #c73fa2 0%, #2E7ED3 95%, #2E7ED3 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(319deg, #c73fa2 0%, #2E7ED3 95%, #2E7ED3 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(319deg, #c73fa2 0%, #2E7ED3 95%, #2E7ED3 100%); /* ie10+ */
    background: linear-gradient(131deg, #c73fa2 0%, #2E7ED3 95%, #2E7ED3 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c73fa2', endColorstr='#2E7ED3',GradientType=1 ); /* ie6-9 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*position:relative;*/
}

/*7me logo image*/
.banner #logo{
    width: calc(1em + 32vh);
}

.banner p{
    font-family: 'Ubuntu', sans-serif;
    color:white;
    font-size: 4vw;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.40);
}

.subcategorybanner{
    height:100vh;
    width: 100vw;
    max-width:100%; /*max-width to avoid horizontal scrollbar*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position:relative;
}
.subcategorybanner #logo{
    z-index: 20;
    width: calc(4vw + 8vh);
}

.subcategorybanner p{
    font-family: 'Ubuntu', sans-serif;
    color:white;
    font-size: calc(2vw + 3vh);
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.40);
    text-align: center;
    margin-top:15px;
    z-index: 20;
}
.subcategorybanner .mobile{
    display:none;
}
#video-background {
    /*  making the video fullscreen  */
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
#video-overlay_video{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background:linear-gradient(to right,  rgba(160, 255, 220, 0.7),    rgba(0, 86, 160, 0.7));
}

#video-overlay_wallpaper{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background:linear-gradient(to right,  rgba(255, 192, 113, 0.5),    rgba(255, 99, 110, 0.5));

}
#video-overlay_ringtone{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background:linear-gradient(to right,  rgba(39, 241, 159, 0.5),    rgba(12, 183, 227, 0.5));
}
#video-overlay_game{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background:linear-gradient(to right,  rgba(	216, 55, 158, 0.5),    rgba(72, 50, 114, 0.5));
}

/*7me Mix Content*/
.mix_content{
    background-color:#30303d;
}

.mix_content_category{
    height:100vh;
    max-width:100%;
    color:black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mix_content_category .category_name{
    position: absolute;
    width: 100%;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 7vw;
    line-height: calc(40px + 3vw);
    /*given by ruth*/
    text-shadow: 2px 0 2px rgba(0, 0, 0, 0.6);-moz-text-shadow: 2px 0 2px rgba(0, 0, 0, 0.6);-o-text-shadow:  2px 0 2px rgba(0, 0, 0, 0.6);-ms-text-shadow:  2px 0 2px rgba(0, 0, 0, 0.6);
    z-index: auto;
    text-transform: uppercase;
}
/* id: 1= video, 16 = wallpaper, 24 = games, 25 = sound, 67 = apps*/
.mix_content_category_1{
    background: -moz-linear-gradient(42deg, #99daff 0%, #2e7fd3 90%, #2e7fd3 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #99daff), color-stop(90%, #2e7fd3), color-stop(100%, #2e7fd3)); /* safari4+,chrome */
    background: -webkit-linear-gradient(42deg, #99daff 0%, #2e7fd3 90%, #2e7fd3 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(42deg, #99daff 0%, #2e7fd3 90%, #2e7fd3 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(42deg, #99daff 0%, #2e7fd3 90%, #2e7fd3 100%); /* ie10+ */
    background: linear-gradient(48deg, #99daff 0%, #2e7fd3 90%, #2e7fd3 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99daff', endColorstr='#2e7fd3',GradientType=0 ); /* ie6-9 */
}

.mix_content_category_16{
    background: -moz-linear-gradient(45deg, #FFC071 0%, #FF636E 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #FFC071), color-stop(100%, #FF636E)); /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, #FFC071 0%, #FF636E 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, #FFC071 0%, #FF636E 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, #FFC071 0%, #FF636E 100%); /* ie10+ */
    background: linear-gradient(45deg, #FFC071 0%, #FF636E 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF636E', endColorstr='#FFC071',GradientType=1 ); /* ie6-9 */
}
.mix_content_category_24{
    background: -moz-linear-gradient(309deg, #27F19F 0%, #0CB7E3 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #27F19F), color-stop(100%, #0CB7E3)); /* safari4+,chrome */
    background: -webkit-linear-gradient(309deg, #27F19F 0%, #0CB7E3 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(309deg, #27F19F 0%, #0CB7E3 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(309deg, #27F19F 0%, #0CB7E3 100%); /* ie10+ */
    background: linear-gradient(141deg, #27F19F 0%, #0CB7E3 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#27F19F', endColorstr='#0CB7E3',GradientType=0 ); /* ie6-9 */
    padding:0; /*to remove the padding left and right of col-md-6*/
}
.mix_content_category_25{
    background: -moz-linear-gradient(294deg, #D8379E 0%, #483272 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #D8379E), color-stop(100%, #483272)); /* safari4+,chrome */
    background: -webkit-linear-gradient(294deg, #D8379E 0%, #483272 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(294deg, #D8379E 0%, #483272 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(294deg, #D8379E 0%, #483272 100%); /* ie10+ */
    background: linear-gradient(156deg, #D8379E 0%, #483272 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D8379E', endColorstr='#483272',GradientType=0 ); /* ie6-9 */
}
.mix_content_category_67{
    background: -moz-linear-gradient(45deg, #ff00ff 0%, #00ffff 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ff00ff), color-stop(100%, #00ffff)); /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, #ff00ff 0%, #00ffff 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, #ff00ff 0%, #00ffff 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, #ff00ff 0%, #00ffff 100%); /* ie10+ */
    background: linear-gradient(45deg, #ff00ff 0%, #00ffff 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffff', endColorstr='#ff00ff',GradientType=1 ); /* ie6-9 */
}
.mix_content_category .mobile{
    display:none;
}
/* id: 1= video, 16 = wallpaper, 24 = games, 25 = sound, 67 = apps*/

.mix_content_category_content{
    height:100vh;padding-top:18px;
}

.game_name{
    color:#fff;
    font-weight: bold;
    font-size: 20px;
}
/*the view more hover effect*/
.viewmore{
    color:black;
    float:right;
    width:140px;height:40px;border:1px solid black;text-align: center;padding-top:9px;cursor:pointer;
    text-transform: uppercase;
}

.viewmore:hover{
    background-color:black;
    color:white;
}
/*the view more hover effect end*/
.mix_content_itembox_frame_1 {
    padding:0px 3px 0 3px ;
    padding-top:5px;
}
.mix_content_itembox_frame_16 {
    padding: 0px 3px 0 2px;
}
.mix_content_itembox_frame_24{
    padding: 10px;
}

/*Content thumbnail*/
.mix_content_thumnail_video {
    width: 100%;
    height:27vh;
    cursor:pointer;
}
.background_thumbnail{
    background-repeat: no-repeat !important;
    background-position: center !important;
}


.gradient-effect{
    position: relative;
    display: block;
}
.gradient-effect::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hide_wallpaper{
    display:none;
}

.mix_content_thumnail_wallpaper{
    width: 100%;
    height:43vh;
    padding-top:5px;
    cursor:pointer;
}

/*wallpaper hover effects start*/
.wallpaper_outer_layer:hover .mix_content_thumnail_wallpaper:hover{
    cursor:pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 1;
}

.wallpaper_outer_layer:hover .mix_content_thumnail_wallpaper{
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
/*wallpaper hover effects end*/
/*may not be used*/
.mix_content_thumnail{
    cursor:pointer;
    width:96px;
}

.mix_content_itembox_frame_1 .video_name{
    position: absolute;
    left:10px;
    bottom: 3px;
    color:white;
}

.mix_content_itembox_frame_1 .video_playback_time{
    position: absolute;
    right:10px;
    bottom: 3px;
    color:white;
}

.mix_content_itembox_frame_16 .download_icon{
    position: absolute;
    right:0px;
    bottom: 0;
    margin-right:5px;
    margin-bottom: 5px;
}

 .viewmore_1{
     margin:10px 3px 10px 0;
}
 .viewmore_16{
     margin:10px 3px 10px 0;
}
 .viewmore_24{
     margin:10px 30px 10px 0;
}
 .viewmore_25{
     margin:10px 30px 10px 0;
}
 .viewmore_67{
    margin:10px 30px 10px 0;
}

/*Table for Sound and Ringtone*/
.table{
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.table > tbody > tr > td{
    vertical-align: middle;
    font-size: calc(10px + 1vh);
    border:none;
    border-bottom: 1px solid #ddd;
    padding:calc(5px + 1vh) 5px;
}

.table > tbody > tr > td > img{
    cursor:pointer;
    max-width: 100%;
    min-width: 15px;
}

/*Home.blade end*/
/*Home.blade subcategory start*/
.mix_content_subcategory_content{
    padding: 40px 60px 40px 60px;
}

.mix_content_subcategory_content viewmore{
    color:black;
    float:right;
    width:140px;height:40px;border:1px solid black;text-align: center;padding-top:9px;cursor:pointer;
    text-transform: uppercase;
}

.mix_content_subcategory_content viewmore:hover{
    background-color:black;
    color:white;
}

.subcategory_padding{
    padding: 20px 45px 20px 45px;
}

.music_banner{
    box-shadow: 0px 4px 18px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 4px 18px 4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 4px 18px 4px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
}

/*Home.blade subcategory end*/
/* Pagination */
.paginator_position{
    float:right;
}
.pagination > li > a, .pagination > li > span{
    color: #3C3C3C;
    border-color: lightgrey;
}
.pagination > .disabled > span{
    color:#3c3c3c;
    border-color: lightgrey;
}

.pagination > .disabled > span:hover , .pagination > .disabled > span:focus,
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus,
.pagination > li > span:focus{
    color:white;
    border-color: lightgrey;
    background-color:#3C3C3C;
}

.pagination > .active > a, .pagination > .active > span,
.pagination > .active > a:hover, .pagination > .active > span:hover,
.pagination > .active > a:focus, .pagination > .active > span:focus{
    background-color:#3C3C3C;
    border-color: #3C3C3C;
}

/* Pagination end */
/* Download blade */


.download_content{
    background-color: white;
}

.btn_download{
    width: 180px;
    height: 40px;
    color: white;
    background-color: #27ae60;
    border:none;
    text-transform: capitalize;
    padding: 0px 20px;
}

.btn_download img{
float:left;
    width:25px;
}

.btn_download .text{
    float:right;
    font-size:15px;
}

.btn_yes {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    background-color: #00A2E2;
    color: #ffffff;
    padding: 7px 65px 7px 65px;
    border-radius: 30px;
}

.navbar-default .navbar-collapse {
    border-color: transparent!important;
}

.top_cat_menu {
    text-shadow: 2px 2px #000000;
    font-size: 16px;
    left: 50%;
    margin-left: -405px;
    position: relative;
}

.navbar-default .navbar-toggle {
    float: left;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #47566d!important;
}

.myaccount_menu {
    float: right;
    left: auto;
    right: 0;
    top: 40px;
    background-color: #22202c;
    box-shadow: none;
    border: none;
    color: #ffffff;
}

.top_category_btn {
    text-decoration: none;
    background-color: #1a1a1f;
    color: white;
    padding: 8px 15px 8px 43px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    background-repeat: no-repeat;
    background-size: 33%;
    background-position: 8px 4px;
}

.top_category_btn:hover, .top_category_btn_clicked {
    background-color: #00A2E2;
    color: white;
}

.top_all_btn{
    background-size: 33%;
    background-image : url('/g.7me.co/img/index/categories_all_blue.png');
}
.top_all_btn:hover, .top_all_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_all.png');
}

.top_sports_btn{
    background-size: 23%;
    background-image : url('/g.7me.co/img/index/categories_sports_blue.png');
}
.top_sports_btn:hover, .top_sports_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_sports.png');
}

.top_shooting_btn{
    background-size: 22%;
    background-image : url('/g.7me.co/img/index/categories_shooting_blue.png');
}
.top_shooting_btn:hover, .top_shooting_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_shooting.png');
}

.top_puzzle_btn{
    background-size: 25%;
    background-image : url('/g.7me.co/img/index/categories_puzzle_blue.png');
}
.top_puzzle_btn:hover, .top_puzzle_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_puzzle.png');
}

.top_arcade_btn{
    background-size: 25%;
    background-image : url('/g.7me.co/img/index/categories_arcade_blue.png');
}
.top_arcade_btn:hover, .top_arcade_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_arcade.png');
}

.top_strategy_btn{
    background-size: 20%;
    background-image : url('/g.7me.co/img/index/categories_strategy_blue.png');
}
.top_strategy_btn:hover, .top_strategy_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_strategy.png');
}

.top_leisure_btn{
    background-size: 25%;
    background-image : url('/g.7me.co/img/index/categories_leisure_blue.png');
}
.top_leisure_btn:hover, .top_leisure_btn_clicked{
    background-image : url('/g.7me.co/img/index/categories_leisure.png');
}

.game_thumnail {
    position: relative;
    background-image: url(https://ma3.co/games/artworks/mini_banners/duckmageddon.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #23222e;
    padding: 10px;
}

.play_now_btn {
    position: absolute;
    right: 10px;
    bottom: 0;
    border-radius: 17px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #00A2E2;
    color: #ffffff;
}

.top_btn_nav {
    margin-bottom: 20px;
    text-align: center;
    margin: 0 120px 20px 50px;
}

.playbtn_column {
    height: 94px;
}

.popular_now_img {
    height: 200px;
}

.popular_now_box {
    overflow: auto;
    width: 100%;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 220px;
}

.popular_now_box::-webkit-scrollbar {
    display: none;
}

.popular_now_items_link {
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-size: 30px;
    display: inline-table;
}

.popular_now_items_label {
    position: relative;
    top: 66px;
    margin-left: -344px;
    color: #ffffff;
    bottom: -65px;
    font-family: GOTHAM_BOLD;
}

.monthlyoffer {
    background-image: url('/g.7me.co/img/index/thismonthoffer-bg.jpg');
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #23232F;
    padding: 10px;
    height: 290px;
    background-position: 0 -56px;
    padding-left: 130px;
    padding-right: 130px;
    margin: 0;
}

.monthlyoffer_title {
    color: #ffffff;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: GOTHAM_BOLD;
}

.monthlyitem_box {
    height: 165px;
    cursor: pointer;
}

.monthlyitem_box_img {
    width: 100%;
    height: 100%;
}

.monthlyitem_box_a {
    padding-right: 0;
    height: 100%;
}

.monthlyitem_box_b {
    padding: 10px 0 10px 0;
    background-color: #30303D;
    color: #ffffff;
    font-size: 16px;
    height: 100%;
}

.main_categories_btns {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
.main_categories_btns img{
    height: 100px;
}
.main_categories_btns div {
    background-color: #30303D;
    padding: 12px 0;
}
.main_categories_btns a{
    color: #ffffff;
}

.second_banners {
    background-image: url('/g.7me.co/img/index/bannerbg.png');
    height: 200px;
    padding: 0 280px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    padding-top: 60px;
    font-size: 34px;
    font-family: GOTHAM_BOLD;
}

.categories_frame {
    padding-left: 130px;
    padding-right: 130px;
    margin: 30px 0;
    margin-top: 0;
}

.colors_btn {
    border-radius: 17px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #00A2E2;
    color: #ffffff;
}

.rating_txt {
    color: #fff;
    margin-top: 10px;
    margin-left: -7px;
}

.btn_gradient_1 {
    background: rgba(194,65,164,1);
    background: -moz-linear-gradient(left, rgba(194,65,164,1) 0%, rgba(46,126,211,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(194,65,164,1)), color-stop(100%, rgba(46,126,211,1)));
    background: -webkit-linear-gradient(left, rgba(194,65,164,1) 0%, rgba(46,126,211,1) 100%);
    background: -o-linear-gradient(left, rgba(194,65,164,1) 0%, rgba(46,126,211,1) 100%);
    background: -ms-linear-gradient(left, rgba(194,65,164,1) 0%, rgba(46,126,211,1) 100%);
    background: linear-gradient(to right, rgba(194,65,164,1) 0%, rgba(46,126,211,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c241a4', endColorstr='#2e7ed3', GradientType=1 );
    border: 0;
}

.offer_box_a {
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 5px 0px 0px 5px;
}

.offer_box_b {
    font-size: 10px;
    text-align: center;
    border-radius: 0px 5px 5px 0px;
    background-color: #414155;
    padding: 3px;
}

.popular_now_items_box {
    padding-left: 0px;
    padding-right: 0px;
}

.home_top_slogan {
    font-size: 35px;
    position: absolute;
    top: 50%;
    width: 90%;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -31px;
    font-family: GOTHAM_BOLD;
}

video{
    width:100%;
    /*height: 70vh;*/
}
/* Download blade end*/

/*In other words, if you are using max-device-width,
you will not see different media queries applied when resizing your desktop browser,
because unlike max-width,only the device's actual full screen size is taken into consideration;
not the current size of the browser window.*/

/*-- /responsive design --*/

@media(min-width:1440px){
    .mix_content .viewmore_24{
        margin:20px 50px 0 0;
    }

    .large_screen {
        max-width: 1100px;
        left: 50%;
        margin-left: -550px;
    }

    .large_screen_cate_lists {
        max-width: 1300px;
    }

    .large_screen_title {
        margin-left: 5%;
        width: 85%;
    }

    .large_screen_title_2 {
        padding-left: 135px!important;
    }

    .large_screen_home_banners {
        left: 50%;
        margin-left: -720px;
        position: relative;
    }

    .main_top_banner {
        height: 538px!important;
    }

    .large_screen_categories_title {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

@media(min-width:1700px){
    .large_screen_title {
        margin-left: 15%;
    }

    .large_screen_title_2 {
        padding-left: 108px!important;
    }
}

@media(max-width:1440px){

}
@media(max-width:1366px){

}

@media(max-width:1280px){
}
/*Large devices (desktops, less than 1200px)*/
@media(max-width:1080px){
    nav.navbar.navbar-default {
        padding: 0;
        background-color: #23222e;
        height: 190px;
        background-position-y: 43px;
        margin-bottom: 4px;
        background-position-x: 40%;
	}
    .navbar-brand {
        font-size: 1em;
	}
    .navbar-nav > li > a {
        padding: 0 1em;
	}
    .main_top_banner {
        background-image: none!important;
        height: 0px!important;
    }
}
@media(max-width:1024px){
.navbar-nav > li > a {
    position: relative;
	}

    .rating_txt {
        font-size: 12px;
    }
}
/* Medium devices (tablets, less than 992px)*/
@media(max-width:991px){

    .navbar-left .logo{
        margin-top: 7px;
        left: 50%;
        position: absolute;
        margin-left: -38px;
        width: 80px;
    }

    /*navbar and button.navbar-toggle was initially on media768px, moved here because this 992 will cover everything that is less than 992*/
    .navbar {
        margin-bottom:5px;
    }

    button.navbar-toggle {
        margin:5px 16px 0 0;
        padding: 14px 14px;
    }

    .mix_content_thumnail_video{
        padding-top:5px;
    }
    .mix_content_itembox_frame_1 .video_name{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
    }
    .mix_content_category .mobile{
        display:block;
        max-height: 80vh;
        max-width: 90vw;
    }
    .mix_content_category .desktop{
        display:none;
    }


    .subcategorybanner{
        height: calc(30vw + 30vh);
    }

    .subcategorybanner .mobile{
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        display:block;
    }
    .subcategorybanner #video-background{
        display:none;
    }
    .table > tbody > tr > td{
        white-space: normal;
        overflow: hidden;
        /*text-overflow: ellipsis;*/
        max-width:100px;
        word-wrap: break-word;
    }
    ul.pagination li:not(.show-mobile) {
        display: none;
    }

}
@media(max-width:800px){

}
/* Small devices (landscape phones, less than 768px)*/
@media(max-width:768px){

    .top_btn_nav {
        text-align: center;
        overflow-y: hidden;
        width: 107%;
        margin: 0;
        padding: 10px;
        margin-left: -5px;
        margin-top: 10px;
        padding-left: 16px;
    }
    .navbar-nav {
        margin: 10.5px 15px 0 0;
    }
    /*Category image*/
    .mix_content_category{
        max-height: 35vh;
    }
    .mix_content_category .category_name{
        font-size:12vw;
    }
    .mix_content_category .mobile{
        display:block;
        max-height: 30vh;
        max-width: 90vw;
    }
    .mix_content_category .desktop{
        display:none;
    }
    .hide_items{
        display:none;
    }
    .hide_wallpaper{
        display:block;
    }
    .mix_content_thumnail_wallpaper{
        height:29vh;
    }
    /*this is for game thumbnail*/
    .mix_content_thumnail{
        /*height:17vh;*/
    }
    .mix_content_subcategory_content{
        padding: 0px 20px 40px 20px;
    }
    .subcategory_padding{
        padding: 40px 5px 40px 5px;
    }
    .paginator_position{
        float:none;
        text-align:center;
    }
    .music_banner{
        margin:0 auto 20px auto;
        display:flex;
    }

    .navbar-header {
        box-shadow: 0 1px 15px #101010;
    }

    .mix_content_thumnail {
        width: 67px;
    }

    .game_name {
        font-size: 12px;
    }

    .play_now_btn {
        font-size: 11px;
    }


    .game_thumnail {
        padding-left: 0px;
    }

    .playbtn_column {
        height: 65px;
    }

    .popup-inner {
        top: 30%;
    }

    .btn_yes {
        font-size: 16px;
    }

    .modalimagediv img {
        width: 50%!important;
    }

    .top_category_btn {
        font-size: 12px;
    }

    .monthlyoffer_title {
        padding-left: 15px!important;
         margin-bottom: 15px;
        font-size: 16px;
    }

    .popular_now_box {
        overflow: auto;
        width: 95%;
        margin: 0 15px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        height: 197px;
    }
    .popular_now_img {
        width: 300px;
        height: auto;
    }

    .popular_now_items_label {
        position: relative;
        top: 63px;
        margin-left: -285px;
        color: #ffffff;
    }

    .monthlyoffer {
        background-image: none;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #23222e;
        padding: 5px;
        height: auto;
        background-position: 0 -56px;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        margin-top: -25px;
    }

    .monthlyitem_box {
        height: 158px;
        cursor: pointer;
        margin-bottom: 10px;
        background-color: #131319;
        padding: 0;
    }

    .monthlyitem_box_b {
        background-color: #131319;
    }

    .monthlyitem_box_a {
        padding-left: 0;
    }

    .categories_frame {
        padding-left: 0px;
        padding-right: 0px;
        /*margin: 0px -5px;*/
    }

    .main_categories_btns {
        text-align: center;
        font-size: 12px;
        margin-bottom: 3px;
        padding: 5px;
    }
    .main_categories_btns img {
        height: 55px;
    }

    .second_banners {
        background-image: url('/g.7me.co/img/index/bannerbg_mobile.png');
        margin-top: 0;
        font-size: 16px;
        height: 28vh;
        padding-top: 50px;
    }

}

@media(max-width:736px){
	div#bs-example-navbar-collapse-1 {
    /*position: absolute;*/
    width: 100%;
    z-index: 999;
	}
	.navbar-nav {
        margin: 0px 0px;
        background-color: #23212d;
	}
	.nav > li {
    margin: 1em 0;
	}


}
@media(max-width:667px){

}
/* #### Mobile Phones Portrait or Landscape #### */
@media(max-width:640px){

}
@media(max-width:600px){

}
/* Extra small devices (portrait phones, less than 576px)*/
@media(max-width:568px){

}
@media(max-width:480px){

}
@media(max-width:414px){

}
@media(max-width:384px){

}
@media(max-width:375px){

}
/* #### iPhone 4+ Portrait or Landscape #### */
@media(max-width:320px){

}
/*-- /responsive design --*/

.paginator{
    background-color: #30303d;
}

.footer{
    color:white;background-color: #3C3C3C;padding: 15px 10px;text-align: center;direction: rtl;
    /*position:absolute;bottom:0;left:0;width:100%;*/

}

/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index: 21;
}
/* Inner */
.popup-inner {
    width: calc(20vw + 32vh);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 10px;
    background: #30303D;
    color: #ffffff;
    padding: 15px;
}
/* Close Button */
.popup-close {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    font-family: Arial, Sans-Serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    text-decoration:none;
}
.modalimagediv{
    width:150px;
    margin-left:auto;
    margin-right:auto;
    margin-top:20px;
    text-align: center;
    margin-bottom: 10px;
}

.modalimagediv img{
    width:80%;
    height:100%;
}

.modalbuttondiv{
    width:100%;
    text-align:center;
}

.modalgameimage{

}
/*Modal box end*/

.cover {
    position: relative;
}
/*the blue background circle*/
.cover svg {
    position: absolute;
    top: 50%;
    left: 50%;
    stroke: #fff;
    width: 30px;
    height: 30px;
    background-color: #333;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.play {
    position: absolute;
    /*top: 50%;*/
    /*left: 50%;*/
    z-index: 3;
    width: 30px;
    background: transparent !important;
    height: 30px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    border:none;
    outline:none;
    z-index: 0;
}

.play::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: 0;

}
.play::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAZdJREFUeNrs29FNQjEYBlAgDuAIuAFugBvgBrABTiBOgE4AGzgCbCAbwAayAbZJb0KMT77wt/ecpO/39qP9CqGDAQAAAAAAAAAAAAAA8A+Xy2WWxr2ZiBPILo1jGlOzESeQzmcaY7MSJ5DsO42lmYkTSOcrjYkZihNIZ630YwVyKaU/M1txAunsWir9UQPvkI/GuVtWPsoxVsjv0p9aIXHkE9iu5tIfNbrI8neWXPpzgcSRV8imttJvOZDr0j/WUvp9CKTzWsMPln0KJBuX0t9ELf2+BdKZl21sKZBYpb8upT8RSMBv+hG2MYFclX4JZioQBPKHtzQeh8Ph/pYPcSeHQQ7gJQVxsEJu61yCeIoSRp9XyLaEcY72YH0L5JTG4tY9YcsqpZ2CeIgcRl9WyL6sipNj7+1Le1FK+1TLQ7cayHsaeXva1vbgrW1Zh3J62tf6Aq0EkrenjxTEqvYXaSGQqkq75Q7JATzXVtpV8mfregJxHSFIIC7sBArElbYggbj0GSgQ16IBAAAAAAAAAAAAACCsHwEGACfr+SLf7BaJAAAAAElFTkSuQmCC');
    background-size: 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;

}
#circle {
    visibility: hidden;
    stroke-width: 20px;
}
.playing #circle {
    visibility: visible;
}
.playing .play::after {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAK9JREFUeNrs0sEJhDAQQFEjW4ilWYp2slYS7MROYgrQZQc8DPgeiBcZQ/4MAwAAAAAAAAAAAAAAZFcyHaa1NvfX9PfhS1lu5iyB3x59ztcqXF9kbQE/5kTUTHcwWoNcBBEEQQRBEEEQRBAEEQRBEEQQBBEEQQRBEEEQBEEEQRBBEEQQBBEEQRBEEAQRBEEEQZB3+iQ7z9af/YE5a+DbwxoAAAAAAAAAAAAAAEDEKcAA4xprM8PkP94AAAAASUVORK5CYII=');
}
.playing .play::before {
    opacity: 1;

}
