/*calendar*/
#wrap-content .tab-content > section > form .cal input{
    background-color: #fff;
}
#wrap-content .tab-content > section > form .cal input ~ .calendar{
	left:calc((100% - 212px) - 15px);
}
#wrap-content .tab-content > section > form .cal input ~ .fa-solid.fa-calendar-days{
    position: absolute;
    right: 28px;
    top: 60%;
    font-size: 1.2rem;
    background: #FFF;
}

/*popper*/
.popper-tooltip {
	background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border: 2px solid #7d95ae;
    border-radius: 4px;
	font-size:1rem;
    opacity: 1;
    z-index: 1;
}

.popper-tooltip .fas.fa-exclamation-circle {
	margin-right: 3px;
    color: #ffc107;
    font-size: 1.35rem;
    vertical-align: top;
    background: #fff;
}

.popper-tooltip .arrow,
.popper-tooltip .arrow::before {
	position: absolute;
	width: 8px;
	height: 8px;
	background: inherit;
}

.popper-tooltip .arrow {
	visibility: hidden;
}

.popper-tooltip .arrow::before {
	visibility: visible;
	content: '';
	transform: rotate(45deg);
	border: 2px solid #7d95ae;
}

.popper-tooltip[data-popper-placement^='top'] > .arrow {
	bottom: -6px;
}
.popper-tooltip[data-popper-placement^='bottom'] > .arrow {
	top: -6px;
}
.popper-tooltip[data-popper-placement^='left'] > .arrow {
	right: -6px;
}
.popper-tooltip[data-popper-placement^='right'] > .arrow {
	left: -6px;
}

.popper-tooltip[data-popper-placement^='top'] > .arrow::before {
	border-top: none;
    border-left: none;
}
.popper-tooltip[data-popper-placement^='bottom'] > .arrow::before {
	border-bottom: none;
    border-right: none;
}
.popper-tooltip[data-popper-placement^='left'] > .arrow::before {
	border-bottom: none;
    border-left: none;
}
.popper-tooltip[data-popper-placement^='right'] > .arrow::before {
	border-top: none;
    border-right: none;
}

/* form */
#wrap-content .tab-content > section > form > dl dd{
	position:relative;
}
#wrap-content .tab-content > section > form > dl .column{
	margin-bottom: 20px;
}
#wrap-content .tab-content > section > form > dl dd label em{
	font-style: normal;
	font-family: NSimSun;
	color: #f00;
	padding: 1px 0 0;
}

/*form button*/
#wrap-content .tab-content > section > form > dl dd.execute {
	display:flex;
	flex-wrap: wrap;
}
#wrap-content .tab-content > section > form > dl dd.execute div {
	-webkit-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
	margin-top: 10px;
}
#wrap-content .tab-content > section > form > dl dd.execute div input[type=button],
#wrap-content .tab-content > section > form > dl dd.execute div input[type=submit]{
	padding:10px 40px;
	font-size:1.2em;
	font-weight:bold;
	letter-spacing:2px;
}
#wrap-content .tab-content > section > form > dl dd.execute div input[name=send]{
	background:#009ACD;
	color:#FFF;
}
#wrap-content .tab-content > section > form > dl dd.execute div input[name=cancel],
#wrap-content .tab-content > section > form > dl dd.execute div input[name=backtrack]{
	background:#FFF;
	color:#6F5252;
	border:1px solid #79ABFE;
}
#wrap-content .tab-content > section > form > dl dd.execute div input[name=cancel]:active,
#wrap-content .tab-content > section > form > dl dd.execute div input[name=backtrack]:active{
	background:#79ABFE;
	color:#FFF;
	transition:background .5s, color .5s;
}
@media screen and (max-width:440px){
	#wrap-content .tab-content > section > form > dl dd.execute div{
		-webkit-flex:none;
		-ms-flex:none;
		-moz-flex:none;
		flex:none;
		width: 100%;
	}
	#wrap-content .tab-content > section > form > dl dd.execute div input[type=button],
	#wrap-content .tab-content > section > form > dl dd.execute div input[type=submit],
	#wrap-content .tab-content > section > form > dl dd.execute div input[type=reset]{
		width: 100%;
	}
}

button{
	border: none;
    padding: 11.5px 30px;
    background: linear-gradient(130deg, #6f6df4, #4c46f5);
    color: #fff;
    border-radius: 3px;
    font-size: 1.2em;
}
@media screen and (max-width: 440px){
    button{
        width: 100%;
    }
}