.top-casino {
	margin-bottom: 35px;
	margin-top: 5px;
}

.top-casino .heading {
	background-color: #ee973a;
	padding: 10px;
	position: relative;
}

.top-casino .flag {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 90px;
}

.top-casino .title {
	text-transform: uppercase;
	color: #000;
	margin-bottom: 0;
	font-size: 30px;
}

.top-casino .casino-list {
	background-color: #000;
	padding: 0;
}

.top-casino .casino-item {
	/* border-bottom: 1px solid #fff; */
	/* padding-bottom: 15px; */
	padding-top: 15px;
}

.top-casino .wrap-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #fff;
	justify-content: space-between;
	padding: 0 10px 10px 10px;
}

.top-casino .wrap-logo {
	position: relative;
}

.top-casino .logo {
	max-width: 60px;
	border-radius: 50%;
	aspect-ratio: 1;
    object-fit: cover;
	display: block;
}

.top-casino .info-icon {
	max-width: 15px;
	position: absolute;
	top: -5px;
	right: -5px;
	display: none;
}

.top-casino .offer {
	margin-bottom: 0;
	width: calc(100% - 60px - 225px);
	padding-left: 20px;
	padding-right: 20px;
	font-size: 21px;
}

.top-casino .offer p {
	margin-bottom: 0;
}

.top-casino .cta {
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
	width: 200px;
	gap: 5px;
}

.top-casino .cta .play-now {
	background-color: #23ff67;
    border-radius: 30px;
    color: #000;
	font-size: 16px;
    font-weight: 800;
    line-height: 40px;
    padding: 0 8px;
    display: flex;
    align-items: center;
	justify-content: space-between;
	gap: 5px;
    text-decoration: none;
}

.top-casino .cta .read-more {
	padding: 0;
    text-decoration: underline;
    color: #fff;
	line-height: 1;
}

.top-casino .read-all {
	background-color: #000;
	text-align: center;
	padding: 20px 0;
}

.top-casino .btn-read-all {
	background-color: #fff;
    color: #000;
	font-weight: 500;
    padding: 15px 20px;
	line-height: 1;
    border-radius: 99px;
    display: inline-block;
    text-decoration: none;
	text-transform: uppercase;
}

.top-casino .wrap-more-information {
    color: #fff;
}

.top-casino .more-information-heading {
    background-color: #393939;
    color: #fff;
    text-align: center;
}

.top-casino .more-information-heading.active span::after {
    transform: translateY(-50%) rotate(180deg);
}

.top-casino .more-information-heading span {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.top-casino .more-information-heading span::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 10px;
    background-image: url('../../images/arrow-down.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.top-casino .more-information-content {
    padding: 0 10px;
    background-color: #222222;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}

.top-casino .more-information-content.active {
    max-height: 1000px;
}

.top-casino .more-information-content p {
    margin-bottom: 0;
}

.top-casino .more-information-content .group-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #fff;
    padding: 10px 0;
}

.top-casino .more-information-content .feature-title {
    line-height: 1.5;
    font-size: 14px;
}

.top-casino .more-information-content .feature-value {
    color: #23ff66;
    font-weight: 500;
    font-size: 21px;
    line-height: 1.5;
}

.top-casino .more-information-content .group-features div {
    text-align: center;
}

.top-casino .more-information-content .group-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.top-casino .more-information-content .group-bottom .rating-stars {
    display: inline-flex;
    gap: 5px;
    padding-left: 5px;
}

.top-casino .more-information-content .group-bottom .rating {
    font-size: 16px;
}

.top-casino .more-information-content .group-bottom .rating svg {
    width: 16px;
    height: 16px;
}

.top-casino .more-information-content .group-bottom .rating .selected {
    color: #23ff66;
}

.top-casino .more-information-content .custom-link a {
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
}

@media only screen and (max-width: 430px) {
    .top-casino {
		margin-left: -15px;
		margin-right: -15px;
	}

	.top-casino .title {
		font-size: 23px;
	}

	.top-casino .info-icon {
		display: block;
	}

	.top-casino .offer {
		line-height: 1.2;
		font-size: 18px;
		width: calc(100% - 60px - 95px);
		padding-right: 10px;
		padding-left: 10px;
	}

	.top-casino .cta {
		width: 95px;
		flex-direction: column;
		gap: 8px;
	}

	.top-casino .cta .play-now {
		font-size: 20px;
		line-height: 40px;
		padding: 0 6px;
		width: 100%;
		justify-content: center;
	}

	.top-casino .cta .read-more {
		display: none;
	}

    .top-casino .more-information-content .feature-title {
        /* font-size: 14px; */
    }
}