html { 
    width: 100%; 
    height: 100%; 
    overflow-x: hidden; 
}

body { margin: 0px; padding: 0px; width: 100%; height: 100%; }

* { 
    box-sizing: border-box; 
    font-family: 'text'; 
    font-size: 15px; 
    color: #000; 
}

.level { display: table; width: 100%; }
.widther { display: table; width: 1148px; margin: auto; }
.widtherL { display: block; width: 574px; float: right; }
.widtherR { display: block; width: 574px; float: left; }

.center { display: flex; justify-content: center; align-content: center; align-items: center; flex-wrap: wrap; }
.top { display: flex; justify-content: center; align-content: start; align-items: start; flex-wrap: wrap; }
.bottom { display: flex; justify-content: center; align-content: flex-end; align-items: flex-end; flex-wrap: wrap; }
.left { display: flex; justify-content: flex-start; align-content: center; align-items: center; flex-wrap: wrap; }
.right { display: flex; justify-content: flex-end; align-content: center; align-items: center; flex-wrap: wrap; }
.stretch { display: flex; flex-wrap: wrap; justify-content: start; align-content: stretch; align-items: stretch; }

.ce { text-align: center; }
.le { text-align: left; }
.ri { text-align: right; }

.pa { padding: 3%; }
.ma { margin: 3%; }
.lpa { padding-left: 1.5%; }
.tpa { padding-top: 1.5%; }
.rpa { padding-right: 1.5%; }
.bpa { padding-bottom: 1.5%; }
.lma { margin-left: 1.5%; }
.tma { margin-top: 1.5%; }
.rma { margin-right: 1.5%; }
.bma { margin-bottom: 1.5%; }
.tbpa { padding: 3% 0; }
.flwr { display: flex; flex-wrap: wrap; }

.span05 { width: 4.165%; float: left; }
.span1 { width: 8.33%; float: left; }
.span2 { width: 16.66%; float: left; }
.span25 { width: 20%; float: left; }
.span3 { width: 25%; float: left; }
.span4 { width: 33.33%; float: left; }
.span5 { width: 41.66%; float: left; }
.span6 { width: 50%; float: left; }
.span7 { width: 58.33%; float: left; }
.span8 { width: 66.66%; float: left; }
.span9 { width: 75%; float: left; }
.span10 { width: 83.33%; float: left; }
.span11 { width: 91.66%; float: left; }
.span12 { width: 100%; float: left; }

