﻿html, body {
    font-family: "Open Sans", Verdana, Arial, Helvetica, "Helvetica Neue";
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.mainHolder {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 34px);
    height: calc(100% - 34px);
    background-color: #FBFBFA;
    border-radius: 5px 5px 0 0;
    border: solid 1px #CCC;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .inputfile + label {
        position: absolute;
        margin: 0;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.25rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
        color: #EFEFEF;
        background-color: #E6802E;
        border-radius: 4px;
    }

        .inputfile + label svg {
            width: 1em;
            height: 1em;
            vertical-align: middle;
            fill: currentColor;
            margin-top: -0.25em;
            margin-right: 0.25em;
        }


        .inputfile:focus + label,
        .inputfile + label:hover {
            background-color: #FF8A2B;
            color: #FFF;
        }

#UploadButton {
    position: absolute;
    color: #EFEFEF;
    background-color: #E6802E;
    margin: 0;
    top: calc(30% + 54px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    border: solid 5px #FFC291;
}

    #UploadButton:hover {
        background-color: #FF8A2B;
        color: #FFF;
        letter-spacing: 2px;
    }


#StatusLabel {
    position: absolute;
    color: #E6802E;
    /*color: #EFEFEF;
    background-color: #E6802E;*/
    margin: 0;
    top: calc(30% + 124px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    text-align: center;
    margin-top: 24px;
}

.copyToClipboard {
    margin-top: 24px;
    /*opacity: 0.6;*/
    transition: all 0.1s ease;
    cursor: pointer;
    border: solid 5px #FFC291;
    border-radius: 6px;
    padding: 4px;
    background-color: #E6802E;
    color: #EFEFEF;
}

    .copyToClipboard:hover {
        opacity: 1;
        letter-spacing: 2px;
        color: #FFF;
    }
