:root {
	--primary-color: #ffb320;
	--secondary-color: #bdb8d7;
	--sider-color: #131313;
	--color-titulo: #bdb8d7;
}

html,
body {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	color: #242424;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

p {
	font-size: 14px;
	color: #878787;
	line-height: 2;
}

/*---------------------
BUTTON
----------------------*/
/* Botón del medio */
.mio {
	height: 100%;
	width: 200px;
	padding: 10px 20px;
	border: 2px solid red;
	background-color: transparent;
	color: red;
	font-size: 16px;
	border-radius: 30px;
	transition: background-color 0.3s, color 0.3s;
}

/* Cambiar color al pasar el cursor por encima */
.mio:hover {
	background-color: red;
	color: white;
}

/* Cambiar color al hacer clic */
.btn-group .activo {
	background-color: red;
	color: white;
	border-color: red;
}


/*---------------------
IMAGENES
----------------------*/
.img-fluid {
	width: 400px;
	height: 400px;
}

.subtitles {
	color: rgba(0, 0, 0, 0.6);
	/* Negro con 60% de opacidad */
}

/*---------------------
ICONO
----------------------*/
#imgFotoPUser {
	width: 40px;
	/* Ajusta el tamaño según lo necesites */
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ccc;
	margin-right: 10px;
}

.icono-project-editar {
	display: block;
	width: 100%;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
	background-position: right center;
	/* 👈 fuerza el ícono a la derecha */

}

.icono-project-editar.pc {
	background-image: url('../icons_componentes/icon_pc.svg');
}

/* 👇 efecto hover */
.icono-project-editar.pc:hover {
	cursor: pointer;
	/* la manito */
	text-decoration: underline;
	/* subrayado */
}

.icono-project {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}

.icono-project.f16 {
	background-image: url('../icons_componentes/icon_f16.svg');
}

.icono-project.pc {
	background-image: url('../icons_componentes/icon_pc.svg');
}

.icono-project.mecatanque {
	background-image: url('../icons_componentes/icon_meca.svg');
}

.icono-project.rogueone {
	background-image: url('../icons_componentes/icon_rogueone.svg');
}

.icono-project.r2t2 {
	background-image: url('../icons_componentes/icon_r2t2.svg');
}


/*---------------------
LOTTIES
----------------------*/

.lottie {
	width: 60px;
	height: 60px;
	cursor: pointer;

}

/*---------------------
  NUEVO DISEÑO
-----------------------*/

#rowBotones.collapse {
	transition: height 0.3s ease;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 35px;
}

.section-title h2 {
	padding-top: 10px;
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.set-bgSlider {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: relative;
	/* Necesario para el pseudo-elemento */
	z-index: 0;
	/* Asegura que el fondo esté detrás del contenido */
	overflow: hidden;
	/* Para evitar que el pseudo-elemento se desborde */
}

.set-bgSlider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* Color negro con opacidad */
	z-index: -1;
	/* Coloca el overlay detrás del contenido */
}

.set-bgSlider>* {
	position: relative;
	/* Asegura que el contenido esté encima del overlay */
	z-index: 1;
	/* Mantiene el contenido visible sobre el fondo */
}

.spad {
	padding-top: 77px;
	padding-bottom: 97px;
}

.spad2 {
	padding-top: 47px;
	padding-bottom: 97px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.rating i {
	color: #fbb710;
}

.rating .is-fade {
	color: #e0e3e4;
}


/*------------------
  Divisorio section
---------------------*/

.nublado-polarizado {
	width: 100%;
	/* Ajusta el ancho del contenedor */
	height: 40px;
	/* Altura del contenedor */

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.8),
			/* Color negro con opacidad en la parte superior */
			rgba(0, 0, 0, 0) 30%,
			/* Desvanecimiento hacia la parte inferior (transparente) */
			#eef2f6 30%
			/* Color #d6dee7 (gris claro) a partir del 50% */
		);
	position: relative;
}

.nublado-polarizado-contact {
	width: 100%;
	/* Ajusta el ancho del contenedor */
	height: 40px;
	/* Altura del contenedor */

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.8),
			/* Color negro con opacidad en la parte superior */
			rgba(0, 0, 0, 0) 30%,
			/* Desvanecimiento hacia la parte inferior (transparente) */
			#fff 30%
			/* Color #d6dee7 (gris claro) a partir del 50% */
		);
	position: relative;
}

