.quote-summary{
   --primaryColor:#2f3f4e;
}
.quote-summary .summary-header{    
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryColor);    
}
.quote-summary .summary-header .section-title{
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05rem;
    text-align: center;
    font-size: 13px;    
    padding: 0;
    margin: 10px 0;
    text-transform: uppercase;
}
.quote-summary ul{
    list-style: none;
    padding: 0;
    margin:0 0 20px 0;    
}
.quote-summary ul li div{
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.quote-summary ul li:first-child div{   
    margin-top: 0px;
}
.quote-summary ul li div:before{
    position: absolute;
    content: '';    
    height: 1px;
    width: 100%;
    top:50%;
    transform: translateY(-50%);
    background-color: var(--primaryColor);
}
.quote-summary ul li div > span:first-child{        
    height: 16px;
    width: 16px;
    color: #fff;    
    background-color: var(--primaryColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 3px;
}

.quote-summary ul li div > span:last-child{
    position: relative;
    color: var(--primaryColor);
    font-weight: 500;
    margin: 0;
    padding: 0 15px 0 10px;
    background: #cad1e1;
    letter-spacing: .05rem;
    text-transform: uppercase;
    font-size: 13px;
}

.quote-summary ul li table{
    margin: 0 0 0 5px;
    padding: 0;
    width: calc(100% - 5px);
    font-size: 12px;
    border-collapse: collapse;
}
.quote-summary ul li table tr th{
    border-bottom: solid 2px var(--primaryColor);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    color: #5f7a87;
}
.quote-summary ul li table tr td{
    border-bottom: solid 1px #a9bec9;
    color: #000;
    min-height: 18px;
}

.quote-summary ul li table tr.header td{
    height: 24px;
    font-weight: 500;
    color: #009688;
}

.quote-summary ul li table tr td span.desription{
    margin: 0 0 0 8px;
    line-height: 1;
    color: #52728f;
    font-style: italic;
    font-size: 10px;
}
.quote-summary ul li table tr td span.desription.new-line{
    display: block;
}