.modal-import {
    display: none;
    position: fixed;
    z-index: 99999999;
    padding-top: 15%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-import-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border-radius: 10px;
    width: 40%;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}


.modal-import-close {
    float: right;
    font-size: 28px;
}

.modal-import-close:hover,
.modal-import-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-import-header {
    padding: 2px 16px;
    color: black;
    border-bottom: 1px solid #b5b5b5;
}

.modal-import-body {
    padding: 2px 16px;
}

.modal-import-footer {
    padding: 2px 16px;
    color: black;
}

.modal-import-title {
    font-size: 22px;
    padding-left: 5%;
    padding-top: 2%;
    letter-spacing: 6px;
    font-weight: 500;
}

.button-upload-mass, .button-upload-user {
    border: 1px solid silver;
    border-radius: 14px;
    padding: 2% 4%;
}

.button-upload-ok {
    float: right;
    background-color: gainsboro;
    font-weight: 600;
}

.button-upload-ok-enabled {
    background-color: rgb(7, 197, 211);
    border-color: transparent;
    color: white;
    font-weight: 600;
}

.button-upload-ok-enabled:hover {
    background-color: #30bcc6;
}

.mass-import-name, .user-import-name {
    width: 52%;
    padding-top: 2%;
    padding-right: 5%;
    padding-left: 3%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.modal-import-body2 {
    padding: 5%;
    display: inline-flex;
    width: 101%
}

.button-upload-mass-media {
    border: 1px solid silver;
    border-radius: 14px;
    padding: 2% 4%;
}
.button-upload-mass-media:hover, .button-upload-mass:not(.button-upload-ok):hover{
    background-color: #f7f7f7;
}
.button-upload-ok-enabled:hover{
    background-color: rgb(7, 187, 199);
}

.media_preview {
    border: 1px solid silver;
    margin: 1% 5%;
    padding: 2% 3%;
    border-radius: 15px;
}

.media-preview-name {
    font-size: 20px;
    padding-left: 4%;
}

.media-trash-icon {
    opacity: 0.7;
    float: right;
    margin-right: 1%;
    margin-top: 2%;
}

.modal-import-body a:hover{
    color:#008385 !important;
}

@media(min-width: 1279px) and (max-width: 1919px) {
    .modal-import-content {
        width: 60%;
    }
}