.table__value {

    p {
        position: relative;
    }

    img {
        margin-left: 1rem;
        height: 2rem;
    }

    &--alert {
        font-weight: 900;
        color: $red;
    }

    &--warning {
        font-weight: 900;
        color: $orange;
    }

    &--edit:hover {
        cursor: pointer;
    }
}

.table__cell {

    &--stacked {
        display: flex;
        flex-direction: column;
    }
}

// remove overlapping between modal and no index found message
.rt-noData {
    z-index: auto !important;
}

.DraftEditor-editorContainer {
    z-index: auto !important;
}


.t-modal {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 35%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    max-height: 50%;
    overflow-y: visible;
    border: 0.09rem solid $silver;
    border-radius: 0.5rem;
}

.medias {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
}

.photo-view {
    width: 20%;
    height: auto;
    margin: 2rem;

    &__image {
        width: 100%;
        height: auto;
    }

    &__controls {
        display: flex;
        align-items: flex-start;

        img {
            cursor: pointer;
            width: 2rem; // force control images to be same size
            height: auto;
            margin-right: 0.5rem;
        }
    }

    &__rotate-delete {
        margin-left: auto;
    }
}

.img-mail {
    cursor: pointer;
}

.send-email-modal {
    padding: 2rem;

    textarea {
        width: 300px;
        height: 150px;
    }


    &__select {
        margin-bottom: 1rem;
    }
}
