input[type=password] {
    width: 100%;
}
input[type=email] {
    width: 100%;
    margin: 8px 0 0 0;
}
input[type=text] {
    width: 100%;
}
input[type=datetime-local] {
    width: 50%;
}
input[type=number] {
    width: 25%;
}
input[type=submit] {
    /*width: 100%;*/
    font-family: Mulish, sans-serif;
}
input[type=button] {
    width: 100%;
    font-family: Mulish, sans-serif;
}

.width100 {
    width: 100%;
}

.width95 {
    width: 95%;
}

.width90 {
    width: 90%;
}

.width50 {
    width: 50%;
}

.width60 {
    width: 60%;
}

.width40 {
    width: 40%;
}

.width25 {
    width: 25%; 
}

.center {
    margin: auto;
}

.clearfloat {
    clear: both;
}

.textcenter {
    text-align: center;
}

.rounded {
    border-radius: 4px;
}

.round {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


hr {
    margin: 1% 0;    
}

form {
    width: 100%;
}

textarea {
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
}

table {
    padding: 5px 0;
    margin: 8px 0;
    text-align: center;
    width: 100%;
    height: 100px;
}

caption {
    font-weight: bold;
}

td {
    padding: 12px 12px;
    border-top: 1px solid black;
    /* margin: 8px 0; */

}

tr:nth-child(even) {
    background-color: #f2f2f2;
}



input {
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
}

input[type=file] {
    margin: 0;
    padding: 12px 0;
}

.wideselect {
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    width: 100%;
}

.orderoption {
    border-bottom: thin black solid;
}
.orderoption:nth-child(even) {
    background-color: #f2f2f2;
}
.container {
    font-family: Mulish, sans-serif;
    width: 80%;
    margin: auto;
}
.containerflex {
    font-family: Mulish, sans-serif;
    width: 80%;
    margin: auto;
}

.flex-grid {
    display: flex;
}
.col {
    flex: 1;
}
.flex-grid-quarters {
    display: flex;
    justify-content: space-between;
}
.flex-grid-quarters .col {
  width: 24%;
}

.flex-grid-thirds {
  display: flex;
  justify-content: space-between;
}
.flex-grid-thirds .col {
  width: 32%;
}
.hidden {
    display: none;
}

.largelogo {
    margin: auto;
    width: 40%;
}

.submissionlogo {
    padding: 0 20%;
    width:50%;
    margin: auto;
}

.smalllogo {
    width: 50%;
    float: left;
    margin: 2% 0;
}


.homelogo {
    width: 11%;
    float: left;
    margin: 1% 1% 1% 0;
}

.username {
    margin: 4.5% 2%;
}

.userimage {
    object-fit: cover;
    width: 40px;
    height: 40px;
    margin: 2% 0% 0% 2%;
}

.userimagecontainer {
    width: 150px;
    height: 150px;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.sliderblue {
    color: #2196F3;
}

.underline {
    text-decoration: underline;
}

a:hover {
    cursor: pointer;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.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: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

.circletext {
    display: inline-block;
    position: relative;
    border-radius: 50%;
    background: black;
    text-align: center;
    margin-left: 7px;
    padding: 2px 6px;
    color: white;
}

.consultcard {
    border: thin black solid;
    border-radius: 4px;
    padding: 2% 2%;
    margin: 0 0 2% 0;
    overflow: hidden;
    font-family: Mulish, sans-serif;
}

.gobutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 2% 0 2% 0;
    padding: 1% 10%;
    height: 56px;
    font-size: 14px;
    float: right;
    border: none;
    width: 100%;
}

.addbutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 0 0 2% 0;
    padding: 1% 10%;
    height: 36px;
    font-size: 14px;
    float: right;
    border: none;
    width: 50%;
}

.addvideobutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 2% 0 2% 0;
    padding: 2% 0 0 0;
    min-height: 28px;
    font-size: 14px;
    float: right;
    border: none;
    width: 50%;
    text-align: center;
    text-decoration: none;
}

.deletevideobutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 0 0 0 2%;
    padding: 2% 0 0 0;
    min-height: 28px;
    font-size: 14px;
    float: right;
    border: none;
    width: 25%;
    text-align: center;
    text-decoration: none;
}

.savebutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 2% 0 2% 0;
    padding: 1% 10%;
    height: 56px;
    font-size: 14px;
    float: left;
    border: none;
    width: 50%;
}

.savebutton100 {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    margin: 2% 0 2% 0;
    padding: 1% 10%;
    height: 56px;
    font-size: 14px;
    float: left;
    border: none;
    width: 100%;
}


.savebuttontertiary {
    border-radius: 2px;
    background-color: white;
    color: rgb(237, 28, 36);
    margin: 2% 0 2% 0;
    padding: 1% 10%;
    height: 56px;
    font-size: 14px;
    float: left;
    border: thin;
    width: 50%;
}



.nomarginbottom {
    margin-bottom: 0;
}

.consultcard p {
    margin: 0;
    font-size: small;
}


.consultcard button {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    text-align: center;
    margin: 2% 0 0 1%;
    padding: 1% 0;
    min-height: 28px;
    font-size: 11px;
    float: right;
    border: none;
    width: 25%;
}

.redbutton {
    border-radius: 2px;
    background-color: rgb(237, 28, 36);
    color: white;
    text-align: center;
    margin: 0;
    padding: 1% 0;
    min-height: 22px;
    font-size: 11px;
    float: right;
    border: none;
    width: 25%;
}

.bottombutton {
    margin: 0 0 0 1%;
}

.lastbutton {
    margin: 0 0 56px 0;
}

.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    background-color: white;
}

.popuptip {
    display: inline-block;
    position: relative;
    margin-left: 7px;
    color: red;
    /* border: thin dotted gray; */
    padding: 2%;
    visibility: hidden;
}
.pagination {
    padding: 5px 1%;
    display: flex;
    flex-wrap: wrap;
    margin: 8px 0;
}

.pagination a {
    margin-right: 3%;
}

.pagination select {
    margin-right: 3%;
    margin-top: 0.5%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.relative {
    position: relative;
}

.fixedwithscroll {
    z-index: 9;
    position: absolute;
    max-height: 200px;
    overflow: auto;
    background-color: white;
    width: 100%;
    margin: 0;
    padding: 0;
}

.fixed {
    z-index: 9;
    position: absolute;
    background-color: white;
    margin: 0;
    padding: 0;
    width: 100%;
}

#matchedmessage {
    color: red;
    font-style: italic;
}
.fixed p {
    text-align: right;
    margin: 0;
}

.scrolling {
    max-height: 200px;
    overflow: auto;
}


@media only screen and (max-width: 600px) {

    .width50 {
        width: 100%;
    }

    .width40 {
        width: 100%;
    }

    .width60 {
        width: 80%;
    }

    .submissionlogo {
        width: 100%;
        padding: 0;
    }

    form {
        width: 100%;
    }

    table {
        width: 100%;
    }

    input[type=datetime-local] {
        width: 100%;
    }

    input[type=number] {
        width: 50%;
    }

    .container {
        width: 100%;
    }

    .containerflex {
        font-family: Mulish, sans-serif;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: auto;
    }
    .centervertical {
        position: absolute;
        top:0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translate(0%, 45%);
        margin: auto;
        width: 96%;
    }

    .bottomdiv {
        position: absolute;
        bottom: 0;
        width: 96%;
    }

    .flex-grid {
        display: block;
    }

    .flex-grid-quarters {
        display: block;
    }

    .flex-grid-thirds {
        display: block;
    }

    .fixedwithscroll {
        width: 90%;
    }

    .largelogo {
        width: 80%;
    }

    .addvideobutton {
        margin: 4% 0 2% 0;
    }
}