
.content-full {
	background: #fff;
	margin-top: 30px;
    margin-bottom: 30px;
	padding: 30px;
	border-radius: 10px;
}

.title-options {
    overflow: auto;
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
}

.title-options h3 {
    float: left;
    margin-bottom: 0;
    margin-right: 10px;
}

#search-content  {
    display: inline;
}

#search-content input  {
    font-size: 12pt;
    padding: 8px;
    color: #333;
    font-family: 'inter';
    margin-bottom: 15px;
    margin-top: 2px;
    border: 1px solid #ccc;
    border-radius: 30px;
    width: 200px;
}

.title-options ul {
    text-align: right;
    float: right;
}

.title-options li {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
    padding: 5px;

    transition: .3s;
}

.title-options li a {
    color: #9eadba;
    font-weight: 600;
    transition: .3s;
}

.title-options li:hover a {
    color: #4384ba;
    text-decoration: none;
}

.title-options .active {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
    padding: 5px 10px;
    border-bottom: 2px solid #305a7d;
}

.title-options .active:hover {
    border-bottom: 2px solid #4384ba;
}

.title-options .active a {
    color: #305a7d;
}







/* home-content */

.home-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.home-content li {
    list-style-type: disc;
    margin-left: 30px;
}

.logo {
    text-align: center;
}

.logo figcaption {
    color: #999;
}








/* table */

table {
    border-collapse: collapse;
}

table td {
    padding: 0 5px 0 10px;
}

table thead td {
    font-weight: 600;
}

table a {
    text-decoration: none;
}

.tb-index {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 10px;
    margin-bottom: 25px;
}

.tb-index thead tr {
    border-bottom: 1px solid #9eadba;
}

.tb-index td {
    padding: 8px 10px;
}

.tb-index tbody tr:nth-child(2n-1) {
    background: #f5f5f5;
}

.tb-index tbody tr:hover {
    background: #ceefff;
}

.tb-index .la {
    font-size: 18pt;
}

.tb-index .public {
    color: #0d35ff;
}

/* ### */
.tb-index .edit {
    color: #00a000;
}

.tb-index .delete {
    color: red;
}

.tb-index .public:hover {
    color: #5471ff;
}

.tb-index .edit:hover {
    color: #44e144;
}

.tb-index .delete:hover {
    color: #ff5050;
}

/*  */
.table-ctrl {
    overflow: auto;
}

.table-ctrl p {
    float: left;
    padding-top: 8px;
    color: #666;
}

.table-ctrl .left-item {
    float: right;
}

.table-ctrl .left-item span {
    padding-top: 8px;
    color: #666;

    margin: 0 15px;
    cursor: default;
}

/*  */
.table-ctrl ul {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
}






/* new */
figure.normal {
    width: 50%;
}

figure.normal img {
    width: 100%;
}

figure.normal figcaption {
    display: none;
    color: #ccc;
}

.new form {
    margin-top: 30px;
}

.new form label {
    display: block;
    margin-bottom: 10px;
}

form label {
    color: #666;
}




.msgError,
.msgSuccess,
.msgAlert {
    padding: 8px 0 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.msgError {
    color: red;
    background: #ffd3d3;;    
}

.msgSuccess {
    color: green;
    background: #e3ffd3;;
}

.msgAlert {
    color: rgb(148, 148, 20);
    background: rgb(247, 247, 169);
}

.danger {
    color: red;
}






form input[type=text],
form input[type=date],
form input[type=email],
form input[type=number],
form input[type=password],
form textarea,
form select,
.form-data-a input[type=text] {
    font-size: 12pt;
    padding: 8px;
    color: #333;
    font-family: 'inter';
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
}

form select option {
    padding: 5px;
}

form input.morewidth {
    padding: 10px;
    font-size: 16pt;
}

form input.smallwidth {
    width: 100%;
}

.actions {
    margin: 30px 0 0;
    padding: 30px 0 10px;
    border-top: 1px solid #ddd;
}

.actions button,
.actions .btn {
    margin-right: 10px;
    font-size: 14pt;
    padding: 15px 20px;
}


/* The switch - the box around the slider */
/* font: https://www.w3schools.com/howto/howto_css_switch.asp */
 .switch {
    position: relative;
    display: block;
    width: 60px;
    height: 25px;
    margin: 10px 0;
    float: left;
  }
  .switch + label {
    width: 70px;
    display: block;
    float: left;
    padding: 12px 10px 0;
    margin-bottom: 0;

    cursor: pointer;
  }
  .switch + label + p {
    clear: both;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 0px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  input:checked + .slider {
    background-color: #2196F3;
  }
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  input:checked + .slider:before {
    -webkit-transform: translateX(38px);
    -ms-transform: translateX(38px);
    transform: translateX(38px);
  }
  .slider.round {
    border-radius: 34px;
  }
  .slider.round:before {
    border-radius: 50%;
  } 


/*  */

.show-upload {
    display: block;
    color: #305a7d;
    cursor: pointer;
}

.show-upload:hover,
.show-upload:hover .la {
    color: #4384ba;
}

.show-upload .la {
    color: #305a7d;
}


/* parts */

.border div {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 5px 0 15px;
}

.parts .emph {
    float: right;
    background-color: #ceefff;
    padding: 5px;
    border-radius: 3px;
}


/* show-upload */
#show-upload,
#show-upload + form {
    display: none;
}

#show-upload:checked + form {
    display: block;
}



