@mixin chevron() {
    cursor: pointer;
    height: 16px;
    position: relative;
    top: 6px;
    width: 16px;
}

.RequirementsModal {
    /* stylelint-disable max-nesting-depth */
    &-modal {
        .ReactModal-content {
            width: 775px;
        }
    }
    /* stylelint-enable max-nesting-depth */

    &-header {
        color: $gorilla;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    &-header:not(:first-child) {
        margin-top: 25px;
    }

    &-row {
        margin-bottom: 8px;
    }

    &-row-header {
        color: $timberwolf;
        display: inline-block;
        font-size: 12px;
        font-weight: 500;
        vertical-align: top;
        width: 184px;
    }

    &-row-value {
        color: $gorilla;
        display: inline-block;
        vertical-align: top;

    }

    &-file-format {
        background-color: $mouse;
        border-radius: 2px;
        display: inline-block;
        margin: 0 4px;
        padding: 2px 4px;
        vertical-align: top;
    }

    &-subheader {
        border-bottom: 1px solid $mouse;
        color: $timberwolf;
        cursor: pointer;
        font-weight: 500;
        margin-bottom: 10px;
        margin-top: 25px;
        padding-bottom: 5px;
    }

    &-header-note {
        margin-bottom: 20px;
    }

    &-subheader-note {
        margin-bottom: 10px;
    }

    &-bold {
        font-weight: 500;
    }

    &-item {
        margin-bottom: 4px;
    }

    .Icons-filled-chevron-up {
        @include chevron();
    }

    .Icons-filled-chevron-down {
        @include chevron();
    }

    &-chevron {
        float: right;
    }

    &-button {
        float: right;
        margin-top: 20px;
    }

    &-spacer {
        height: 123px;
    }

    &-mask {
        background: linear-gradient(rgba(255, 255, 255, 0), 99%, rgba(255, 255, 255, 1));
        bottom: 70px;
        height: 100%;
        pointer-events: none;
        position: absolute;
        width: 733px;
    }

    &-button-container {
        background: #fff;
        bottom: 0;
        height: 70px;
        position: absolute;
        width: 733px;
    }
}
