:root {
  --white-color: #fafafb;
  --background-color: #17171e;
  --grey-color: #b5b5be;
  --dark-grey-color: #292932;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  font-size: 62.5%;
  font-weight: 500;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--white-color);
  height: 100vh;
  background-color: #fafafa;
}

.lead { font-size: 1.5rem; font-weight: 300; }
.container { margin: 150px auto; max-width: 960px; color: #000; }

.side-bar {
  width: 23.2rem;
  height: 100%;
  padding: 0.5rem 1.2rem;
  background-color: #010725;
  position: fixed;
  transition: all 0.5s ease;
  top: 0;
	z-index: 99;
}

.logo-name-wrapper {
  position: relative;
  margin-bottom: 2.1rem;
  display: flex;
  font-size: 1.2rem;
}

.logo-name {
  display: flex;
  align-items: center;
}

.logo-name__name {
  margin-left: 0.9rem;
  white-space: nowrap;
}
.logo-name__button {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.8rem;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.logo-name__icon {
  font-size: 2.1rem;
  color: #2cbeff;
}

.message {
  background-color: var(--dark-grey-color);
  display: flex;
  align-items: center;
  padding: 1.55rem 0 1.55rem 1.2rem;
  border-radius: 0.4rem;
  margin-bottom: 3.6rem;
  cursor: pointer;
  position: relative;
}

.message-icon {
  font-size: 2rem;
  transform: translateX(3rem);
  transition: all 0.5s ease;
}

.message-text {
  margin-left: 1.1rem;
  font-size: 1.4rem;
  white-space: nowrap;
  transform: translateX(3rem);
  transition: all 0.5s ease;
}

.features-list {
  padding-bottom: 1rem;
  border-bottom: 1px solid #292932;
  list-style: none;
}

.features-item {
  display: flex;
    align-items: center;
    position: relative;
    padding: 0.2rem 0.2rem;
    margin: 0.1rem auto;
    color: var(--grey-color);
    background-image: linear-gradient(to right, #242957, #03071e);
    border: 1px solid #020266;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s ease;
}
.features-item::before {
  transition: 0.5s ease;
  content: '';
  position: absolute;
  left: -1.2rem;
  height: 100%;
  border-left: 3px solid var(--white-color);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
}

.features-item:hover {
  color: var(--white-color);
  transition: 0.5s ease;
}

.features-item:hover::before {
  opacity: 1;
  visibility: unset;
}

.features-item-icon {
  font-size: 2rem;
}

.features-item-text {
  margin-left: 0.9rem;
    transition: opacity 0.6s ease;
    font-weight: 500;
    opacity: 1;
    color: #ffffff;
}

.inbox-number {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #1e75ff;
  padding: 0.5rem 0.9rem;
  border-radius: 0.4rem;
  color: var(--white-color);
  opacity: 1;
  transition: 0.6s linear;
}

.inbox-icon {
  position: relative;
	vertical-align: middle;
}

.inbox-icon .status {
  position: absolute;
  top: 0;
  right: -1px;
  background-color: #1e75ff;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  opacity: 0;
  transition: 0.6s linear;
}

.category-list {
  padding-top: 2.1rem;
  padding-bottom: 0.9rem;
  color: var(--grey-color);
  list-style: none;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid #292932;
}

.category-header {
  font-size: 0.9rem;
  text-transform: uppercase;
  line-height: 1.8rem;
  color: #2dc8ff;
  font-weight: bold;
  margin: 1.1rem auto;
  white-space: nowrap;
}

.category-item {
  position: relative;
  padding: 0.9rem 1.1rem;
  line-height: 1.8rem;
  cursor: pointer;
  white-space: nowrap;
}

.category-item-status {
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 50%;
  border: none;
  background-color: white;
  display: inline-block;
}
.category-item-text {
  margin-left: 1rem;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.category-item-number {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.chat-list {
  padding: 2.1rem 0;
  font-size: 1.2rem;
}

.chat-header {
  text-transform: uppercase;
  line-height: 1.8rem;
  color: var(--white-color);
  margin-bottom: 1.3rem;
  white-space: nowrap;
}

.chat-new-btn {
  color: #1e75ff;
  background-color: transparent;
  outline: none;
  border: none;
  line-height: 1.8rem;
  display: flex;
  align-items: center;
  padding-bottom: 2.1rem;
  padding-left: 0.1rem;
  cursor: pointer;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.chat-new-btn-text {
  white-space: nowrap;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.chat-icon {
  font-size: 2.1rem;
  margin-right: 1.2rem;
}

.chat-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2.1rem;
  color: var(--grey-color);
  cursor: pointer;
}

.chat-item-avatar-wrapper {
  position: relative;
}
.chat-item-avatar-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: -3px;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  background-color: #79d861;
  opacity: 0;
  transition: 0.6s linear;
}

.chat-item-avatar-wrapper.has-message::before {
  background-color: #1e75ff;
  border: 2px solid var(--white-color);
  height: 6px;
  width: 6px;
}

.chat-item-avatar {
  object-fit: cover;
  object-position: top;
  height: 2.1rem;
  width: 2.1rem;
  border-radius: 50%;
  border: 1px solid var(--white-color);
}

/* background color in inline style */
.chat-item-status {
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 50%;
  border: none;
  background-color: white;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: 5px;
  opacity: 1;
  transition: 0.6s linear;
}
.chat-item-number {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #1e75ff;
  padding: 0.5rem 0.9rem;
  border-radius: 0.4rem;
  color: var(--white-color);
  opacity: 1;
  transition: 0.6s linear;
}

.chat-item-name {
  white-space: nowrap;
  transition: opacity 0.6s ease;
  opacity: 1;
  margin-left: 1.4rem;
}

.tooltip {
  position: absolute;
  top: -2.1rem;
  left: 6.4rem;
  background-color: white;
  color: var(--background-color);
  border-radius: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-size: 1.4rem;
  transition: 0s;
  opacity: 0;
  display: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.side-bar.collapse .message:hover .tooltip,
.features-item:hover .tooltip,
.category-item:hover .tooltip,
.chat-new-btn:hover .tooltip {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
  opacity: 1;
}

.side-bar.collapse {
  width: 6.4rem;
}

.side-bar.collapse .tooltip {
  display: block;
}

.side-bar.collapse .logo-name,
.side-bar.collapse .category-header,
.side-bar.collapse .chat-header,
.side-bar.collapse .chat-new-btn-text,
.side-bar.collapse .features-item-text,
.side-bar.collapse .inbox-number,
.side-bar.collapse .category-item-text,
.side-bar.collapse .category-item-number,
.side-bar.collapse .message-text,
.side-bar.collapse .chat-item-name,
.side-bar.collapse .chat-item-number,
.side-bar.collapse .chat-item-status {
  opacity: 0;
  pointer-events: none;
}

.side-bar.collapse .message-text {
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
}
.side-bar.collapse .message-icon {
  transform: translateX(0);
}
.side-bar.collapse .logo-name__button {
  right: 0.5rem;
}

.side-bar.collapse .inbox-icon .status,
.side-bar.collapse .chat-item-avatar-wrapper::before {
  opacity: 1;
}
.collapse:not(.show) {
    display: block !important;
}
.wrapper{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	background: #03071e;
	display: block;
}
.w-100{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	display: block;
}
.header{
	background: #242957;
}
.contain-web{
	width: 100%;
	max-width: 1200px;
	height: auto;
	text-align: center;
	margin: 0 auto;
	display: block;
}
.logo a img{
	width: 50%;
	height: auto;
	max-width: 134px;
	text-align: left;
	padding: 5px 0;
	display: block;
}
.form-login{
	width: 100%;
	max-width: 250px;
	float: right;
	text-align: right;
	background: #1d2344;
	padding: 2px 5px;
	border-radius: 25px;
	margin: 0 auto;
	display: block;
}
.form-login ul{
	width: 100%;
	display:flex;
}
.form-login ul li{
	flex: 1;
	padding: 5px 2px;
}
.form-login ul li button.btn-01{
	width: 100%;
	border-radius: 25px;
	
}
.btn-login{
	 background-image: linear-gradient(to right, #2db8f8, #7657d2);
	font-size: 0.9rem;
	color: #ffffff;
	font-weight: bold;
	border: none;
}
.btn-register{
	 background-image: linear-gradient(to right, #2db8f8, #40dcc2);
	font-size: 0.9rem;
	color: #ffffff;
	font-weight: bold;
	border: none;
}
.slider{
	padding: 10px 0;
}
.carousel-item img{
	border-radius: 25px;
}
.section{
	width: 100%;
	padding: 10px 0;
	display: block;
}
.promotion ul{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.promotion ul li{
	width: 389.333px;
	padding: 5px;
	display: inline-block;
}
.item-promotion{
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}
.item-top{
	position: absolute;
	top: 5px;
	right: 10px;
}
.item-promotion img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.item-top img{
	width: 170px;
	height: auto;
}
.bestgames ul{
	width: 100%;
	height: auto;
	/*overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;*/
	display: block;
	
}
.bestgames ul li{
	width: 207px;
	height: auto;
	padding: 5px;
	display: inline-block;
}
.item-menu img{
	width: 100%;
}
.item-menu, .item-popular {
  position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.item-popular img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.item-menu:hover .image, .item-popular:hover .image {
  opacity: 0.5;
}

.item-menu:hover .middle, .item-popular:hover .middle {
  opacity: 1;
}
.title{
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.5rem;
	color: #ffffff;
	display: block;
}
.popularames ul.popular li{
	padding: 5px 5px;
}
.popularames ul.popular li a{
	margin: 5px auto;
}
.item-popular{
	padding: 5px 0px;
}
.item-popular img{
	width: 100%;
}
.title-02{
	width: 100%;
	height: auto;
	padding: 5px 0;
	display: flex;
}
.title-02 span{
	flex: 1;
	vertical-align: middle;
}
.title-02 span.logo-popular-slot{
	text-align: right;
	float: right;
}
.title-02 span.logo-popular-slot img{
	width: auto;
	height: 25px;
	text-align: right;
	float: right;
}
.title-02 span.nameslot{
	font-size: 0.9rem;
	color: #ffffff;
}
.item-top-slot{
	background: #00144a;
	border-radius: 10px;
	padding: 2px;
}
.item-top-slot img{
	width: 100%;
	border-radius: 10px;
}
.topslot{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.footer{
	background: #000b28;
}
.providers-logo ul{
	width: 100%;
	height: auto;
	display: block;
}
.providers-logo ul{
	width: 100%;
	height: auto;
	display: block;
}
.providers-logo ul li{
	display: inline-block;
	padding: 5px 5px;
	width: 143px;
	height: auto;
	text-align: center;
	margin: 0 auto;
}
.item-provider{
	width: 100%;
	height: auto;
	background: #131838;
	border-radius: 7px;
}
.item-provider img{
	width: auto;
	height: 45px;
}
.pay ul{
	width: 100%;
	height: auto;
	text-align: left;
	display: block;
}
.pay ul li{
	display: inline-block;
	padding: 5px 5px;
}
.pay ul li a img{
	width: 50px;
}
.p-support{
	width: 100%;
	height: auto;
	text-align: left;
	color: #ffffff;
	font-size: 0.9rem;
	padding: 5px 0;
	display: block;
}
.top-footer{
	display: none;
}
.lobbys{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	padding: 5px 0;
	display: block;
}
.itemsh {
  position: relative;
}
.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.itemsh:hover .image {
  opacity: 0.5;
}

.itemsh:hover .middle {
  opacity: 1;
}

.iconplays {
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}
.iconplays img{
	border-radius: 50%;
	width: 50px;
}
.features-item a{
	width: 100%;
	height: auto;
	display: block;
	overflow: hidden
}
@media (max-width: 500px) {
    .contain-web{
		width: 100%;
		max-width: 500px;
		height: auto;
		text-align: center;
		margin: 0 auto;
		display: block;
		}
	.logo a img{
	width: 100%;
	height: auto;
	max-width: 104px;
	text-align: left;
	padding: 2px 0;
	display: block;
}
	.form-login ul li.m-hide{
	display: none;
}
	.slider{
		padding: 5px 0;
	}
	.carousel-item img{
		border-radius: 15px;
	}
   .section{
	padding: 5px 0;
}
	.promotion ul {
    width: 100%;
    height: auto;
    overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
}
	.promotion ul li{
	width: 321.667px;
	padding: 5px;
	display: inline-block;
}
	.collapse:not(.show) {
    display: none !important;
	transform: translateY(-100%);
    visibility: visible;	
}
	.item-top img {
    width: 139px;
    height: auto;
}
	.side-bar {
    width: 12.0rem;
    height: auto;
    padding: 0.5rem;
    background-color: #17171e;
    position: fixed;
    transition: all 0.5s ease;
    top: 0;
    z-index: 99;
}
	.menu{
		display: none !important;
	}
	.mmenu{
		display: block !important;
	}
	.title{
		font-size: 0.8rem;
	}
	.menu button.slick-prev:before{
	content: none !important;
}
.menu button.slick-next:before{
	content: none !important;
}
	.popular button.slick-prev:before{
	content: none !important;
}
.popular button.slick-next:before{
	content: none !important;
}
	.item-menu{
		border-radius: 10px;
	}
	.title-02 span.logo-popular-slot img{
	width: auto;
	height: 20px;
	text-align: right;
	float: right;
}
	.fishing_slots{
	width: 100%;
	height: 200px;
	margin: 0 auto;
	overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap;
  scroll-snap-type: y mandatory;
}

	.title-02 span.nameslot{
	font-size: 0.7rem;
	color: #ffffff;
}
	.logo a img{
		padding: 8px 0;
	}
	.providers-logo ul{
	width: 100%;
	height: auto;
	overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
	display: block;
}
	.pay ul li a img{
	width: 25px;
}
	.top-footer{
		background: #0e1438;
		padding: 2px 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;overflow: hidden;
		display: block;
	}
	.item-footer{
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 auto;
		display: block;
	}
	.item-footer img{
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.item-footer p{
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 auto;
		font-size: 0.7rem;
		color: #ffffff;
		display: block;
	}
	.wrapper{
		overflow: hidden;
	}
	.footer{
		padding-bottom: 60px;
	}
}