body {
	background: #111620;
	min-height: 100vh;
	display: flex;
    flex-direction: column;
}

a, a:link, a:visited, a:active {
	text-decoration: none !important;
}
ul, ul li {
	list-style: none;
	margin: 0;
   	padding: 0;
}
button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    outline: inherit;
}
.btb:focus, button:focus, .dropdown-toggle:focus {
	outline: none;
    box-shadow: none;
    border: none;
}

a {
	color: #A5A8AA;
	transition: color 0.5s ease;
}
a:hover {
	color: #FF63C0;
}

/* Navbar */
.navbar {
	background: linear-gradient(to bottom, rgba(17,22,32,1.0) 0%, rgba(17,22,32,0) 100%);
}
.navbar-toggler, .nav-item {
	border-width: 0 !important;
}
.nav-link:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 0;
}
.navbar {
  top: 0;
  transition: top 0.3s ease-in-out;
}

/* nav-link color */
.navbar-nav {
	display: flex;
}
.nav-link {
	color: white;
	transition: color 0.5s ease;
	font-weight: bold;
}
.nav-link:hover {
	color: #FF63C0;
}
.nav-link:focus {
	text-decoration: none !important;
	color: #FF63C0;
}

/* Language menu on navbar */
.dropdown-toggle::after {
  display: none;
}
.lang-menu img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

/* My dropdown menu */
.my-dropdown-btn::after {
  display: inline-block;
}
.my-dropdown-btn.active, .my-dropdown-btn:active, .my-dropdown-btn:focus {
	color: #FF63C0 !important;
}

/* Toggle button on navbar */
.toggle-btn {
	border: none;
	background: none;
	color: white;
	position: relative;
}
.toggle-btn i {
	top: 0;
	left: 0;
	margin: auto;
  	position: absolute;
    transition: transform 0.3s ease-out; /* animation here */
}
.toggle-btn .fa-bars {
    transform: rotate(0deg) scale(1);
	-webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
}
.toggle-btn .fa-times {
    transform: rotate(45deg) scale(0);
	-webkit-transform: rotate(45deg) scale(0);
    -moz-transform: rotate(45deg) scale(0);
    -ms-transform: rotate(45deg) scale(0);
    -o-transform: rotate(45deg) scale(0);
}
.toggle-btn .fa-times.active,
.toggle-btn .fa-bars:not(.active) {
	transform: rotate(0deg) scale(1);
	-webkit-transform: rotate(0deg) scale(1);
	-moz-transform: rotate(0deg) scale(1);
	-ms-transform: rotate(0deg) scale(1);
	-o-transform: rotate(0deg) scale(1);
}
.toggle-btn .fa-times:not(.active),
.toggle-btn .fa-bars.active {
	transform: rotate(45deg) scale(0);
	-webkit-transform: rotate(45deg) scale(0);
	-moz-transform: rotate(45deg) scale(0);
	-ms-transform: rotate(45deg) scale(0);
	-o-transform: rotate(45deg) scale(0);
}

/* Navbar menu */
#nav-collapse {
	position: fixed;
	width: 100%;
	background-color: rgba(14,18,25,0.95);
	color: white;
	z-index: 100;
    max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
}
#nav-collapse a {
	color: white;
	transition: color 0.5s ease;
}
#nav-collapse a:hover {
	color: #FF63C0;
}
.ctg-in-collapse span {
	display: inline-block;
	margin-top: 3px !important;
}
.navbar-in-collapse span {
	display: inline-block;
	margin-top: 8px !important;
}

.navbar-brand {
	position: absolute;
	left: 50%;
	top: -1px;
	transform: translateX(-50%);
}

/* Footer */
footer {
	background: transparent;
	color: #8E9194;
}
footer h6 {
	color: white;
}

/* Search field */
.search-box {
	position: relative;
}
#search-input {
    width: 0;
    transition: width 0.5s ease-in-out;
	padding-left: 0;
	padding-right: 0;
	border-width: 0;
	background-color: white;
	z-index: 100;
	height: 40px;
}
#search-input:focus {
    text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 0;
}
.search-icon {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 12px;
	right: 4px;
	color: gray;
	z-index: 200;
	display: none;
}
.search-collapsed {
    width: 0 !important;
}
.search-expanded {
    width: 200px !important;
	padding-left: 6px !important;
	padding-right: 6px !important;
}
.search-btn {
	color: white;
}
.search-btn:hover {
	color: #FF63C0;
}
#search-btn:active {
  color: #FF63C0;
}
#suggestions {
	background: #FFFFFF;
	width: 0px;
	position: absolute;
	top: 48px;
	right: 0px;
	transition: width 0.5s ease-in-out;
	border-radius: 4px;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
	overflow: hidden;
	padding: 0 !important;
}
#suggestions li {
	padding-left: 6px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-top: 4px;
	margin: 0;
}
#suggestions li a {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.95em;
	color: #555555;
}

