﻿body {
    padding: 30px;
    font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}


#message {
    color: red;
    font-size:14px;
}



.flex-container {
    width: 80%;
    min-height: 300px;
    display: -webkit-flex; /* Safari */
    display: flex; /* Standard syntax */
    border: 1px solid #808080;
}

    .flex-container div {
        background: #dbdfe5;
        -webkit-flex: 1; /* Safari */
        -ms-flex: 1; /* IE 10 */
        flex: 1; /* Standard syntax */
    }


.drop-zone {
    /*max-width: 200px;
    height: 200px;
    padding: 25px;
    display: flex;*/
    width: 60%;
    height: 200px;
    display: -webkit-flex; /* Safari */
    display: flex; /* Standard syntax */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Quicksand, sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #009578;
    border-radius: 10px;
    z-index: 5;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

    .drop-zone__thumb::before {
        content: attr(data-size);
        position: absolute;
        top: 50px;
        left: 0;
        width: 120px;
        padding: 2px 0;
        color: white;
        font-size: 14px;
        text-align: center;
    }


    .drop-zone__thumb::after {
        content: attr(data-label);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        padding: 5px 0;
        color #ffffff;
        background: rgba(0,0,0,0.75);
        font-size: 14px;
        text-align: center;
    }

.videodiv {
    /*max-width: 200px;
    height: 200px;
    padding: 25px;
    display: flex;*/
    width: 60%;
    height: 50px;
    display: -webkit-flex; /* Safari */
    display: flex; /* Standard syntax */
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: -5;
}

    .videodiv #video1{
        z-index: -5;
    }




button {
    font-size: 8px;
    border: none;
    margin: 2px;
}
