.delivery-item {
    display: flex;
    margin-bottom: 32px;
}

.delivery-item-img {
    height: 110px;
    width: 110px;
    flex: 0 0 auto;
    background: url("/local/templates/public/img/popup-delivery-sprite.png") no-repeat 0 0;
}
.delivery-item:nth-child(2) .delivery-item-img {
    background-position-y: -110px;
}
.delivery-item:nth-child(3) .delivery-item-img {
    background-position-y: -220px;
}
.delivery-item:nth-child(4) .delivery-item-img {
    background-position-y: -330px;
}
.delivery-item:nth-child(5) .delivery-item-img {
    background-position-y: -440px;
}
.delivery-item:nth-child(6) .delivery-item-img {
    background-position-y: -550px;
}

.delivery-item-info {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #78909C;
    margin-left: 16px;
}

.delivery-item-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #263238;
    margin-bottom: 16px;
}


.climb-info {
    margin-top: 16px;
    padding: 32px 8px 32px 15px !important;
    position: relative;
}
.climb-info:before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: -16px;
    width: calc(100% + 40px);
    background-color: #FAFAFA;
    z-index: -1;
}

.climb-title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #263238;
}
.climb-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;

    color: #78909C;
}


@media (max-width: 767px) {
    .delivery-item {
        flex-direction: column;
        margin-bottom: 22px;
    }

    .delivery-item-info {
        margin: 12px 0 0;
    }

    .delivery-item-title {
        font-weight: normal;
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 4px;
    }
}