/* stylelint-disable selector-no-type */
body {
    background-color: $mouse;
}
/* stylelint-enable selector-no-type */

.Metadata-header {
    color: $gorilla;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
}

.Metadata-divider {
    background-color: $mouse;
    height: 1px;
    margin-bottom: 30px;
    width: 100%;
}

.Metadata-error {
    color: $red-destroy;
    margin-top: 4px;
}

@mixin video-link() {
    color: $bluejay;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

@mixin video-title($color) {
    color: $color;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-right: 6px;
    vertical-align: top;
}

@mixin video-size($color) {
    color: $color;
    display: inline-block;
    font-size: 14px;
    position: relative;
    top: 2px;
    vertical-align: top;
}

/* stylelint-disable selector-no-type, selector-class-pattern */
textarea.form-control {
    padding: 5px;
}

.Metadata-text-area.form-control {
    height: 130px;
}

/* Tooltip bottom arrow fix while frc update transition (should be fixed once consolidated) */
.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
    top: 4px;
}
/* stylelint-enable selector-no-type, selector-class-pattern */

@mixin error-video-box() {
    background-color: $mouse;
    padding: 25px;

    &-status-box {
        background: #002c53;
        color: white;
        display: inline-block;
        margin-bottom: 10px;
        margin-right: 25px;
        padding-top: 93px;
        position: relative;
        text-align: center;
        vertical-align: top;
    }

    .Icons-video-error {
        display: block;
        height: 50px;
        margin: auto;
        margin-bottom: 17px;
        opacity: .3;
        width: 61px;
    }

    &-header {
        font-size: 18px;
        font-weight: 500;
    }

    &-subheader {
        font-size: 12px;
        margin: auto;
        margin-bottom: 42px;
        margin-top: 5px;
        width: 186px;
    }

    &-banner {
        background-color: $parrot;
        bottom: 0;
        font-weight: 500;
        height: 24px;
        padding-left: 8px;
        padding-top: 4px;
        position: absolute;
        text-align: left;
        text-transform: uppercase;
        width: 100%;
    }

    &-errors {
        display: inline-block;
        vertical-align: top;
        width: 240px;
    }

    &-error-text {
        align-self: center;
        margin-left: 5px;
        width: 205px;
    }

    &-error {
        display: flex;
    }

    &-error:not(:last-child) {
        margin-bottom: 11px;
    }

    &-errors-box {
        background-color: white;
        border: 1px solid $parrot;
        border-radius: 1px;
        color: $parrot;
        font-size: 12px;
        padding: 6px;
    }

    &-video-resolutions-link,
    &-video-requirements-link {
        @include video-link();
        margin-top: 12px;
        text-align: center;
    }

    &-video-title {
        @include video-title($timberwolf);
    }

    &-video-size {
        @include video-size($timberwolf);
    }

    .Icons-upload-arrow {
        height: 16px;
        margin-right: 7px;
        position: relative;
        top: 2px;
        width: 16px;
    }
}
