@import "../../var";
/*damage-report-section:start*/
.damage-report-section{
    padding-top: 30px;

    .car-img-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        figure{
            padding:10px;
            width: calc(100%/3);
            max-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            img{
                width: 100%;
                height: 100%;
            }
        }
    }
    .icon-wrap{
        margin-bottom: 20px;
        display: flex;
        justify-content: right;
    }
    .car-details-grid{
    display: flex;    
    flex-direction: column;
    flex-wrap: wrap;
	height: 360px;
    justify-content: space-between;



        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
        .items{
            width: calc(100%/2);
            
            .item{
                width:100%;
                padding: 10px;
            }
        }
        .custom-card{
            padding: 10px;
            margin: 0;
            p{
                font-size: $fs-12;
            }
            .title{
                margin-top: 10px;
                font-size: $fs-18;
                color: $color_iridium;
                font-weight: $fw-medium;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
            }
        }
    }
}