.bg-general {
	background-color: #eef2f6;
}

.bg-contact {
	background-color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */
.site-btn {
	display: inline-block;
	text-align: center;
	color: #131313;
	padding: 16px 30px;
	min-width: 153px;
	border-radius: 50px;
	font-weight: 500;
	border: none;
	background: #ffb320;
	cursor: pointer;
}

.site-btn .btn-sm {
	padding: 10px 30px;
	min-width: 163px;
}

.site-btn:hover {
	color: #ffffff;
}

/*------------------
  Header section
---------------------*/

.header-section {
	background: var(--sider-color);
	border-bottom: 1px solid #ffb320;
}

.header-section .items-section {
	height: 80px;
	display: flex;
	align-items: center;
}

.header-section .items-section .site-logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.header-section .items-section .site-logo img {
	width: 175px;
	height: 50px;
	object-fit: contain;
	object-position: center;
}

.header-section .items-section .user-panel {
	display: flex;
	flex-direction: row;
	margin-left: auto;
	font-weight: 500;
	background: #ffb320;
	padding: 8px 28px;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
}

.header-section .items-section .user-panel a {
	height: 30px;
	max-height: 30px;
	font-size: 14px;
	color: #131313;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-section .items-section .user-panel a:hover {
	color: white;
	text-decoration: underline;
}

.header-section .items-section .user-panel a i {
	color: #333;
	font-size: 1.7em;
	margin-left: 8px;
	cursor: pointer;
}

.header-section .items-section .user-panel a:hover i {
	color: red;
}

/*** main-menu ***/
.header-section .items-section .main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}

.header-section .items-section .main-menu .nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-section .items-section .main-menu .main-link {
	font-size: 16px;
	color: #fff;
	margin-left: 35px;
	font-weight: 500;
	padding: 10px 5px;
}

.header-section .items-section .main-menu .main-link:hover {
	color: var(--primary-color);
}

.header-section .items-section .main-menu .nav-item.dropdown .dropdown-menu {
	margin: 0;
	padding: 0;
}

.header-section .items-section .main-menu .nav-item.dropdown:hover .dropdown-menu {
	display: block;
}

