/*--- 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) {}

@media only screen and (max-width: 1000px) {
    .editor > div.button > div { justify-content: flex-start; }
}

@media only screen and (max-width: 500px) {
}