/*--- inputs ---*/
input { width: 100%; padding: 10px; border: solid 1px #ccc; border-radius: 3px; }
textarea { width: 100%; height: 100px; padding: 10px; margin: 0; border: solid 1px #ccc; border-radius: 2px; }
select { width: 100%; padding: 10px; margin: 5px 0; border: solid 1px #ccc; border-radius: 2px; background-color: unset; }
button { display: block; width: max-content; padding: 10px 20px; background-color: #2a74bc; color: #fff; border: solid 1px #2a74bc; border-radius: 5px; }
input::placeholder { color: #bbb; font-style: italic; }
  
/*--- /inputs ---*/

.helptext { display: block; font-size: 110%; font-style: italic; color: #dc143c; padding: 5px 0 15px 0; }
.error { color: #dc143c; font-size: 80%; font-style: italic; }
ul.errorlist { list-style: none; padding: 7px 0; margin: 0; }
ul.errorlist li { color: #dc143c; font-size: 70%; }

.mode { 
    width: max-content;
    font-size: 80%; 
    color: #fff;
    padding: 5px !important; 
    margin: 0 0 10px 0; 
    border-radius: 5px; 
}
.mode.yes { background-color: #2a74bc; }
.mode.no { background-color: #dc143c; }



/* --- boxchx --- */
.boxchx { 
    position: relative;
    display: block;
    width: 60px;
    height: 32px; }
.boxchx > input {
    position: absolute; 
    display: block; 
    width: 100%; 
    height: 100%; 
    padding: 0; 
    margin: 0; 
    border-radius: 100px;
    opacity: 0; }
.boxchx > .under {  
    position: absolute; 
    display: block; 
    width: 100%; 
    height: 100%; 
    padding: 0; 
    margin: 0; 
    border-radius: 100px; 
    background-color: #ddd; 
    opacity: 1;
    transition: 0.5s; }
.boxchx > .rondo {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    /* border: solid 1px #ddd; */
    border-radius: 100px;
    background-color: #fff;
    margin: 4px;
    transition: 0.5s; }
.boxchx > label {
    position: absolute; 
    display: block; 
    width: 100%; 
    height: 100%; 
    padding: 0; 
    margin: 0; 
    border-radius: 100px; 
    opacity: 0.1; }
.boxchx input:checked + .under { background-color: #2a74bc; border: 0; }
.boxchx input:checked + .under + .rondo { left: 28px; }
/* --- /boxchx --- */

/* --- myinputfile --- */
.myinputfile { width: 100%; }
.myinputfile .visible { 
    display: flex; 
    align-items: center; 
    align-content: center; 
    justify-content: center;
    width: 150px; 
    height: 100px; }
.myinputfile .visible .image { display: block; width: 100px; height: 100px; }
.myinputfile .visible .image label.prev {
    display: block;
    width: 100px;
    height: 100px;
    padding: 0;
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: contain; 
    border-radius: 5px; 
    border: solid 1px #ccc; 
    transition: 0.5s; }
.myinputfile .visible .tools { display: block; width: 50px; height: 100px; } 
.myinputfile .visible .tools label.dele, 
.myinputfile .visible .tools label.uplo {
    display: block;
    width: 46px;
    height: 46px;
    margin: 3px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    transition: 0.5s;
    background-color: #eee;
    padding: 5px;
    border-radius: 5px; }
.myinputfile .visible .tools label.dele.prev { visibility: collapse; }
.myinputfile .invisible { visibility: collapse; width: 0; height: 0; }
.myinputfile .invisible input.uplo,
.myinputfile .invisible input.dele {
    width: 0px;
    height: 0px;
    border: 0;
    padding: 0;
    margin: 0;
    visibility: collapse; }
/* --- /myinputfile --- */

/* --- multipleloaderfile --- */
.multipleloaderfile { background: #f5f5f5; padding: 10px; border-radius: 5px; }
.multipleloaderfile label { display: block; color: #888; padding: 0 0 5px 0; }
.multipleloaderfile .file_list { padding: 5px 0; margin: 1px 0; border-bottom: dotted 1px #ddd; }
.multipleloaderfile .file_list span.dele { 
    display: block;
    border: solid 1px #dc143c;
    color: #dc143c;
    font-style: italic;
    margin: 3px 0;
    padding: 3px 5px;
    border-radius: 3px; }
.multipleloaderfile .file_list img { width: 50px; margin: 0 10px 0 0; }
.multipleloaderfile .file_list img.pict { width: 20px; margin: 0 0 0 5px; filter: contrast(0); opacity: 0.5; transition: 0.5s; }
.multipleloaderfile .file_list img.pict:hover { filter: contrast(100%); opacity: 0.5; }
.multipleloaderfile input { background-color: #eee; border: unset; border-radius: 5px; }
/* --- /multipleloaderfile --- */

/* --- myinputdate --- */
.myinputdate { position: relative; }
.myinputdate input { width: 100%; padding: 10px 10px 10px 40px; border: solid 1px #ccc; border-radius: 3px; }
.myinputdate img { width: 20px; position: absolute; left: 10px; top: 10px; opacity: 0.2; }
/* --- /myinputdate --- */

/*--- editor ---*/
.editor > div { padding: 10px; background-color: #f5f5f5; border-radius: 5px; margin: 2px 0; float: left; width: 100%; }
.editor > div.error { padding: 0; background-color: unset; }
.editor > div > label { display: block; color: #888; padding: 0 0 5px 0; }
.editor > div.button { padding: 5px 0; background-color: unset; }
.editor > div.button > div { padding: 5px 0; }
.editor > div.button > div .rem { color: #dc143c; }
/*--- /editor ---*/

/* --- remotionbox --- */
.remotionbox { margin: 100px 0; padding: 40px; border: solid 1px #ddd; border-radius: 5px; }
.remotionbox .notice { padding: 25px 0; }
/* --- /remotionbox --- */



@media only screen and (max-width: 1200px) {
    .widther { width: 90%; margin: 0 5%; }
}

@media only screen and (max-width: 1000px) {
	.tbpa { padding: 6% 0; }
	.span25 { width: 33.3%; } 
    .span3, .span4, .span5 { width: 100%; } 
    .span7, .span8, .span9 { width: 100%; }

    .editor > div.button > div { justify-content: flex-start; }
}

@media only screen and (max-width: 500px) {
	.tbpa { padding: 9% 0; }
    .span1, .span2, .span25, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11 { width: 100%; }
    .ce, .ri { text-align: left; }
}


