/*

    Here you can find CSS for classes usually used for buttons for upload and download.

*/


.row{
    display: flex;
    width: 100%;
}
.col-20{
    width: 20%;
}
.col-40{
    width: 40%;
}
.col-80{
    width: 80%;
}

.upload-file{
    margin: 1em;
}

.upload-file .row{
    align-items: center;
}

.upload-file .row .upload-file-input{
    display: block;
}

.upload-file .row .upload-btn, .download-btn{
    background-color: #131313;
    height: 3em;
    align-self: center;
    padding: 0.5em 1em;
    border: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-family: "Oswald", "Helvetica", sans-serif;
}
.upload-file .row .upload-btn:hover, .download-btn:hover{
    background-color: #ff2102;
}
.download-btn{ /*must be an a tag*/
    margin: 0 !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0.5em;
    font-size: 1.1em;
}
.download-btn:hover p{
    color: #fff;
    font-size: 16px;
}
.download-btn p{
    margin: 0 !important;
}


@media screen and (max-width: 600px) {

    .row{
        flex-direction: column;
    }

    .col-80, .col-40,.col-20{
        width: 100%;
    }

    .upload-file .row .upload-file-input{
        margin-bottom: 0.5em;
    }

    .upload-file .row .upload-btn, .download-btn{
        margin-top: 0.5em !important;
        margin-left: 0 !important;
        width: 100%;
    }

}