@charset "utf-8";
@import "common.css";

@keyframes swing {
	0% {
	  transform: rotate(0deg);
	}
	10% {
	  transform: rotate(10deg);
	}
	30% {
	  transform: rotate(0deg);
	}
	40% {
	  transform: rotate(-10deg);
	}
	50% {
	  transform: rotate(0deg);
	}
	60% {
	  transform: rotate(5deg);
	}
	70% {
	  transform: rotate(0deg);
	}
	80% {
	  transform: rotate(-5deg);
	}
	100% {
	  transform: rotate(0deg);
	}
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper ul li a i,
.sidebar-wrapper ul li h3 i,
#show-sidebar,
#close-sidebar {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/
.page-wrapper {
	height: 100vh;
	display: inline;
	position: relative;
	z-index: 999;
}

/*----------------toggeled sidebar----------------*/
.page-wrapper.toggled .sidebar-wrapper {
	left: 0px;
	overflow-y: scroll;
}
.page-wrapper.toggled .sidebar-wrapper::-webkit-scrollbar {
	width: 10px;
	height: initial;
}
.page-wrapper.toggled .sidebar-wrapper::-webkit-scrollbar-thumb {
	background: rgba(233,222,196,.5);
}
.page-wrapper.toggled .sidebar-wrapper::-webkit-scrollbar-track {
	background: initial;
	border-radius: 5px;
}

@media screen and (min-width: 768px) {
	.page-wrapper.toggled .page-content {
	  padding-left: 300px;
	}
}

/*----------------show sidebar button----------------*/
#show-sidebar {
	position: fixed;
	left: 0;
	font-weight: 400;
	top: 35%;
	width: 100px;
	height: 150px;
	color: #fff;
	background-color:var(--pincolor);
	padding: 2em 1em;
	opacity: 0.95;
	border-radius: 0 8px 8px 0px;
	z-index: 99;
}
@media (min-width: 768px) {
	#show-sidebar {
		top: 40%;
	}
}
#show-sidebar i{
	display: block;
	font-size: 30px;
	margin-bottom: 0.5em;
	text-align: center;
}

h3#show-sidebar {
	font-size: 16px;
	line-height: 1.35;
	cursor: pointer;
}

#show-sidebar:hover,
#show-sidebar:active {
	background-color: var(--maindark);
}

span.nowrap{
	display: inline-block;
}

.page-wrapper.toggled #show-sidebar {
	left: -40px;
}

/*----------------sidebar-wrapper----------------*/
.sidebar-wrapper {
	width: 230px;
	height: 100vh;
	max-height: 100%;
	position: fixed;
	top: 0;
	left: -360px;
	z-index: 999;
}
@media (min-width: 810px) {
	.sidebar-wrapper {
		width: 305px;
		height: 100vh;
		max-height: 100%;
		position: fixed;
		top: 0;
		left: -360px;
		z-index: 999;
	}
}
  
.sidebar-wrapper ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	
	border: none;
}

/*--------------------sidebar-brand----------------------*/
.sidebar-wrapper .sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.sidebar-wrapper .sidebar-brand h2{
	color: #fff;
	font-size: 18px;
}
    
.sidebar-wrapper .sidebar-brand #close-sidebar {
	cursor: pointer;
	font-size: 40px;
	margin-left: 30px;
}
  
