.details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
}

.details__column {
    width: 25%;
    max-width: 170px
}

.details__title {
    display: block;
    margin-bottom: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

.details__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
}

.details__list::before {
    content: '';
    display: block;
    min-width: 16px;
    min-height: 17px;
    margin-right: 12px;
    background-repeat: no-repeat;
}

.details__list.unchecked::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 8.5C16 10.6217 15.1571 12.6566 13.6569 14.1569C12.1566 15.6571 10.1217 16.5 8 16.5C5.87827 16.5 3.84344 15.6571 2.34315 14.1569C0.842855 12.6566 0 10.6217 0 8.5C0 6.37827 0.842855 4.34344 2.34315 2.84315C3.84344 1.34285 5.87827 0.5 8 0.5C10.1217 0.5 12.1566 1.34285 13.6569 2.84315C15.1571 4.34344 16 6.37827 16 8.5ZM13 7.5H3V9.5H13V7.5Z' fill='%234E5B67'/%3E%3C/svg%3E%0A");
}

.details__list.checked::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 8.5C16 10.6217 15.1571 12.6566 13.6569 14.1569C12.1566 15.6571 10.1217 16.5 8 16.5C5.87827 16.5 3.84344 15.6571 2.34315 14.1569C0.842855 12.6566 0 10.6217 0 8.5C0 6.37827 0.842855 4.34344 2.34315 2.84315C3.84344 1.34285 5.87827 0.5 8 0.5C10.1217 0.5 12.1566 1.34285 13.6569 2.84315C15.1571 4.34344 16 6.37827 16 8.5ZM12.03 5.47C11.9586 5.39882 11.8735 5.34277 11.7799 5.30522C11.6863 5.26766 11.5861 5.24936 11.4853 5.25141C11.3845 5.25347 11.2851 5.27583 11.1932 5.31717C11.1012 5.35851 11.0185 5.41797 10.95 5.492L7.477 9.917L5.384 7.823C5.24183 7.69052 5.05378 7.6184 4.85948 7.62183C4.66518 7.62525 4.47979 7.70397 4.34238 7.84138C4.20497 7.97879 4.12625 8.16418 4.12283 8.35848C4.1194 8.55278 4.19152 8.74083 4.324 8.883L6.97 11.53C7.04128 11.6012 7.12616 11.6572 7.21958 11.6949C7.313 11.7325 7.41305 11.7509 7.51375 11.7491C7.61444 11.7472 7.71374 11.7251 7.8057 11.684C7.89766 11.6429 7.9804 11.5837 8.049 11.51L12.041 6.52C12.1771 6.3785 12.2523 6.18928 12.2504 5.99296C12.2485 5.79664 12.1698 5.60888 12.031 5.47H12.03Z' fill='%233BAE5B'/%3E%3C/svg%3E%0A");
}

.details__item {
    font-size: 18px;
    line-height: 1.5;
    color: #222;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .details {
        padding: 28px 10px;
    }
}

@media screen and (max-width: 768px) {
    .details__column {
        width: 45%;
    }
}

@media screen and (max-width: 520px) {
    .details {
        padding-bottom: 8px;
    }

    .details__column {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
}
