@charset "utf-8";

.ext_reqch_main{
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 3000;
	max-width: 300px;
	max-height: 90%;
	background-color: #fff;
	border: solid 3px #fff;
	border-radius: 5px;
	box-sizing: border-box;
	font-family: YuGothic !important;
	font-size: 14px;
	text-align: left;
	margin: 0;
	padding: 0;
	transition: translate 0.1s linear;
	overflow-y: auto;
	
	& > ul{
		border-bottom: solid 4px #222;
		margin: 0;
		padding: 0;
	}
	& ul,& li,& div,& span,& p{
		font-size: 14px;
	}
}
.ext_reqch_main.none{
	translate: 0 calc(100% + 20px);
}

.ext_reqch_headder{
	height: 36px;
	background-color: #364b9b;
	box-sizing: border-box;	
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 50px 6px 6px;
	position: relative;
	z-index: 10;
	
	& > p{
		margin: 0 !important;
	}
	&.ext_wp_site{
		background-color: #c31212;
	}
}
.ext_reqch_close{
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	right: 3px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	margin-block: auto;
	
	&::before,
	&::after{
		content: "";
		width: 100%;
		height: 2px;
		background-color: #fff;
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	&::before{
		rotate: 45deg;
	}
	&::after{
		rotate: -45deg;
	}
}
.ext_initiator_li{
	list-style: none;
	padding: 0;
	
	& > p{
		background-color: #222;
		color: #fff;
		cursor: pointer;
		text-overflow: ellipsis;
		overflow: hidden;
		margin: 0 !important;
		padding: 6px 7px 8px 7px;
		white-space: nowrap;
		
		& > span{
			display: inline-block;
			width: 28px;
			white-space: nowrap;
			text-align: right;
			margin-right: 10px;
		}
	}
	
	&.notab_orange > p{
		background-color: #8b431f;
	}
}
.ext_domain_list{
	border-inline: solid 2px #222;
	padding: 0;
	display: none;
}
.ext_domain_wrap{
	background-color: #d9d9d9;
	padding: 0;
	padding-left: 14px;
	
	& > p{
		color: #333;
		cursor: pointer;
		line-height: 1;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		margin: 0 !important;
		padding: 5px 6px 8px 4px;p;
		
		& > span{
			display: inline-block;
			width: 28px;
			white-space: nowrap;
			text-align: right;
			margin-right: 10px;
		}
	}
}
.ext_path_list{
	background-color: #fff;
	padding: 0;
	padding-left: 10px;
	max-height: 129px;
	overflow-y: auto;
	display: none;
	
	& span{
		display: block;
		white-space: nowrap;
		overflow: hidden;
		color: #333;
		text-overflow: ellipsis;
		line-height: 1;
		padding: 4px 0 7px;
		border-bottom: dashed 1px #c7c7c7;
	}
	& span:last-of-type{
		border-bottom: none;
	}
}


