﻿.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    /*padding: 10px;*/
    border: 1px dashed rgba(0,0,0,0.2);
    border-radius: 3px;
    transition: 0.2s;
}

    .file-drop-area.is-active {
        background-color: rgba(0,0,0,0.05);
    }

.fake-btn {
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    /*padding: 8px 15px;*/
    padding: 3px 12px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

    .file-input:focus {
        outline: none;
    }

footer {
    margin-top: 50px;
}

    footer a {
        color: rgba(0,0,0,0.4);
        font-weight: 300;
        font-size: 14px;
        text-decoration: none;
    }

        footer a:hover {
            color: white;
        }