/* video-list */
.video-list h5, .video-list h4 {
	color: white;
}
.video-item {
	position: relative;
}
.video-item img {
	width: 100%;
	object-fit: cover;
	border-radius: 6px;
}
.img-placeholder {
    background: url('/resources/img/loading.gif') no-repeat;
	background-color: white;
	background-size: 44px 44px;
	background-position: center;
    transition: opacity 1s;
}
.video-item-title {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.9em;
}
.video-item-badge {
	position: absolute;
	top: 8px;
	left: 20px;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: white;
	font-size: 0.9em;
	background-color: rgba(0,0,0,0.55);
	border-radius: 6px;
}
.video-item-rating {
	font-size: 0.88em;
}

/* not found */
.not-found p {
	color: white;
}

/* video page */
.player-col h5 {
	color: white;
}
.main-ctg-tag {
	color: #FF8081;
}
.ctg-tag {
	color: #568FC5;
}
.player-col .ctg {
	display: inline-block;
	margin-top: 3px !important;
}
.player-col .model {
	text-align: center;
}
.player-col .model img {
	width: 60px;
	height: 60px;
	border-radius: 60px;
}
.model-name {
	font-size: 0.92em;
	width: 80px;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	overflow: hidden;
}
.player-col .info {
	color: #8D9093;
}
.like-btn {
	background: #343A51;
	border-radius: 30px;
	line-height: 40px;
	width: 100px;
	transition: background 0.5s ease;
	color: white;
	font-size: 0.92em;
}
.like-btn:hover {
	background: #434C75;
	color: hotpink;
	border-width: 20px;
	font-size: 1.05em;
}
.like-btn:active {
}
.like-btn i {
	color: hotpink;
}
.like-btn span {
	transition: color 0.5s ease;
}
.previews-list {
	width: 300px;
	max-height: 400px;
	margin-top: 10px;
	overflow: hidden;
	overflow-y: auto;
}
.previews-list li {
	margin-bottom: 10px;
}
.previews-list img {
	width: 100%;
}
.previews-list::-webkit-scrollbar {
  	width: 10px;
}
/* This will change the style of the handle or 'thumb' */
.previews-list::-webkit-scrollbar-thumb {
   background-color: #555555;
   border-radius: 5px;
   transition: background-color 0.5s ease;
}
/* On hover */
.previews-list::-webkit-scrollbar-thumb:hover {
  background-color: hotpink;
}
/* This will style the Track */
.previews-list::-webkit-scrollbar-track{
  background: rgba(0,0,0,0.2);
}
.previews-col h4 {
	color: white;
}

/* Glide.js */
.glide__bullets {
	margin: 0 auto;
	text-align: center;
	margin-top: 20px;
}
.glide__bullet {
    background: white;
    width: 14px;
    height: 14px;
    border-radius: 10px;
	transition: background 0.5s ease;
	transition: width 0.5s ease;
	margin-left: 2px;
	margin-right: 2px;
}
.glide__bullet--active {
    background: #FF63C0;
	width: 30px;
}

/* recommended carousel */
#recommended-carousel img {
	width: 100%;
	object-fit: cover;
}
#recommended-carousel {
	padding-left: 0px;
	padding-right: 0px;
}

/* ads */
.mobile-ads, .pc-ads {
	text-align: center;
	margin-top: 20px;
}

/* Search container */
.search h3 {
	color: white;
}
.pagination .page-link {
	background-color: #ffffff;
	color: #555555;
}
.pagination .page-link:hover {
	background-color: #FF63C0;
	border-color: #FF63C0;
	color: white;
}
.pagination .page-item .active {
	background-color: #FF63C0;
	border-color: #FF63C0;
	color: white;
}
.pagination > li > a:active, .pagination > li > a:focus {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3)!important;
}

.my-radio input[type="radio"] {
	display: none;
}

.my-radio span {
	display: inline-block;
	height: 20px;
	cursor: pointer;
	color: #A5A8AA;
	margin-top: 4px;
	margin-left: 6px;
	margin-right: 6px;
}
.my-radio .underline {
	width: 60%;
	height: 3px;
	display: block;
	background-color: transparent;
	margin: 0 auto;
	margin-top: 4px;
	border-radius: 4px;
}
.my-radio input[type=radio]:checked + span{
	color: white;
}
.my-radio input[type=radio]:checked ~ .underline {
	background-color: #1DB954 !important;
}
.radio-btn-group {
	max-width: 768px;
	margin: 0 auto;
}

