﻿.btn-remove-outline {
    border: none !important;
}

    .btn-remove-outline:active {
        border: none !important;
    }

.input_hide {
    display: none;
}

.input_Upload_label {
    display: none;
}

.input_Upload_container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-height:57px;
}

.input_Upload_wrapper {
    direction: ltr;
    width: 100%;
    margin-bottom: 2rem;
}

.input_Upload {
    outline: none;
    width: calc(100% - 150px);
    height: 55px;
    color: var(--input-text);
    font-size: 16px;
    padding: 11px 17px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    float: left;
    text-align: center;
    background: var(--input-bg);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border: 1px solid rgba(118, 118, 118, 0.3);
}
    .input_Upload:hover:not([disabled]):not([focus]) {
        border-color: #696a9b;
    }
    .input_Upload:focus {
        outline: 0;
        box-shadow: 0 0 0.25rem 0.05rem rgba(255, 255, 255, .1);
    }

.input_Upload_button {
    margin-bottom: 2rem;
    width: 150px;
    height: 55px;
    cursor: pointer;
    display: inline-block;
    color: var(--input-text);
    font-size: 16px;
    text-transform: uppercase;
    padding: 11px 20px;
    margin-left: -1px;
    float: left;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: var(--input-bg) !important;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid rgba(118, 118, 118, 0.3);
}

    .input_Upload_button:hover:not([disabled]):not([focus]) {
        border-color: #696a9b;
    }

    .input_Upload_button:focus {
        outline: 0;
        box-shadow: 0 0 0.25rem 0.05rem rgba(255, 255, 255, .1);
    }

@media only screen and (max-width: 600px) {
    .input_Upload {
        display: none;
    }

    .input_Upload_wrapper {
        margin: 0 !important;
    }

    .input_Upload_button {
        width: 100%;
        border-radius: 16px !important;
    }

    .input_Upload_label {
        width: 100%;
        display: block;
        text-align: center;
        padding: 5px;
        color: white;
    }
}

@media only screen and (max-width: 576px) {
    .table-block * {
        display: block !important;
        white-space: normal !important;
    }
}
