.mitre-popup__wrapper {
    position: fixed;
    left: 0;
    top: 0;

    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(255, 255, 255, 0.75);

    box-sizing: border-box;

    z-index: 6;
}

.mitre-popup__wrapper.active {
    display: block;
}

.mitre-popup {
    position: absolute;
    left: 50%;
    top: 50%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 50vw;

    background-color: #fff;
    box-shadow: 0 10px 30px 0px rgba(93, 93, 93, 0.25);

    transform: translate(-50%, -50%);
}

.mitre-popup__content {
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 24px;
}

.mitre-popup__title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;
}

.mitre-popup__title {
    font-size: 24px;
}

.mitre-popup__cross {
    width: 24px;
    height: 24px;

    background-image: url('../images/cross.png');
    background-size: 100%;
    background-repeat: no-repeat;

    cursor: pointer;
}

.mitre-popup__scrollable-container {
    display: flex;
    flex-direction: column;

    min-height: 340px;
    max-height: 60vh;

    overflow-y: auto;
}

.mitre-popup__table-container.hide {
    display: none;
}

.mitre-popup__table-container,
.mitre-popup__info-container {
    display: flex;
    flex-direction: column;
}

.mitre-popup__table-container {
    margin-bottom: 24px;
}

.mitre-popup__info-container {
    margin-bottom: 16px;
}

.mitre-popup__table {
    display: flex;
    flex-direction: column;
}

.mitre-popup__row {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;

    border-bottom: 1px solid #CCCCCC;
}

.mitre-popup__row .mitre-popup__cell:nth-child(1) {
    max-width: 20%;
    min-width: 20%;
}

.mitre-popup__row_header .mitre-popup__cell:nth-child(1) {
    margin-right: 36px;
}

.mitre-popup__cell {
    margin: 10px 4px;    
}

.mitre-popup__cell_header {
    color: #AFAFAF;
}

.mitre-popup__cell_weight {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 32px;

    margin: 4px 40px 4px 0;

    border-radius: 4px;

    color: #fff;
}

.mitre-popup__cell_empty {
    justify-content: flex-start;
    
    margin-left: 4px;
    
    background-color: transparent;

    color: #545b61;
}

.mitre-popup__cell_clean {
    background-color: #7CB242;
}

.mitre-popup__cell_suspicion {
    background-color: #FEB73C;
}

.mitre-popup__cell_malware {
    background-color: #FD8D51;
}

.mitre-popup__label {
    margin-bottom: 16px;

    font-size: 18px;
}

.mitre-popup__info {
    display: flex;
    flex-direction: column;

    > * + * {
        margin-top: 8px;
    }
}

.mitre-popup__info-row {
    display: flex;
    flex-direction: row;
}

.mitre-popup__info-row-label {
    width: 150px;
    color: #AFAFAF;
}

.mitre-popup__link {
    color: #7CB242;
    text-decoration: underline;
}

.mitre-popup__button-container {
    display: flex;
    justify-content: flex-end;

    padding: 24px;

    border-top: 1px solid #CCCCCC;
}