h1 {
	margin:0;
	font-size:calc(1.5rem + 1vw);
	padding: 0 1rem;
}

form.dropzone {
    width: calc(50% + 150px);
    margin: 2rem auto 3rem;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

div.dz-message {
    p {
        margin: 1.5rem 1rem 0.3rem;
    }

    small {
        display: block;
        font-size: 0.9rem;
        color: #999;

        strong {
            font-weight: 600;
            margin-right: 0.3rem;
        }
    }
}



#transcripts-table {
    visibility: hidden;
    margin-bottom: 7rem;

    tr:hover td {
        background-color: hsl(60, 100%, 90%);
    }

    tr.active td {
        background-color: hsl(35, 25%, 97%);
        color: #000;
    }

    button {
        background-color: transparent;
        border: none;
        cursor: pointer;
        /* padding: 0;
        font-weight: 600;
        font-size: 0.9rem;
        &.start {
            color: #090;
        }
        &.download {
            color: #06c;
        } */
		&.download {
			background-image: url(/img/download.png);
		}
		&.preview-transcript {
			background-image: url(/img/preview-transcript.png);
		}
    }
}

span.progress-bar {
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    display: block;
    background-color: #090;
    width: 0;
    color: #fff;
    font-size: 0.8rem;
    text-align: right;
}

td.lang-code {
    cursor: pointer;

    form.language-form {
        position: absolute;
        top: 2px;
        right: 2px;
        border: 1px solid var(--border-color-dark);
        background-color: hsl(35, 5%, 93%);
        z-index: 1000;
        border-radius: 5px;
        padding: 0.7rem 1rem 0rem;
        white-space: nowrap;

        label {
            color: var(--color-default-text);
            text-transform: none;
            font-size: 1rem;
            line-height: 1.5rem;

            small {
                font-weight: normal;
                font-size: 0.8rem;
                color: var(--color-heading-text);
            }
        }
    }
}