/* Models */
.model-list {
	margin: 0 auto;
	text-align: center;
}
.model-list .model img {
	width: 100%;
	border-radius: 100px;
}
.model-list .model-name {
	margin: 0 auto;
	text-align: center;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Disclaimer */
.disclaimer {
	color: white;
	max-width: 768px;
}
.disclaimer h4 {
	text-align: center;
}

.themes-models h5 {
	color: white;
}
.themes-models img {
	object-fit: cover;
}
.themes-models a {
	font-size: 0.9em;
}

.model {
	padding: 0;
}

/* Extra Small screen down */
@media only screen and (max-width: 576px) {
	.player-col .player {
		height: 220px !important;
	}
}

/* Small screen only */
@media only screen and (min-width: 576px) and (max-width: 768px) {
	.player-col .player {
		height: 280px !important;
	}
}

/* Medium down */
@media only screen and (max-width: 768px) {
	.video-item img {
		height: 120px;
	}

	#previews-carousel {
		height: 200px;
	}
	#previews-carousel img {
		width: 100%;
		height: 200px;
		object-fit: cover;
	}

	#recommended-carousel img {
		height: 220px;
	}

	.model-list .model {
		font-size: 0.92em;
	}
	.model-list .model img {
		width: 50px;
		height: 50px;
	}
	.player-col .model img {
		width: 50px;
		height: 50px;
		border-radius: 50px;
	}

	.themes-models .model img {
		width: 56px;
		height: 56px;
		border-radius: 60px;
	}
	.themes-models .main-ctg img {
		width: 56px;
		height: 56px;
		border-radius: 10px;
	}
}

/* Medium only */
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.video-item img {
		height: 140px;
	}

	.player-col .player {
		height: 320px !important;
	}
}

/* Medium up */
@media only screen and (min-width: 768px) {
	.player-col .player {
		height: 320px !important;
	}
}

/* Large only */
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.player-col .player {
		height: 390px !important;
	}

	#previews-carousel {
		height: 250px;
	}
	#previews-carousel img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}

	#recommended-carousel img {
		height: 280px;
	}

	.model-list .model img {
		width: 70px;
		height: 70px;
	}

	.themes-models .model img {
		width: 80px;
		height: 80px;
		border-radius: 70px;
	}
	.themes-models .main-ctg img {
		width: 80px;
		height: 80px;
		border-radius: 10px;
	}
}

/* Large down */
@media only screen and (max-width: 992px) {
	.navbar-brand img {
		width: 90px;
	}
	.navbar {
		height: 50px;
	}
	.navbar.retract {
	  top: -50px;
	}

	.lang-btn img {
		width: 24px;
		height: 24px;
	}
	.toggle-btn {
		font-size: 20px;
		width: 20px;
		height: 20px;
	}
	.toggle-btn i {
		width: 20px;
		height: 20px;
	}

	.pc-ads {
		display: none;
	}
}

/* Large up */
@media only screen and (min-width: 992px) {
	.navbar {
		height: 60px;
	}
	.navbar.retract {
	  top: -60px;
	}
	.navbar-brand img {
		width: 120px;
	}

	.lang-btn img {
		width: 30px;
		height: 30px;
	}
	.toggle-btn {
		font-size: 24px;
		width: 24px;
		height: 24px;
	}
	.toggle-btn i {
		width: 24px;
		height: 24px;
	}

	.video-item img {
		height: 200px;
	}

	.video-list h5 {
		font-size: 1.4em;
	}

	.player-col .player {
		height: 540px !important;
	}

	#previews-carousel {
		height: 260px;
	}
	#previews-carousel img {
		width: 100%;
		height: 260px;
		object-fit: cover;
	}

	.mobile-ads {
		display: none;
	}

	#recommended-carousel img {
		height: 220px;
	}

	.model-list .model img {
		width: 70px;
		height: 70px;
	}

	.themes-models .model img {
		width: 70px;
		height: 70px;
		border-radius: 70px;
	}
	.themes-models .main-ctg img {
		width: 70px;
		height: 70px;
		border-radius: 10px;
	}
}

/* X Large only */
@media only screen and (min-width: 1140px) and (max-width: 1320px) {
	.player-col {
		flex: none;
		width: 100%;
	}
	.previews-col {
		flex: none;
		width: 100%;
	}
	.player-col .player {
		height: 600px !important;
	}

	#recommended-carousel img {
		height: 220px;
	}
}

/* X Large down */
@media only screen and (max-width: 1320px) {
	.player-col {
		flex: none;
		width: 100%;
	}
	.previews-col {
		flex: none;
		width: 100%;
		margin: 0 auto;
		margin-top: 30px;
		text-align: center;
	}
	.previews-list {
		display: none;
	}
}

/* X Large up */
@media only screen and (min-width: 1320px) {
	.previews-col {
		flex: none;
		width: 320px;
		right: 0;
	}
	.player-col {
		flex: 1,
	}
	.player-col .player {
		height: 550px !important;
	}
	#previews-carousel, #previews-carousel-title {
		display: none !important;
	}

	#recommended-carousel img {
		height: 300px;
	}

	.model-list .model img {
		width: 90px;
		height: 90px;
	}
	.theme .model img {
		width: 90px;
		height: 90px;
	}

	.themes-models .model img {
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
	.themes-models .main-ctg img {
		width: 60px;
		height: 60px;
		border-radius: 10px;
	}
}

/* XX Large down */
@media only screen and (max-width: 1400px) {
	.navbar-nav {
		display: none;
	}
}