.delivery-page__main {
    padding: 40px 60px;
    background-color: #F6F6F6;
    border-radius: 20px;
    margin-bottom: 20px;
}

.delivery-page-main__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 117%;
    max-width: 530px;
    margin-bottom: 30px;
}

.delivery-page-main__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.delivery-page-main__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 205px;
    margin-right: 100px;
    margin-bottom: 20px;
}

.delivery-page-main__item:last-child {
    margin-right: 0;
}

.delivery-page-main-item__title {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    padding-left: 15px;
}

.delivery-page-main-item__ico {
    width: 40px;
    height: 40px;
}

.delivery-page-main-item__ico svg {
    width: 100%;
}

.delivery-page-btn {
    padding: 5px 0;
    text-align: center;
    background-color: var(--green);
    max-width: 140px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s;
}

@media (any-hover: hover),(hover: hover) and (pointer: fine) {
    .delivery-page-btn:hover {
        background-color: var(--dark-green);
    }
}


.ogorod-delivery-block-1__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 118%;
    margin-bottom: 12px;
}

.ogorod-delivery-block-1__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ogorod-delivery-block-1__item {
    padding: 20px;
    width: 260px;
    border: 1px solid var(--green);
    margin-right: 12px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 118%;
    cursor: pointer;
}

.ogorod-delivery-block-1__item--active {
    background-color: var(--green);
    color: #fff;
    cursor: auto;
}

.ogorod-delivery-block-1-adress__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 118%;
    margin-bottom: 12px;
}

.ogorod-delivery-block-1-adress__title span {
    color: var(--green);
    margin-right: 5px;
}

.ogorod-delivery-block-1__search svg,
.ogorod-delivery-block-1__clear svg {
    width: 16px;
    height: 16px;
}

.ogorod-delivery-block-1__search,
.ogorod-delivery-block-1__clear {
    height: 100%;
    position: absolute;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogorod-delivery-block-1__clear {
    right: 5px;
    top: 0;
    cursor: pointer;
}

.ogorod-delivery-block-1__adress input {
    padding-left: 34px;
    padding-right: 34px;
}

.ogorod-delivery-block-1__form-wrap {
    position: relative;
    max-width: 450px;
}

.ogorod-delivery-block-1__search {
    left: 5px;
    top: 0;
}


.ogorod-delivery-block-1-adress__alert {
    font-size: 10px;
    line-height: 120%;
    margin-top: 10px;
}

.ogorod-delivery-block-1__form-list {
    padding: 20px 10px 10px 10px;
    border-left: 1px solid #D7D7D7;
    border-right: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
    position: absolute;
    top: calc(100% - 11px);
    width: 100%;
    background-color: #fff;
    z-index: 1;
    border-radius: 0 0 10px 10px;

}

.ogorod-delivery-block-1-form-list__inner {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 270px;
}

.ogorod-delivery-block-1__form-list:before {
    content: '';
    left: 10px;
    top: 10px;
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #D7D7D7;
}

.ogorod-delivery-block-1__form-list span {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.ogorod-delivery-block-1__form-list span:last-child {
    margin-bottom: 0;
}

.ogorod-delivery-block-1__adress input:focus + .ogorod-delivery-block-1__form-list,
.ogorod-delivery-block-1__adress input:hover + .ogorod-delivery-block-1__form-list {
    border-color: var(--green)
}

.ogorod-delivery-section__content[data-id] {
    display: none;
}

.ogorod-delivery-section__content[data-id].ogorod-delivery-section__content--active {
    display: block;
}

.ogorod-delivery-cur {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ogorod-delivery-cur__wrap {
    width: calc(100% - 423px);
    display: flex;
    flex-wrap: wrap;
    padding-right: 14px;
}


.ogorod-delivery-cur__item {
    width: calc(50% - 16px);
    margin-bottom: 16px;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-right: 16px;
    cursor: pointer;
}

.ogorod-delivery-cur__img {
    position: relative;
    height: 70px;
    margin-bottom: 18px;
}

.ogorod-delivery-cur__img img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.ogorod-delivery-cur__cost {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 118%;
    text-align: left;
    padding: 3px 11px;
    background-color: #ECECEC;
}

.ogorod-delivery-cur__item--active {
    border-color: var(--green);
}

.ogorod-delivery-cur__item--active .ogorod-delivery-cur__cost {
    background-color: var(--green);
    color: #fff;
}

.ogorod-delivery-cur__aside {
    padding: 16px 20px 30px;
    background-color: #F6F6F6;
    border-radius: 10px;
    width: 423px;
}

.ogorod-delivery-cur-aside__img {
    margin-bottom: 30px;
    background-color: #fff;
    height: 144px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ogorod-delivery-cur-aside__img img {
    max-width: 80%;
    max-height: 80%;
}

.ogorod-delivery-cur__item--active:before {
    content: url("/local/templates/aspro_next/images/check-corner.svg");
    position: absolute;
    left: -1px;
    top: -1px;
    width: 30px;
    height: 30px;
}

.ogorod-delivery-cur-aside__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 118%;
    margin-bottom: 30px;
}

.ogorod-delivery-cur-aside-item__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 121%;
    margin-bottom: 6px;
}

.ogorod-delivery-cur-aside-item__val {
    color: #000;
    font-size: 16px;
}

.ogorod-delivery-cur-aside__item {
    margin-bottom: 16px;
}

.ogorod-delivery-cur-aside__item:last-child {
    margin-bottom: 0;
}

.ogorod-delivery-section__content #map {
    width: 100%;
    height: 556px;
}

.ogorod-delivery-cur__item .ogorod-delivery-cur__aside {
    display: none;
}

@media (max-width: 991px) {
    .ogorod-delivery-cur__wrap {
        width: 100%;
        padding-right: 0;
    }

    .ogorod-delivery-cur__aside {
        width: 100%;
    }

    .ogorod-delivery-cur__item--active {
        padding: 0;
        text-align: left;
    }

    .ogorod-delivery-cur__item--active .ogorod-delivery-cur__inner {
        /*display: none;*/
    }

    .ogorod-delivery-cur__item--active .ogorod-delivery-cur__aside {
        display: block;
        width: 100%;
    }
        .ogorod-delivery-cur__item {
        width: 100%;
        margin-right: 0;
    }

}

@media (max-width: 767px) {
    .delivery-page-main__item {
        width: 100%;
        margin-right: 0;
    }



    .delivery-page__main {
        padding: 30px 16px;
    }

    .ogorod-delivery-block-1__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .ogorod-delivery-block-1__item:last-child {
        margin-bottom: 0;
    }
}