
.filter-modal-base {
	position: fixed;
	display: flex;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(3px);
	z-index: 100;
}
.filter-modal-base .frame {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	background: white;
	box-shadow: 0 4px 6px rgba(125, 125, 125, 0.3);
	min-width: 300px;
	max-width: 100%;
	height: 100%;
	padding: 20px;
}
.filter-modal-base .frame .title {
	position: relative;
	text-align: center;
	border: 1px solid black;
	line-height: 30px;
	margin-bottom: 20px;
	width: 100%;
	font-size: 0.5rem;
}
.filter-modal-base .frame .title .icon {
	position: absolute;
	top: 5px;
	left: 10px;
	width: 20px;
	height: 20px;
	background-image: url(../img/arrow/chevron-left.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.filter-modal-base .frame .filters {
	width: 100%;
	flex: 1;
	overflow: scroll;
	display: flex;
	flex-direction: column;
}
.filter-modal-base .frame .filters .item {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid black;
	padding: 8px 0;
}
.filter-modal-base .frame .filters .item .label {
	flex: 1;
	font-size: 0.7rem;
}
.filter-modal-base .frame .filters .item .icon {
	width: 20px;
	height: 20px;
	background-image: url(../img/arrow/chevron-right.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.filter-modal-base .frame .filters .item .check {
	width: 20px;
	height: 20px;
}
.filter-modal-base .frame .filters .item .check .on {
	width: 100%;
	height: 100%;
	background-image: url(../img/check/iconmonstr-checkbox-4.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.filter-modal-base .frame .filters .item .check .off {
	width: 100%;
	height: 100%;
	background-image: url(../img/check/iconmonstr-checkbox-6.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.filter-modal-base .frame .filters .item .count {
	font-size: 0.6rem;
}
.filter-modal-base-on {
	animation: filter-modal-base-on 0.3s both linear 1;
}
@keyframes filter-modal-base-on {
	0%   {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.filter-modal-base-off {
	animation: filter-modal-base-off 0.3s both linear 1;
}
@keyframes filter-modal-base-off {
	0%   {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
	}
}
.filter-modal-base .frame-on {
	animation: filter-frame-on 0.3s both cubic-bezier(0, 0, 0.38, 1.08) 1;
}
@keyframes filter-frame-on {
	0%   {
		right: -100vw;
	}
	100% {
		right: 0;
	}
}
.filter-modal-base .frame-off {
	animation: filter-frame-off 0.3s both ease-in 1;
}
@keyframes filter-frame-off {
	0%   {
		right: 0;
	}
	100% {
		right: -100vw;
		display: none;
	}
}