/* Wrapper */
.rvls-main
{
	position: relative;
	max-width: 1280px;
	min-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	font-size: 16px;
	user-select: none;
}

.rvls-main .list
{
	display: flex;
	gap: 36px;
	overflow: auto;
	scrollbar-width: none;
	padding: 26px 0 60px;
}

.rvls-main .btn
{
	position: absolute;
	right: 56px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	background: url(../assets/public/commons/yellow-left.svg) no-repeat center center;
	background-size: contain;
	cursor: pointer;
}

.rvls-main .btn.right
{
	right: 10px;
	background-image: url(../assets/public/commons/yellow-right.svg);
}

.rvls-main .btn.disabled
{
	cursor: not-allowed;
}

.rvls-main .btn.disabled.left
{
	background-image: url(../assets/public/commons/grey-left.svg);
}

.rvls-main .btn.disabled.right
{
	background-image: url(../assets/public/commons/grey-right.svg);
}

@media (max-width: 1280px)
{
	.rvls-main
	{
		max-width: 100vw;
		min-width: 100vw;
	}
}

@media (max-width: 800px)
{
	.rvls-main .scroll
	{
		gap: 50px;
	}
}

@media (max-width: 500px)
{
	.rvls-main
	{
		padding: 0 16px;
	}

	.rvls-main .scroll
	{
		gap: 16px;
	}
}

/* Item */
.rvls-main .panel
{
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 350px;
	padding: 12px 20px;
	background-color: white;
	border-radius: 20px;
}

.rvls-main .panel .item
{
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
}

.rvls-main .panel .ttl
{
	padding-bottom: 10px;
	text-align: center;
	font-weight: bold;
}

.rvls-main .panel .rate-txt
{
	width: 200px;
}

.rvls-main .panel .name
{
	font-weight: bold;
}

.rvls-main .panel .date
{
	font-style: italic;
}

.rvls-main .panel .comment
{
	max-height: 135px;
	overflow: auto;
	text-overflow: ellipsis;
}

.rvls-main .panel.advisable
{
	padding-bottom: 4px;
}

.rvls-main .panel.advisable .comment
{
	min-height: 110px;
	max-height: 110px;
}

.rvls-main .panel.advisable .note
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 10pt;
	font-style: italic;
}

.rvls-main .panel.advisable .note .chk
{
	width: 20px;
	height: 24px;
	background: url(../assets/ico/thumb-up.svg) no-repeat center top;
	background-size: contain;
}

.rvls-main .panel:not(.advisable) .note
{
	display: none;
}