/*----------------------sidebar-menu-------------------------*/  
.sidebar-wrapper .sidebar-menu {
	padding-top: 16px;
	padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu ul li h3{
	font-size: 14.5px;
}
@media (min-width: 810px) {
	.sidebar-wrapper .sidebar-menu ul li h3{
		font-size: 16px;
	}
}
.sidebar-wrapper .sidebar-menu ul li a,
.sidebar-wrapper .sidebar-menu ul li h3 {
	display: inline-block;
	width: 100%;
	text-decoration: none;
	position: relative;
	padding: 8px 30px 8px 20px;
}

.sidebar-wrapper .sidebar-menu ul li h3 i,
.sidebar-menu ul > li.center i {
	margin-right: 10px;
	font-size: 12px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li div.boxes {
	margin-bottom: 1rem;
}

.sidebar-wrapper .sidebar-menu ul li h3:hover > i::before,
.sidebar-menu ul > li.center:hover i::before {
	display: inline-block;
	animation: swing ease-in-out 0.5s 1 alternate;
	color: #99ff99;
}
  
/*-----------------------------chiller-theme-------------------------------------------------*/
  
.chiller-theme .sidebar-wrapper {
	background-color: rgba(105, 117, 130, 0.93);
}
  
.chiller-theme .sidebar-wrapper .sidebar-menu {
	border-top: 1px solid rgba(255,255,255,.3);
}

.sidebar-menu ul li h3,
.sidebar-menu ul li i{
	color: #fff;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
	color: #ffffff;
}
  
.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
	color: #99ff99;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li h3 i,
.sidebar-menu ul>li.center i{
	background: #656f7e;
} 
.sidebar-brand h2{
	font-size: 1em;
}
  
/*ipad以下*/
@media screen and (max-width: 809px){
	#show-sidebar {
		position: fixed;
		left: calc(50% - 90px);
		top: calc(100% - 45px);
		width: 180px;
		height: 50px;
		margin: 0;
		padding: 10px 5px 20px;
		line-height: 1.25em!important;
		text-align: center;
		font-weight: bold;
		font-size: 15px!important;
		color: #fff;
		background-color:var(--mainsub);
		box-shadow: 0 3px 5px 0 rgb(0 0 0 / 35%);
		border-style: solid;
		border-width: 1px 1px 1px 0px;
		border-color: rgba(255,255,255,.5);
		border-radius: 5px 5px 0px 0px;
		opacity: 0.95;
		z-index: 5;
	}
	#show-sidebar i {
		display: unset!important;
		font-size: 20px;
		margin: 0 0 5px 0;
	}
	.sidebar-wrapper .sidebar-brand {
		display: flex;
		align-items: center;
		justify-content:flex-end;
	}
	.cp_ipradio {
		width: 90%!important;
		margin: 0 auto;
		text-align: left;
		color: #fff;
	}
	aside button {
		position: relative;
		display:block;
		width:80%!important;
		height: 40px!important;
		line-height: 40px!important;
		font-size: 20px!important;;
		color: #555;
		border: none;
		border-radius: 10px;
		cursor: pointer;
		transition: all .3s ease-in-out;
	background-color: #fff;
	}
	.btn-social-circle {
		position: relative;
		top: -7px!important;
		left: -10px!important;
	}
}
/*
@media screen and (max-width: 1100px){
	#show-sidebar {
		top: 450px;
	}
}
@media screen and (max-width: 1024px){
	#show-sidebar {
		top: 310px;
		
	}
}
@media screen and (min-width:600px) and (max-width: 769px){
	#show-sidebar {
		position: fixed;
		left: 0;
		font-weight: 400;
		top: 50%;
		border-radius: 0 4px 4px 0px;
		width: 5em;
		color: #fff;
		background-color: var(--mainblue);
		padding: 1em 0.5em;
		opacity: 0.95;
		z-index: 200;
	}

	#show-sidebar i{
		display: block;
		font-size: 20px;
		margin-bottom: 0.3em;
		text-align: center;
	}

	h3#show-sidebar {
		font-size: 14px;
		line-height: 1.35;	
	}
}
@media screen and (max-width:599px){
	#show-sidebar {
		top: 60px;
		font-size: 14px;
		line-height: 1.35;
	}
}
*/
  
/** Custom Select **/
aside .center {
	display: inline-block;
}

.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
}

.custom-select-wrapper select {
	display: none;
}

