/*  GENERAL pages with forms  */


/* message */

.s-msg-error, 
.s-msg-ok {
	margin: 1em 0;
	padding: .6em 1em;
	font-weight: 500;
	border-radius: 5rem;
}
.s-msg-error {
	background: #ffc1c1;
    color: #d40551;
}
.s-msg-ok{
	background: #c6ffc5;
    color: #22841c;
}


/* forms */

main form label {
	display: block;
    margin-bottom: 0.8em;
}

main label span{
	display: block;
	font-size: 0.85em;
    font-weight: 500;
    color: #888;
}
main label small {
	display: block;
}
main label span.req:after{
	content: '*';
	color: red;
	display: inline-block;
	margin-left: 2px;
}

main form input,
main form textarea{
	min-width: 300px;
	width: 60%;
    height: 40rem;
    padding: 10rem;
    box-shadow: rgb(0 0 0 / 7%) 0px 1px 3px 0px inset, 0px 4px 10px rgb(14 30 62 / 8%);
    border: 1px solid #ddd;
    color: rgb(0, 0, 0);
    border-radius: 5rem;
}
main form textarea{
	height: 100rem;
}
main form input[type=file] {
	border: none;
	box-shadow: none;
	padding: 2rem;
}
main form input:focus,
main form textarea:focus{
	border-color: #3d9390;
}


.s-check{
	background: var(--color-panel-grey);
	padding: .5em 1em;
}
.s-check input[type=checkbox]{
	display: inline-block;
	width: 16rem;
    height: 16rem;
    vertical-align: middle;
    margin-right: 0.3em;
	min-width: auto;
}
.s-check span {
	display: inline-block;
}

.s-captcha input{
	width: 150px;
    min-width: 100px;
    height: 40px;
}
.s-captcha img{
	display: inline;
    height: 40px;
    vertical-align: bottom;
}

form input[type=submit]{
    height: 2.5em;

    background: #0ea77c;
    border-radius: 5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
}
form input:disabled {
	background: grey;
	opacity: 0.5;
	cursor: initial;
}



/** PAGE: UPLOAD  **/

.page-upload .s-captcha {
	display: none;
}



/** PAGE: ABOUT US **/

main h2,
main h3 {
	margin-top: 1.5em;
}



/** LEGAL **/

pre{
	font-family: inherit;
}
.s-law-text h2,
.s-law-text h3{
	margin-top: 0;
}

.s-law-text .attention{
	background: #fdf9cb;
    font-size: 0.9em;
    padding: 1em;
    border-radius: 0 0.5em 0.5em 0;
    border-left: 3px #f7caa4 solid;
}


/** PAGE: My Resolution **/

.page-my-resolution #p-main {
    margin: 0 auto;
    max-width: 700px;
}
.page-my-resolution #p-middle {
	padding: 0;
	max-width: 100%;
}

#dpi {
    height: 1in;
    left: -100%;
    position: absolute;
    top: -100%;
    width: 1in;
}

#screen {
	position: relative;
	color: var(--color-pink);
	text-align: center;
	padding: 0 15rem;

	border-top: 11rem currentColor solid;
	border-left: 11rem currentColor solid;
	border-right: 11rem currentColor solid;
	border-bottom: 30rem currentColor solid;
	border-radius: 10rem;
}
#screen-dot{
	position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    bottom: -20px;
    left: 49.5%;
}
#screen h3{
	font-weight: 500;
    font-size: 19rem;
    color: grey;
}
#screen .wh{
	font-weight: bold;
    font-size: 50rem;
    line-height: 50rem;
    color: var(--color-pink);
}
@media all and (max-width: 400px) {
	#screen .wh{
		font-size: 40rem;
    	line-height: 40rem;
	}
}
#screen .cross{
	font-weight: normal;
}
#screen table{
	display: inline-table;
    width: 45%;
    min-width: 250rem;
    margin-bottom: 20rem;

    text-align: right;
    font-size: 0.92em;
    font-weight: 500;
}
#screen table tr{
	border-bottom: 1px #ddd solid;
}
#screen table tr.divide{
	border-bottom: 2px #bbb solid;
}
#screen table tr:last-child{
	border-bottom: none;
}
#screen table td.name{
	text-align: left;
    font-weight: 500;
    padding: 2rem 0;
    color: black;
}
#screen table td.css{
    font-weight: normal;
    color: initial;
}


.page-my-resolution main h1{
	font-size: 26rem;
}
.page-my-resolution main h2{
	font-size: 23rem;
}
.page-my-resolution main h2.special{
    margin-top: -13rem;
    margin-bottom: 1em;
	font-size: 17rem;
    font-weight: 400;
    color: #848282;
}
.page-my-resolution main h3{
	font-size: 21rem;
}
.page-my-resolution main h2,
.page-my-resolution main h3{
	color: var(--color-blue);
}
.page-my-resolution main ul {
	margin-left: 10rem;
	margin-bottom: 10rem;
}
.page-my-resolution main ul li {
	position: relative;
    padding-left: 24rem;
    margin-bottom: 7rem;
}
.page-my-resolution main ul > li:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px 10px;
    border-style: solid none solid solid;
    border-color: transparent var(--color-pink);
}
.page-my-resolution main ul b,
.page-my-resolution main time{
    font-weight: 500;
}
.page-my-resolution figcaption {
	text-align: center;
	font-size: 0.9em;
	padding: 0 25rem;
}