.container-div {
    padding: 24px 24px 12px;
    display:flex;
    border: solid 1px #d8d8d8;
    background-color: white;
    .image-div {
        flex: 0.5;
        padding-top: 6px;
        img {
            width: 31px;
            float: left;
        }
    }
    .big-image-div {
        flex: 0.5;
        padding-top: 6px;
        img {
            width: 40px;
            float: left;
        }
    }
}
.content-div {
    flex:3;
    padding-top: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
    letter-spacing: -0.2px;
    color: rgba(0,0,0,0.54);
    text-align: start;
    margin-left: 20px;
    text-transform: uppercase;
    .subtext-div {
        font-size: 12px;
        color: rgba(0,0,0,0.38);
        line-height: 1.33;
        font-weight: normal;
        text-transform: none;
    }
    .images-preview{
        display: grid;
        grid-template-columns: auto auto auto;
        margin: 13px 0px 8px;
        .wrapper-div{
            position: relative;
            width: fit-content;
            width: -moz-fit-content;
            img{
                width: 51px;
                height: 51px;
            }
            .img-close-btn{
                position: absolute;
                top: 0;
                right: 0;
                transform: translate3d(45%, -30%, 0);
                img{
                    width: 19px;
                    height: 19px;
                }
            }
        }
    }
    .view-details-div{
        font-size: 12px;
        font-weight: 500;
        color: #4a90e2;
        padding-top: 8px;
        text-transform: uppercase;
    }
}
.zero{
    padding-top: 0px !important; 
}
.action-div {
    flex: 0.5;
    button{
        font-size: 18px;
        width:32px; height: 32px;
        border-radius: 50%;
        color: white;
        background-color: #70ad4d;
        float: right;
        border: 0;
    }
}