﻿.file-row {
    background-color: #e4e4e4;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 0.6rem;
    color: #555;
    display: flex;
    align-items: center;
}

    .file-row h2 {
        margin: 0.3rem 0 0.6rem 0;
        font-weight: bold;
        color: black;
        font-size: 1.1rem;
    }

    .file-row > div {
        flex-grow: 1;
    }

    .file-row button {
        padding: 0.5rem 1rem;
    }

.drag-drop-zone {
    border: 2px dashed #3bb001;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    color: #aeaeae;
    cursor: pointer;
    position: relative;
}

    .drag-drop-zone:hover {
        background-color: #f5f5f5;
    }

    .drag-drop-zone input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.text-input__loading {
    height: 214px;
    border: 0px solid lightgrey;
    border-radius: 0px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.text-input__loading--line {
    height: 10px;
    margin: 10px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}

.text-input__loading div:nth-child(1) {
    width: 65%;
}

.text-input__loading div:nth-child(5) {
    width: 65%;
}

.text-input__loading div:nth-child(9) {
    width: 65%;
}

.text-input__loading div:nth-child(2) {
    width: 75%;
}

.text-input__loading div:nth-child(6) {
    width: 75%;
}

.text-input__loading div:nth-child(10) {
    width: 75%;
}

.text-input__loading div:nth-child(3) {
    width: 20%;
}

.text-input__loading div:nth-child(7) {
    width: 20%;
}

.text-input__loading div:nth-child(4) {
    width: 50%;
}

.text-input__loading div:nth-child(8) {
    width: 50%;
}

@-webkit-keyframes pulse {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }

    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }

    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

@keyframes pulse {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }

    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }

    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

@media only screen and (max-width: 767px) {
    .widescreen-total-labels {
        display: none;
    }
}

@media only screen and (min-width: 767px) {
    .narrowscreen-total-labels {
        display: none;
    }
}

.place-holder-center::placeholder {
    text-align: center;
}
