/*
https://coolors.co/3d5a80-98c1d9-e0fbfc-ee6c4d-293241
*/

a, a:visited{
    color: #EE6C4D;
}

a:hover{
    color: #98C1D9;
}

body{
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-gap:10px;
    height: 100vh;
    background-color: whitesmoke;
}
main{
    padding-left: 2em;
    padding-right: 2em;
}

body > header{    
    grid-row: 1;
    color: darkslategray;
    padding: 0px 10px 10px 5px;
}

body > header > h1{
    margin: 2px;
}

body > main{    
    grid-row: 2;    
}

body > footer{    
    grid-row: 3;
    background-color: #EE6C4D;
    color: whitesmoke;
    min-height: 20px;
    padding: 5px;
    text-align: center;
}

.label-error {
    color: red;
    padding: 5px;
    margin: 5px;
}

.label-password-strength{
    color: whitesmoke;
    background-color: green;
    padding: 5px;
    margin: 5px;
}

.inputcard{
    width: 70vw;
    border-style: solid;
    border-width: 1px;
    padding: 0px 0px 5px 0px;
    margin-bottom: 20px;
}

.inputcard > div{
    padding: 5px;
}

.inputcard > div > label{
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 100;
}

.inputcard > h2, .inputcard > h3{
    background-color: #EE6C4D;
    margin: 0px 0px 5px 0px;
    padding: 10px;
}

.inputcard > div > input[type=email]
,.inputcard > div > input[type=password]
,.inputcard > div > input[type=text]
,.inputcard > div > input[type=datetime-local]{
    padding: 8px;
    display: block;
    border: none;
    border-bottom: 1px solid #ccc;
    width: 95%;
}

.inputcard > div > input[type=datetime-local]{
    max-width: 200px;
}

.inputcard > input[type=submit]{
    background-color: #EE6C4D;
    border-style: none;
    padding: 10px;
    margin-left: 5px;
}

.inputcard > div > button{
    margin-bottom: 5px;
}

.buttonList > button{
    margin: 5px;
}

.fileLabel{
    cursor: pointer;
    background-color: #EE6C4D;
    border-style: none;
    padding: 10px;
    /* pointer-events: none; */
    /* https://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
}

button{
    background-color: #EE6C4D;
    border-style: none;
    padding: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: medium;
}

.deselected{
    background-color: darkslategray;
    color: #EE6C4D;
    
}

.videoHolder{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* height: 120px; */
    grid-gap: 0.5em;
}

.videoPreview{    
    text-align: center;
    padding: 5px;
    border-width: 0.5px 0.5px 0.5px 0.5px;
    border-color: darkgray;
    border-style: solid;
    margin-bottom: 10px;

    overflow: hidden;
}

.videoPreview > img{
    height: auto;
    width: 100%;
    max-width: 400px;
}

.videoInfo{
    text-align: center;
}
.videoInfo > label{
    display: block;
}

.loader{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 99vw;
    height: 99vh;
    overflow: hidden;
    background-color: transparent;
    
}

.spinner {  
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20vh;
  height: 20vh;
  animation: spin 2s linear infinite;  
  margin-left: auto;
  margin-right: auto;
  margin-top: 20vh;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.plus-button {
  width:50px;
  height:50px;
  display:block;
  
  background:
    linear-gradient(#000,#000) top left,
    linear-gradient(#000,#000) top right,
    linear-gradient(#000,#000) bottom left,
    linear-gradient(#000,#000) bottom right;
  background-size: calc(50% - 1px) calc(50% - 1px); /*thickness = 2px (2*1px) */
  background-repeat:no-repeat;
  border:10px solid #000; /*length = 30px (50px - 2x10px) */
  box-sizing:border-box;
  border-radius: 50%;
}

.center{
    margin: auto;
    display: block;
}

.imageLink{
    padding: 2px;
    text-align: center;
    text-decoration: none;
}

.imageLink img{
    width: 10em;
    display: block;
    margin-bottom: 5px;
}

.imageLink span{
    margin-left: auto;
}

.flexContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.flexContainer > .imageLink{
    margin: 2em;
    border-style: solid;
    border-width: 0.5px;
}

.header img{
    position: absolute;
    width: 5em;
}

.header h1{
    display: block;
    margin-left: 3em;
    margin-top: 0.5em;
}

.header > h1 > a{
    color: #EE6C4D;
    text-decoration: none;
}

.menu{
    margin-top: 1em;
    display: flex;
    flex-direction: row-reverse;
}

.menu > a{
    text-decoration: none;
    font-size: larger;
}

.menu > *{
    margin-right: 1em;
}

.shoutout{
    font-size: 3em;
    color: #EE6C4D;
}

.costTable{

}

.shout-background{
    color: #fae9e4;
    font-size: 20rem;
    font-weight: 900;
    position: fixed;
    top: -0em;
    left: -0em;
    overflow: hidden;
    display: inline;
    z-index: -1000;
    width: 99vw;
    height: 99vh;
}

.videoPlayer{
    width: 90vw;
    overflow: hidden;
    height: 60vh;
    max-width: 100vh;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}