.header-section .items-section .main-menu .nav-item.dropdown .dropdown-menu a {
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-section .items-section .main-menu .nav-item.dropdown .dropdown-menu a:hover {
	background: #ffb320;
	color: white;
	font-weight: bold;
	/* 👈 esto agrega la negrita */
}

.header-btn {
	float: right;
	margin-right: 0;
}

.nav-switch {
	display: none;
}

/*------------------
  Hero Section
---------------------*/

.hero-slider .hs-item {
	height: 865px;
	display: table;
	width: 100%;
}

.hero-slider .hs-text {
	display: table-cell;
	vertical-align: middle;
}

.hero-slider .hs-text h2 {
	color: #fff;
	font-weight: 400;
	font-size: 60px;
	margin-bottom: 30px;
	position: relative;
	top: -80px;
	opacity: 0;
}

.hero-slider .hs-text h2 span {
	color: #ffb320;
}

.hero-slider .hs-text p {
	color: #ffffff;
	margin-bottom: 30px;
	position: relative;
	position: relative;
	top: -90px;
	opacity: 0;
	font-size: 20px;

}

.hero-slider .hs-text .site-btn {
	position: relative;
	top: -100px;
	opacity: 0;
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-dots {
	position: relative;
	max-width: 1146px;
	margin: -33px auto 0;
	top: -67px;
	z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 13px;
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding-top: 7px;
	border-radius: 40px;
	background: #dbe2ec;
}

.hero-slider .owl-dots .owl-dot.active {
	background: #ffb320;
}

/*---------------------
  Latest News section
-----------------------*/

.latest-news-section {
	overflow: hidden;
	display: block;
	clear: both;
	background: #131313;
	position: relative;
	height: 75px;
}

.latest-news-section .news-ticker {
	margin-top: 25px;
}

.latest-news-section .news-ticker-contant {
	display: none;
}

.latest-news-section .news-ticker-contant .nt-item {
	margin-right: 35px;
	color: #fff;
	white-space: nowrap;
}

.latest-news-section .news-ticker-contant .nt-item span {
	margin-right: 35px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 4px 20px;
}

.ln-title {
	position: absolute;
	height: 100%;
	width: 29%;
	left: 0;
	top: 0;
	text-align: right;
	padding-top: 24px;
	padding-right: 66px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: #ffb320;
	z-index: 1;
}

.new {
	color: white;
}

.color-0 {
	background: #660000;
}

.color-1 {
	background: #0099FF;
}

.color-2 {
	background: #00FF00;
}

/*------------------
  Feature Section
---------------------*/

.feature-item {
	height: 415px;
	position: relative;
}

.feature-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .65;
}

.feature-item .cata {
	position: relative;
	margin-top: 28px;
	margin-left: 29px;
	z-index: 3;
}

.feature-item .fi-content {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 0 26px 24px;
	z-index: 2;
}

.feature-item .fi-content h5 {
	margin-bottom: 18px;
}

.feature-item .fi-content .fi-comment {
	font-size: 12px;
	opacity: .54;
}

/*----------------------
  Recent Game Section
------------------------*/

.recent-game-section {
	background-color: #eef2f6;
	border-bottom: 1px solid #d6dee7;
}

.recent-game-section .cata-new {
	display: inline-block;
	width: auto;
	background-color: #ffb320;
	padding: 5px 10px;
	border-radius: 4px;
}

.recent-game-section .cata-new h6 {
	margin: 0;
}

.recent-game-item {
	width: 100%;
	width: 425px;
	height: 700px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #d6dee7;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.recent-game-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.recent-game-item .rgi-thumb {
	aspect-ratio: 16 / 9;
	width: 100%;
	position: relative;
	height: 200px;
	overflow: hidden;
}

/* 🔹 El <img> ocupa todo el contenedor */
.recent-game-item .rgi-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* llena todo el área, sin deformarse */
	display: block;
}


.recent-game-item .rgi-thumb .cata {
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 6px 25px;
	position: absolute;
	top: 20px;
	left: 20px;
	border-radius: 4px;
}


.recent-game-item .rgi-thumb .cata.new {
	background: #ff205f;
}