.custom-select {
	position: relative;
	display: inline-block;
}
.custom-select {
	position: relative;
	display: inline-block;
	width: 10em;
	padding: .5em 0 .5em 0;
	font-size: 16px;
	color: #fff;
	background:rgba(255,255,255,0);
	border:0px;
	line-height: 45px;
	border-radius: 4px;
	cursor: pointer;
	transition: all .25s ease-in-out;
}
.custom-select option{
	text-align:center;
	display: block;
	padding: 0 10px;
	border-bottom: 1px solid #b5b5b5;
	font-size: 15px;
	letter-spacing: 2px;
	color: #454b52;
	line-height: 43px;
	cursor: pointer;
}

.select100{
	width:100%;
}

.custom-select-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 50px 0 0;
	font-size: 16px;
	color: #ddd;
	line-height: 45px;
	border-radius: 4px;
	cursor: pointer;
	transition: all .25s ease-in-out;
}

.custom-select-trigger:hover,
.custom-select.opened .custom-select-trigger{
	color: #99ff99;
}

.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 10px; height: 10px;
	top: 50%; right: 25px;
	margin-top: -3px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	transition: all .25s ease-in-out;
	transform-origin: 50% 0;
}

.custom-select-trigger:hover::after,
.custom-select.opened .custom-select-trigger:after{
	border-bottom: 2px solid #99ff99;
	border-right: 2px solid #99ff99;
}

.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	min-width: 100%;
	margin: 15px 0;
	border: 1px solid #b5b5b5;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0,0,0,.07);
	background: #fff;
	transition: all .25s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	max-height: 200px;
    overflow-y: scroll;
}

.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
	z-index: 11;

}
	
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%; right: 25px;
	width: 7px; height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #b5b5b5;
	border-left: 1px solid #b5b5b5;
	background: #fff;
	transform: rotate(45deg);
	transition: all .3s ease-in-out;
}

.option-hover:before {
	background: #f9f9f9;
}

.custom-option {
	position: relative;
	display: block;
	padding: 0 10px;
	border-bottom: 1px solid #b5b5b5;
	font-size: 15px;
	letter-spacing: 2px;
	color: #454b52;
	line-height: 43px;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.custom-option:first-of-type {
	border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
	border-bottom: 0;
	border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
	background: #bafaac;
}

.sidebar-menu ul>li.center{
	padding-left: 20px;
	margin-top: 12px;
}

.sidebar-menu ul>li:nth-of-type(2){
	position: relative;
	z-index: 2;
}
.sidebar-menu ul>li:nth-of-type(3){
	position: relative;
	z-index: 1;
}

.sidebar-menu ul>li.center i{
	color: #ddd;
}

/*=====================================================================
Checkboxes styles
*/
aside input[type="checkbox"] {
	display: none;
}

aside input[type="checkbox"] + label {
	display: block;
	position: relative;
	margin-left: 3.5em;
	padding-left: 30px;
	margin-bottom: 13px;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	transition: all .25s ease-in-out;
}
/*
aside .boxes{
	margin-top: 10px;
	margin-bottom: 10px;
}*/

aside input[type="checkbox"] + label:hover,
aside input[type="checkbox"] + label:active{
	color: #99ff99;
}

aside input[type="checkbox"] + label:last-child { margin-bottom: 0; }

aside input[type="checkbox"] + label:before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
  	border: 2px solid #ddd;
  	position: absolute;
  	left: 0;
  	top: 0;
  	opacity: .6;
  	-webkit-transition: all .12s, border-color .08s;
  	transition: all .12s, border-color .08s;
}

aside input[type="checkbox"] + label:hover::before{
	border: 2px solid #99ff99;
}

aside input[type="checkbox"]:checked + label:before {
  	width: 10px;
  	top: -5px;
  	left: 5px;
  	border-radius: 0;
  	opacity: 1;
  	border: 2px solid #99ff99;
  	border-top-color: transparent;
  	border-left-color: transparent;
  	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}

