/* p_filter.css */
/* filter */
section.filter_frame {
	margin-bottom: 30px;
}
h3.bar_filter {
	display: inline-block;
	padding-left: 3px;
	color: crimson;
	font-weight: bold;
}
div.filter_frame_title {
	position: relative;
	width: 100%;
	padding: 10px;
	color: crimson;
	border-top: 2px solid violet;
	border-left: 2px solid violet;
	border-right: 2px solid violet;
	background-color: white;
	font-size: 1.8em;
	cursor: pointer;
}
div.filter_frame_form {
	width: 100%;
	padding: 20px;
	border-left: 2px solid violet;
	border-right: 2px solid violet;
	border-bottom: 2px solid violet;
	background-color: white;
	font-size: 1.2em;
}
div.filter {
	display: flex;
	width: 100%;
	border-bottom: 1px solid gray;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
div.filter_sub {
	width: 30%;
	font-weight: bold;
}
div.filter_form {
	width: 70%;
}
div.filter_form_in {
	display: flex;
	width: 100%;
	padding: 10px 0;
}
div.filter_form_in_time {
	font-weight: bold;
	color: crimson;
	width: 20%;
	text-align: center;
}
div.filter_form_in_prices {
	display: flex;
	align-items: center;
	width: 80%;
}
label.filter_form_in_price {
	margin-right: 2px;
	margin-bottom: 2px;
}
section.filter_frame label {
	cursor: pointer;
}
div.btnok {
	margin: 20px auto;
	text-align: center;
}
button.btnok {
	display: inline-block;
	margin: 5px;
	padding: 10px 20px;
	text-align: center;
	color: white;
	background-color: darkorchid;
	border-radius: 3px;
	box-shadow: 3px 3px 5px gray;
}
section.filter_frame select {
	border: 1px solid darkviolet;
}
.filter_form_part {
	display: inline-block;
    margin: 4px;
	border: 1px solid white;
    padding: 2px 8px;
    border-radius: 3px;
	cursor: pointer;
}
.not_found {
	font-size: 2.0em;
    font-weight: bold;
    color: silver;
	text-shadow: 
	gray 2px 0px 0px, 
	gray 1.75517px 0.958851px 0px, 
	gray 1.0806px 1.68294px 0px, 
	gray 0.141474px 1.99499px 0px, 
	gray -0.832294px 1.81859px 0px, 
	gray -1.60229px 1.19694px 0px, 
	gray -1.97998px 0.28224px 0px, 
	gray -1.87291px -0.701566px 0px, 
	gray -1.30729px -1.5136px 0px, 
	gray -0.421592px -1.95506px 0px, 
	gray 0.567324px -1.91785px 0px, 
	gray 1.41734px -1.41108px 0px, 
	gray 1.92034px -0.558831px 0px;	
}




section.filter_frame input[type=checkbox]
,section.filter_frame input[type=radio]
{
    margin-right: 8px;
	-moz-transform: scale(1.6);
	-webkit-transform: scale(1.6);
	transform: scale(1.6);
	cursor: pointer;
}
.filter_form_part:hover {
    /* border: 1px solid violet !important; */
}
section.filter_frame input[type=number] {
    margin-right: 8px;
	width: 80%;
	text-align: right;
}





#filter_frame_form {
	display: none;
}
.open {
	display: block;
}



/* Prices Slide */
.slide {
	position: relative;
}
.slide_bar {
	width: 100%;
}
.slide_bar label{
	display: block;
	padding: 10px 0;
}
.slide_bar_disp {
	display: inline-block;
    text-align: center;
    padding: 0 15px;
    font-weight: bold;
    color: mediumvioletred;
}
.filter_form_part.slide {
	width: 100%;
}
input[type=range] {
	cursor: pointer;
}
/* i_slide_bar */
.i_slide_bar {
	appearance: none;
	width: 40%;
	height: 9px;
	border-radius: 9999px;
	background: linear-gradient(90deg, #ff0bcb 30%, #dddddd 30%);
	cursor: pointer;
}
.i_slide_bar::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border: 2px solid #333333;
	border-radius: 9999px;
	background: #ffb2ea;
	box-shadow: none;
}
.i_slide_bar::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border: 2px solid #333333;
	border-radius: 9999px;
	background: #ffb2ea;
	box-shadow: none;
}