/*  */
.bioption {
    overflow: auto;
    margin-bottom: 5px;
    padding: 3px;
}

#biOption,
#monoOption {
    display: none;
}

#biOption + label,
#monoOption + label {
    display: block;
    width: 70px;
    padding: 5px 10px;
    background: #ccc;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    float: left;
    
    transition: .3s;
    text-align: center;
}

#biOption + label:hover,
#monoOption + label:hover {
    background: #66b5f5;
    box-shadow: 0 0 3px #c4def2;
}

#biOption:checked + label,
#monoOption:checked + label {
    background: #2196F3;
    box-shadow: 0 0 3px #c4def2;
}

#biOption + label {
    border-radius: 5px 0 0 5px;
}

#monoOption + label {
    border-radius: 0 5px 5px 0;
}


/*  */
.actuator {
    text-align: right;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.actuator a {
    margin-left: 10px;
}





/*     articles     */

.articles article {
    display: flex;
    margin-bottom: 30px;
}

.articles article .oder-numb {
    margin-right: 10px;
    font: bold 18pt 'sedan';
    color: #999;
}

.articles article h1 {
    margin-bottom: 5px;
}

.articles article p {
    margin-bottom: 5px;
}

.tab-group {
    border: 1px solid #999;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}





@media(min-width: 450px) {

    .table-ctrl li {
        display: inline-block;
        margin: 0;
        padding: 5px 10px;
        border-right: 1px solid #ccc;
    }
    
    .table-ctrl li:last-child {
        border-right: none;
    }

}







@media(min-width: 700px) {

    .two-parts div {
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }

    .two-parts div:first-child {
        margin-right: 2%;
    }

}







@media(min-width: 800px) {

    form input.smallwidth {
        width: 60%;
    }

}







@media(min-width: 1000px) {

    .three-parts div {
        width: 31%;
        display: inline-block;
        vertical-align: top;
    }

    .three-parts div:nth-child(2) {
        margin-left: 2%;
        margin-right: 2%;
    }

    form input.smallwidth {
        width: 100%;
    }

    .tab-group {
        display: inline-block;
        margin-right: 2.5%;
        vertical-align: top;
        width: 30%;
    }

}







@media(min-width: 1100px) {

    figure.normal figcaption {
        display: block;
    }

    .new-image {
        overflow: auto;
    }
    
    .new-image form {
        width: 69%;
        float: left;
    }

    .new-image figure.normal {
        width: 28%;
        float: right;
    }

    form select {
        width: 60%;
    }

    form input.middlewidth {
        width: 60%;
    }

    form div.parts select {
        width: 100%;
    }

    .two-parts div {
        width: 48%;
    }

    .one-more > div {
        display: inline-block;
        vertical-align: top;
    }

    .one-more div:first-child {
        width: 30%;
        height: 250px;
    }

    .one-more div.more {
        width: 68%;
        height: 550px;
        padding-left: 2%;
    }

    .new-upload {      
        border-bottom: 1px solid #ddd;
        margin-bottom: 30px;
    }

    .one-more div.more div {
        display: block;
    }



    /* no-image */

    .no-image form label {
        display: inline;
        float: left;
        text-align: right;
        padding-right: 20px;
    }

    .no-image form label {
        width: 15%;
    }

    .no-image form .switch,
    .no-image form .switch + label + p,
    .no-image form .actions {
        margin-left: 15%;
    }

    .no-image form input,
    .no-image form textarea {
        width: 85%;
    }

    .no-image form input.middlewidth {
        width: 60%;
        margin-right: 20%;
    }
    
    .no-image form input,
    .no-image form textarea,
    .no-image form select {
        margin-bottom: 25px;
    }

    .no-image form .bioption {
        margin-bottom: 15px;
    }

    .no-image form .parts label {
        display: block;
        width: 100%;
        text-align: left;
        padding-right: 0;
    }

    .no-image form .parts input,
    .no-image form .parts textarea {
        width: 100%;
    }
        
    .no-image form .switch {
        width: 60px;
        height: 34px;
    }
    .no-image form .switch + label {
        width: 70px;
    }


    
    /*  */
    .simple-image {
        overflow: auto;
    }

    .simple-image figure.normal {
        width: 28%;
        height: 300px;
        float: left;
    }

    .simple-image .info {
        width: 70%;
        float: right;
    }


}







@media(min-width: 1300px) {

    form select {
        width: 400px;
    }

    /* .two-parts div {
        width: 450px;
    } */

}