﻿.file-input-zone-container {
    overflow-x:hidden;
}

.file-input-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529;
    border: 1px solid #000000;
    cursor: pointer;
    position: relative;
    width: 150px;
    height: 35px;
    font-size: 0.87rem;
    color: white;
}

    .file-input-zone:hover {
        background-color: #1c1f23;
        border: 1px solid #000000;
    }

    .file-input-zone input[type=file] {
        position: absolute;
        right:0px;

        width: 240px;
        height: 35px;
        opacity: 0;
        cursor: pointer;
        overflow:hidden;
    }