/*====================================================================
Radio buttons styles
*/
.cp_ipradio {
	width: 70%;
	margin: 0 auto;
	text-align: left;
	color: #fff;
}
.cp_ipradio input {
	display: none;
}
.cp_ipradio label {
	position: relative;
	display: block;
	padding: 12px 0;
	padding-right: 35px;
	cursor: pointer;
	transition: all .3s;
}

.cp_ipradio label:hover{
	color: #99ff99;
}

.cp_ipradio input[type='radio'] {
	position: absolute;
	visibility: hidden !important;
}

.cp_ipradio input[type='radio'] + label:before,
.cp_ipradio input[type='radio'] + label:after {
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin-top: -12.5px;
	content: '';
}
.cp_ipradio input[type='radio'] + label:before {
	right: 0;
	width: 58px;
	height: 30px;
	border: 1px solid #e4e3e1;
	border-radius: 15px;
	background: #ffffff;
}
.cp_ipradio input[type='radio'] + label:after {
	right: 30px;
	width: 30px;
	height: 30px;
	-webkit-transition: all 200ms ease-out;
	        transition: all 200ms ease-out;
	border-radius: 50%;
	background: #bdbdbd;
	border: 4px solid #ffffff;
}
.cp_ipradio input[type='radio']:checked + label:before {
	right: 0;
	background: #5fc054;
	border: 1px solid #5fc054;
}

.cp_ipradio input[type='radio']:checked + label:after {
	right: 0;
	background: #ffffff;
	border: 4px solid #5fc054;
}

aside button {
	position: relative;
	display:block;
	width:calc(100% - 110px);
	height: 45px;
	margin:30px auto 20px;
	text-align: left;
	font-size: 18px;
	color: #555;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all .3s ease-in-out;
background-color: #fff;
}

aside button span:not(.btn-social-circle){
	display: inline-block;
	vertical-align: top;
	padding-top: 8px;
	padding: 0;
	text-indent: 0.5rem;
	letter-spacing: 3px;
}
@media (min-width: 810px) {
	aside button span:not(.btn-social-circle){
		text-indent: 1.25rem;
	}
}
@media(min-width: 1079px){
	aside button span:not(.btn-social-circle){
		padding-top: 8px;
	}	

}

aside button:hover,
aside button:active{
	background-color: #b0d9ff;
	
}

.btn-social-circle {
	position: relative;
	top: -4px;
	left: -10px;
	display: inline-block;
	text-decoration: none;
	width: 55px;
	height: 55px;
	line-height: 30px;
	font-size: 25px;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	transition: .3s;
}

.btn-social-circle_map {
	position: relative;
	top: 0px;
	left: -10px;
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-bottom:5px;
	text-decoration: none;
	line-height: 25px;
	font-size: 25px;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	transition: .3s;
}

.btn-social-circle i,
.btn-social-circle_map i {
	line-height: 51px;
}
  
aside button:hover .btn-social-circle{
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.28);
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

.btn-social-circle--feedly {
	color: #fff;
	background-color: #4072b3;
}
.btn-social-circle--feedly_map {
	color: #fff;
	background-color: #499567;
}

.nami{
	width: 100%;
	display: inline-block;
	color: #bdbdbd;
	transform: rotate(90deg);
	font-weight: bold;
	margin: 0;
}

.upper{
	z-index: 10;
}

.lower{
	z-index: 9;
}

.oblock{
	margin-left: 4rem;
}

@media screen and (max-width: 769px){
	.sidebar-wrapper .sidebar-brand h2{
		font-size: 16px;
	}

	.sidebar-wrapper .sidebar-brand{
		padding: 3px 20px;
	}

	.sidebar-wrapper .sidebar-menu{
		padding: 5px 0px 5px 5px;
		padding-bottom: 0;
	}

	.sidebar-wrapper .sidebar-menu ul li a,
	.sidebar-wrapper .sidebar-menu ul li h3 {
		padding: 8px 30px 5px 20px;
	}

	aside .boxes{
		margin-top: 5px;
		margin-bottom: 5px;
	}
}