/* pager */
section.pager {
	display: flex;
	justify-content: center;
}
section.pager div {
	margin: 10px 5px;
	padding: 10px 15px;
	text-align: center;
	color: black;
	cursor: pointer;
}

section.pager div.act {
	color: white !important;
	background-color: #bc1f69 !important;
}

.pager_prev {
	background-color: gray;
}
.pager_info {
	background-color: white;
}
.pager_next {
	background-color: gray;
}



/* filter mark */
.up {
	position: absolute;
	z-index: 1000;
	right: 10px;
    top: 17px;
	display: inline-block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 0 14px 24.2px 14px;
	border-color: transparent transparent #D21919 transparent;
}
.down {
	position: absolute;
	z-index: 1000;
	right: 10px;
    top: 17px;
	display: inline-block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 24.2px 14px 0 14px;
	border-color: #D21919 transparent transparent transparent;
}


/* filter_frame_form_name */
div.filter_frame_form_name {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 5px;
	padding: 3px 20px;
	border: 2px solid violet;
	background-color: white;
	font-size: 1.0em;
}
div.filter_frame_form_name form {
	display: flex;
}
.filter_frame_form_name input.castname {
	width: 100%;
	font-size: 1.0em !important;
	padding: 5px !important;
}
.filter_frame_form_name button.castname {
	width: 20%;
}
button.btnsearch {
	display: inline-block;
	margin: 5px;
	padding: 5px 10px;
	text-align: center;
	color: white;
	background-color: darkorchid;
	border-radius: 3px;
	box-shadow: 3px 3px 5px gray;
}


/* for revire page */
.forreview {
	text-align: center;
}


@media screen and ( min-width: 980px )  {
h3.bar_filter {
	font-size: 1.1em;
}
div.filter_form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.filter_form_part.s2 {
	width: calc(100% / 2);
}
.filter_form_part.s3 {
	width: calc(100% / 3);
}
.filter_form_part.s4 {
	width: calc(100% / 4);
}
.filter_form_part.s5 {
	width: calc(100% / 5);
}
.filter_form_part.s6 {
	width: calc(100% / 6);
}
.filter_form_part.s7 {
	width: calc(100% / 7);
}
.filter_form_part.s8 {
	width: calc(100% / 8);
}
.filter_form_part.s9 {
	width: calc(100% / 9);
}
}

@media screen and ( max-width: 979px ) {
section.filter_frame {
	font-size: 0.8em;
}
h3.bar_filter {
	font-size: 1.0em;
}
div.filter_frame {
	padding: 10px 0;
	font-size: 0.9em !important;
	line-height: 1 !important;
}
.filter_form_part {
    margin: 0px !important;
}
div.filter {
	display: block !important;
}
div.filter_sub {
	width: 100% !important;
}
div.filter_form {
	width: 100% !important;
}
section.filter_frame label {
    display: inline-block;
    margin: 2px 0;
    padding: 7px 11px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #ead9e1;
    border: 1px solid rgba(90, 0, 40, 0.4);
}
section.filter_frame input[type=checkbox] {
    position: absolute;
    left: -9999px;
}
section.filter_frame input[type=checkbox]:checked + label {
    background-color:#bc1f69;
    color:white !important; 
}
div.filter_frame_form_name {
    width: 100%;
    margin: auto;
	padding: 5px;
}
}

@media screen and (max-width: 880px) {
}

@media screen and (max-width: 750px) {
}

@media screen and (max-width: 640px) {
}

@media screen and (max-width: 550px) {
h3.bar_filter {
	font-size: 0.8em;
}
}




