.delivery-block{
    margin-top: 36px;
}
#page-delivery.delivery-block{
    padding: 0;
}
.delivery-block__form{
    margin-top: 25px;
}
.delivery-block__title{
    font-size: 42px;
}
.delivery-block__form form{
    display: flex;
    align-items: end;
}
.delivery-block__form button{
    color:#ffffff;
    background: #F44336;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    width: 161px;
    padding: 18px;
    transition: all .3s;
    font-family: 'Inter Light';
}
.delivery-block__form button:hover{
    opacity: .7;
}
.delivery-block__form input{
    background: #ffffff;
    width: 600px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 6px;
    margin-right: 12px;
    padding: 18px;
    font-family: 'Inter Light';
    position: relative;
    padding-left: 47px;
    font-family: 'Blogger Sans';
}
.delivery-block__form .form-line{
    position: relative;
}
.delivery-block__form .form-line:before{
    content:'';
    background: url("/local/templates/fisheat/assets/images/search-map.png") no-repeat;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    bottom: 16px;
    z-index: 2;
    left: 9px;
}
.delivery-block__form .form-line span{
    display: block;
    margin-bottom: 5px;
}
.delivery-block__info{
    display: none;
}
.delivery-block__info.open{
    display: block;
}
.delivery-block__info div{
    font-size: 18px;
    margin-top: 25px;
    font-family: 'Inter Light';
}
.delivery-block__total-sum span{
    font-weight: bold;
    margin-left: 12px;
}
#map {
    width: 100%;
    height: 475px;
    margin-top: 36px;
    border-radius: 6px;
    overflow: hidden;
}
#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-left: 0;
    width: 600px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333333;
    border-radius: 6px;
}
.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}
.suggestion-item:hover {
    background: #f5f5f5;
}
.suggestion-item:last-child {
    border-bottom: none;
}