﻿/* BESPOKE 
 * Handles blok vormgeving .usp-row */
.uc_text_block .usp-row {
}

.uc_text_block .usp-row ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.uc_text_block .usp-row li {
    font-family: RobotoSlab-Regular, Helvetica, sans-serif;
    font-size: 14px;
}

.uc_text_block .usp-row li::before {
    content: "\f058";
    font-family: FontAwesome;
    color: #daa520;
    margin: 0 5px 0 15px;
}

.uc_text_block .usp-row li:first-child::before {
    content: "\f058";
    font-family: FontAwesome;
    color: #daa520;
    margin-left: 0;
}

@media (max-width: 991px) {
    .uc_text_block .usp-row ul {
        flex-flow: row wrap;
        justify-content: center;
        padding: 10px 0;
    }
}

@media (min-width: 1201px) {
    .uc_text_block .usp-row ul {
        padding: 0 15px;
    }
}

/* Smaller fontsize if usp row is used in 
 * template columns smaller than col-md-12 */
@media (min-width: 1201px) {
    .col-md-9 .usp-row ul {
        padding: 0 2%;
    }
}

@media (max-width: 1199px) {
    .col-md-9 .usp-row li {
        font-size: 12px;
    }
}