.recent-game-item .rgi-content {
	flex: 1;
	padding: 34px 22px 20px;
	border-top: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.recent-game-item .rgi-content .panel-1 {
	height: 95%;
}

.recent-game-item .rgi-content .panel-2 {
	height: 5%;
}

.recent-game-item .rgi-content h5 {
	margin-bottom: 20px;
	line-height: 1.5;
}

.recent-game-item .rgi-content .comment {
	font-size: 12px;
	color: #737373;
}

.recent-game-item .rgi-extra {
	height: 5%;
	border: 1px solid #fff;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.recent-game-item .rgi-extra .rgi-star,
.recent-game-item .rgi-extra .rgi-heart {
	height: 35px;
	width: 55px;
	padding: 7px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #ff205f;
}


.recent-game-item .rgi-extra .rgi-heart img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}


/*----------------------
  Tournaments Section

  	background: #ffb320;

------------------------*/

.tournaments-section {
	background-image: url("../img/pattern.png");
	background-repeat: repeat;
}

.tournament-title {
	display: inline-block;
	padding: 7px 25px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	background: #fb6e10;
}

.tournament-item {
	background: #252525;
}

.tournament-item .ti-notic {
	display: inline-block;
	padding: 8px 21px;
	font-size: 12px;
	font-weight: 700;
	color: #131313;
	text-transform: uppercase;
	background: #ffb320;
}

.tournament-item .ti-content {
	padding: 38px 24px;
	overflow: hidden;
}

.tournament-item .ti-thumb {
	width: 168px;
	height: 178px;
	float: left;
}

.tournament-item .ti-text {
	padding-left: 195px;
}

.tournament-item .ti-text a {
	color: #ffb320;
	margin-bottom: 20px;
}

/* Subrayado al pasar el cursor */
.tournament-item .ti-text h4:hover {
	color: #ffb320;
	text-decoration: underline;
	cursor: pointer;
}

.tournament-item .ti-text ul {
	list-style: none;
	margin-bottom: 20px;
}

.tournament-item .ti-text ul li {
	color: #fff;
	font-size: 12px;
	margin-bottom: 6px;
}

.tournament-item .ti-text ul li span {
	color: #9a9a9a;
}

.tournament-item .ti-text p {

	font-size: 12px;
	margin-bottom: 0;
}

.tournament-item .ti-text p span {
	font-weight: 500;
	font-size: 16px;
	color: #ffb320;
}

.tournament-item .ti-text .precio {
	font-weight: normal;
	color: #fff;
	font-weight: 0;
	margin-left: 10px;
	/* Ajusta el valor para tabular */
}

/*----------------------
  Review Section FOTOS
------------------------*/

.review-itemFotos .review-coverFotos {
	position: relative;
	margin-bottom: 30px;
	height: 500px;
}

.set-bgFotos {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

/*----------------------
  Review Section
------------------------*/

.review-section {
	background-position: right top;
}

.review-item .review-cover {
	position: relative;
	margin-bottom: 15px;
	height: 345px;
}

.review-item .review-cover .score {
	position: absolute;
	width: 54px;
	height: 54px;
	top: -27px;
	left: 26px;
	padding-top: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	z-index: 1;
}

.review-item .review-cover .score.yellow {
	background: #ffb320;
}

.review-item .review-cover .score.purple {
	background: #694eae;
}

.review-item .review-cover .score.pink {
	background: #ff20ae;
}

.review-item .review-cover .score.green {
	background: #4eae60;
}

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

.review-text {
	margin-top: 15px;
	text-align: center;
}


.review-item .review-text h5 {
	margin-bottom: 20px;
}

.review-item .review-text p {
	margin-bottom: 0;
}

.review-item .rating {
	margin-bottom: 20px;
}

.review-item .rating i {
	font-size: 12px;
}

/*----------------------
  Footer top Section
------------------------*/

.footer-top-section {
	background-image: url("../img/pattern.png");
	max-height: 650px;
}

.footer-top-section .container {
	height: 100%;
	width: 100%;
	display: flex;
	/* Activa flexbox */
	justify-content: center;
	/* Centra horizontalmente */
	align-items: center;
	/* Centra verticalmente */
	padding: 0%;
	padding: 10px;
}


.footer-top-section .containerTitulo {
	background-color: var(--primary-color);
}

.footer-top-section .container .footer-widget {
	height: 100%;
	width: 100%;
	position: absolute;
	padding: 40px 30px 7px;
	background: #252525;
	border: 1px solid #4a4a4a;
	overflow-y: scroll;
}

.footer-top-bg {
	position: absolute;
	left: -30px;
	bottom: -85px;
	z-index: 2;
}

.footer-top-section .fw-title {
	color: #fff;
	text-align: center;
	padding: 20px;
}


.footer-logo img {
	margin-bottom: 35px;
}




.footer-widget .fw-title {
	color: #fff;
	margin-bottom: 40px;
}

.latest-blog .lb-item {
	margin-bottom: 23px;
	overflow: hidden;
}

.latest-blog .lb-item .lb-thumb {
	width: 97px;
	height: 97px;
	float: left;
}

.latest-blog .lb-item .lb-content {
	padding-left: 110px;
}

.latest-blog .lb-item .lb-content .lb-date {
	font-size: 12px;
	color: #ffb320;
	margin-bottom: 8px;
}

.latest-blog .lb-item .lb-content p {
	font-size: 12px;
	margin-bottom: 5px;
	color: #d3d3d3;
}

.latest-blog .lb-item .lb-content .lb-author {
	font-size: 12px;
	color: #d3d3d3;
	opacity: 0.45;
}

.top-comment {
	overflow: hidden;
}

.top-comment .tc-item {
	margin-bottom: 23px;
	overflow: hidden;
}

.top-comment .tc-item .tc-thumb {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.top-comment .tc-item .tc-content {
	padding-left: 90px;
}

.top-comment .tc-item .tc-content p {
	font-size: 12px;
	color: #d3d3d3;
	margin-bottom: 5px;
}

.top-comment .tc-item .tc-content p:hover {
	text-decoration: underline;
	/* Agrega subrayado */
	cursor: pointer;
	/* Cambia el cursor a uno de enlace */
}


.top-comment .tc-item .tc-content p a {
	color: #ff205f;
}

.top-comment .tc-item .tc-content p span {
	color: #7a7a7a;
}

.top-comment .tc-item .tc-content .tc-date {
	font-size: 12px;
	color: #ffb320;
}

/*----------------------
  Footer Section
------------------------*/

.footer-section {
	padding: 18px 0 16px;
	overflow: hidden;
	background: #252525;
	z-index: 2000;
}

.footer-menu {
	list-style: none;
	float: right;
}

.footer-menu li {
	display: inline;
}

.footer-menu li a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #aeaeae;
	margin-left: 30px;
}

.copyright {
	float: left;
	margin-bottom: 0;
	font-weight: 500;
	color: #aeaeae;
}

/*------------------
  Contact Pages
--------------------
====================*/

.page-info-section {
	height: 499px;
	position: relative;
}

.page-info-section .pi-content {
	position: absolute;
	width: 100%;
	bottom: 65px;
	left: 0;
	z-index: 2;
}

.page-info-section .pi-content h2 {
	font-size: 60px;
	margin-bottom: 25px;
	font-weight: 400;
}

.page-info-section .pi-content h2 span {
	color: #ffb320;
}

.site-pagination {
	padding-top: 50px;
}

.site-pagination a,
.site-pagination span {
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	padding-top: 7px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	color: #131313;
	margin-right: 10px;
}

.site-pagination .active {
	background: #ffb320;
}

.site-pagination.sp-style-2 a,
.site-pagination.sp-style-2 span {
	background: #e5e5e5;
}

.site-pagination.sp-style-2 .active {
	background: #ffb320;
}

.widget-item {
	margin-bottom: 73px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.widget-item .widget-title {
	margin-bottom: 40px;
}

.widget-item .latest-blog .lb-item .lb-content p,
.widget-item .top-comment .tc-item .tc-content p {
	color: #131313;
}

.widget-item .latest-blog .lb-item .lb-content .lb-author {
	color: #737373;
}

.widget-item .top-comment .tc-item .tc-content {
	padding-right: 20px;
}

.widget-item .review-item {
	background: #eff2f5;
}

.widget-item .review-item .review-text {
	padding: 0 35px 20px;
}

.search-widget {
	position: relative;
}

.search-widget input {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
}

.search-widget button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: none;
	border: none;
	padding-right: 15px;
	color: #878787;
	cursor: pointer;
}

/*-----------------
  Categories page
--------------------*/

.recent-game-page .recent-game-item {
	margin-bottom: 42px;
}

/*-----------------
  Single blog page
--------------------*/

.single-blog-page .blog-thumb {
	height: 424px;
	padding-top: 24px;
	padding-left: 29px;
	margin-bottom: 40px;
	position: relative;
}

.single-blog-page .blog-thumb .rgi-extra {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70px;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star,
.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	height: 35px;
	width: 35px;
	float: left;
	display: block;
	padding: 6px 8px 0;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star {
	background: #ffb320;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	background: #ff205f;
}

.single-blog-page .blog-content h3 {
	margin-bottom: 10px;
}

.single-blog-page .blog-content .meta-comment {
	display: block;
	font-size: 12px;
	color: #737373;
	margin-bottom: 25px;
}

.single-blog-page .blog-content p {
	margin-bottom: 25px;
}

.comment-warp {
	padding-top: 50px;
}

.comment-title {
	margin-bottom: 45px;
}

.comment-list {
	list-style: none;
}

.comment-list li {
	margin-bottom: 40px;
	overflow: hidden;
}

.comment-list .comment .comment-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.comment-list .comment .comment-content {
	padding-left: 100px;
}

.comment-list .comment .comment-content h5 {
	font-size: 12px;
	color: #131313;
	font-weight: 400;
	margin-bottom: 10px;
}

.comment-list .comment .comment-content h5 span {
	color: #ffb320;
	padding-left: 18px;
}

.comment-list .comment .comment-content p {
	font-size: 12px;
	margin-bottom: 5px;
}

.comment-list .comment .comment-content .reply {
	font-size: 12px;
	color: #ff1d55;
}

.comment-form-warp {
	padding-top: 30px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
	margin-bottom: 24px;
}

.comment-form textarea {
	height: 243px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 38px;
}

/*-----------------
  Review page
--------------------*/

.review-page .review-item {
	margin-bottom: 63px;
}

.review-page .review-item .review-text h4 {
	margin-bottom: 10px;
}

.review-dark .review-item .review-text p {
	color: #b5b5b5;
}

.review-section.review-dark {
	background-position: center top;
}

/*-----------------
  Community page
--------------------*/

.community-page .site-pagination {
	padding-top: 62px;
}

.community-warp {
	max-width: 1367px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.28);
}

.community-post-list {
	list-style: none;
}

.community-post-list li {
	padding: 33px 55px 65px;
	margin-bottom: 21px;
	overflow: hidden;
	border: 1px solid #878787;
	background: #1f2225;
}

.community-post-list .community-post .author-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.community-post-list .community-post .post-content {
	padding-left: 100px;
}

.community-post-list .community-post .post-content h5 {
	font-size: 16px;
	color: #ff205f;
	font-weight: 400;
	margin-bottom: 10px;
}

.community-post-list .community-post .post-content h5 span {
	color: #7a7a7a;
	padding-left: 18px;
}

.community-post-list .community-post .post-content p {
	color: #fff;
	margin-bottom: 5px;
}

.community-post-list .community-post .post-content .post-date {
	font-size: 12px;
	color: #ffb320;
	margin-bottom: 18px;
}

.community-post-list .attachment-file {
	padding-top: 60px;
	max-width: 435px;
}

.community-top-title {
	margin-bottom: 50px;
}

.community-filter {
	margin-bottom: 80px;
}

.community-filter label {
	font-size: 18px;
	color: #1f2225;
	font-weight: 500;
	padding-right: 10px;
}

.community-filter select {
	width: 201px;
	height: 42px;
	font-size: 14px;
	padding: 0 18px;
	color: #1f2225;
	font-weight: 500;
}

/*-----------------
  Contact page
--------------------*/

.map {
	height: 515px;
	background: #ddd;
	margin-bottom: 90px;
}

.contact-info-list {
	padding-top: 55px;
	padding-bottom: 20px;
	list-style: none;
}

.contact-info-list li {
	margin-bottom: 30px;
}

.contact-info-list .cf-left {
	width: 95px;
	float: left;
	font-size: 16px;
	font-weight: 700;
	color: #ffb320;
}

.contact-info-list .cf-right {
	color: #878787;
	font-size: 15px;
	padding-left: 100px;
}

.social-links a {
	color: #474747;
	font-size: 16px;
	margin-left: 10px;
	margin-right: 20px;
}

/*------------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu {
		margin-right: 90px;
	}

	.hero-slider .owl-dots {
		max-width: 930px;
	}

	.review-section {
		background-position: right 10% top;
	}

	.review-item .review-cover {
		height: 280px;
	}

	.latest-blog .lb-item .lb-thumb {
		width: 55px;
		height: 55px;
	}

	.latest-blog .lb-item .lb-content {
		padding-left: 67px;
	}

	.top-comment .tc-item .tc-content {
		padding-left: 95px;
	}

	.footer-top-bg {
		max-width: 370px;
	}

	.page-info-section .pi-content h2 {
		font-size: 50px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		max-width: 130px;
	}

	.main-menu {
		margin-right: 25px;
	}

	.main-menu ul li a {
		margin-left: 15px;
	}

	.user-panel {
		padding: 8px 15px;
	}

	.hero-slider .hs-text h2 {
		font-size: 50px;
	}

	.hero-slider .owl-dots {
		max-width: 690px;
	}

	.recent-game-item {
		margin-bottom: 42px;
	}

	.tournament-item .ti-thumb {
		width: 100%;
		height: 230px;
		float: none;
	}

	.tournament-item .ti-text {
		padding-left: 0;
		padding-top: 20px;
	}

	.review-section {
		background-position: left top;
	}

	.review-item {
		margin-bottom: 63px;
	}

	.footer-logo {
		margin-bottom: 50px;
	}

	.latest-blog .lb-item .lb-thumb {
		width: 80px;
		height: 80px;
	}

	.latest-blog .lb-item .lb-content {
		padding-left: 95px;
	}

	.footer-top-bg {
		display: none;
	}
}