.delivery__features-list {
    margin: 30px auto 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 11px;
    list-style-type: none;
}

.delivery__features-list a {
    text-decoration: none;
}

.delivery__features-item {
    padding: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    width: 100%;
    height: 157px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    font-family: "PT Sans Narrow", "Noto Sans", "Arial Narrow", sans-serif;
    background: linear-gradient(#3398CC 1%, #4CA7D5 52%, #5BB9E9 100%);
    border: 1px solid #43ACE2;
}

.delivery__features-item-text {
    text-align: center;
    line-height: 20px;
}

@media (min-width: 440px) {
    .delivery__features-item {
        padding: 12px;
        font-size: 18px;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .delivery__features-list {
        display: -ms-flexbox;
        display: flex;
    }

    .delivery__features-item {
        width: 168px;
    }
}

@media (min-width: 1328px) {
    .delivery__features-item {
        width: 128px;
    }
}

@media (min-width: 1440px) {
    .delivery__features-item {
        width: 150px;
    }
}

@media (min-width: 1920px) {
    .delivery__features-item {
        width: 168px;
    }
}

.delivery__banner {
    margin-top: 50px;
}

.delivery__banner-img {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.delivery__banner-l {
    display: none;
}

@media (min-width: 520px) {
    .delivery__banner-xs {
        display: none;
    }

    .delivery__banner-l {
        display: block;
    }
}

.delivery__section {
    margin-top: 60px;
    font-family: "PT Sans Narrow", "Noto Sans", "Arial Narrow", sans-serif;
}

.delivery__section-title {
    position: relative;
    color: #353535;
    line-height: 30px;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.delivery__section-title::before {
    position: absolute;
    display: block;
    content: none;
    width: 30px;
    height: 30px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-filter: invert(34%) sepia(64%) saturate(750%) hue-rotate(174deg) brightness(90%) contrast(85%);
    filter: invert(34%) sepia(64%) saturate(750%) hue-rotate(174deg) brightness(90%) contrast(85%);
}

.delivery__section-title#pickup::before {
    background-image: url(../../img/delivery/self.svg);
}

.delivery__section-title#delivery-in-minsk::before {
    background-image: url(../../img/delivery/city.svg);
}

.delivery__section-title#autolight::before {
    background-image: url(../../img/delivery/autolight.svg);
}

.delivery__section-title#delivery-in-belarus::before {
    background-image: url(../../img/delivery/belarus.svg);
}

.delivery__section-title#courier-in-belarus::before {
    background-image: url(../../img/delivery/car.svg);
}

.delivery__section-title#courier-in-russia::before {
    background-image: url(../../img/delivery/russia.svg);
}

.delivery__section-title#courier-in-kazahstan::before {
    background-image: url(../../img/delivery/kazahstan.svg);
    -webkit-filter: invert(34%) sepia(64%) saturate(750%) hue-rotate(149deg) brightness(90%) contrast(85%);
    filter: invert(34%) sepia(64%) saturate(750%) hue-rotate(149deg) brightness(90%) contrast(85%);
}

.delivery__section-subtitle {
    color: #353535;
    line-height: 30px;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
}

.delivery__section-text {
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
    line-height: auto;
    font-weight: normal;
}

.delivery__section-text a {
    color: #3398CC;
    text-decoration: underline;
}

.delivery__section-ordered-list {
    margin-top: 15px;
    padding-left: 13px;
    font-size: 16px;
}

.delivery__section-unordered-list {
    padding-left: 24px;
    list-style-type: none;
}

.delivery__section-unordered-list-item {
    position: relative;
}

.delivery__section-unordered-list-item:before {
    position: absolute;
    top: 10px;
    left: -10px;
    display: block;
    content: "";
    height: 4px;
    width: 3px;
    background-color: #000000;
    border-radius: 100%;
}

.delivery__map-pickup-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

.delivery__pickup-imgs {
    margin-top: 10px;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.delivery__pickup-imgs img {
    height: 30vw;
    width: calc(50% - 5px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}

@media (min-width: 768px) {
    .delivery__section-title {
        padding-left: 40px;
    }

    .delivery__section-title::before {
        content: "";
    }

    .delivery__map-pickup-wrapper {
        display: grid;
        grid-template-columns: 1fr 230px;
        gap: 10px;
    }

    .delivery__pickup-imgs {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .delivery__pickup-imgs img {
        height: calc(50% - 5px);
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .delivery__map-pickup-wrapper {
        grid-template-columns: 1fr 330px;
    }
}

@media (min-width: 1440px) {
    .delivery__map-pickup-wrapper {
        grid-template-columns: 1fr 430px;
    }
}

.green-area {
    color: #079D04;
}

.blue-area {
    color: #056596;
}

.with-arrow-down {
    position: relative;
}

.with-arrow-down:after {
    position: absolute;
    top: 10px;
    right: -11px;
    display: block;
    content: "";
    width: 10px;
    height: 7px;
    background-image: url(../../img/icons/arrow-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.accordion {
    margin-top: 18px;
    min-height: 58px;
    background-color: rgba(51, 153, 204, 0.0352941176);
}

.accordion__header {
    padding: 5px 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #3398CC;
}

.accordion__title {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    text-transform: capitalize;
}

.accordion__subtitle {
    padding-right: 12px;
    position: relative;
    font-size: 18px;
    font-weight: normal;
    color: #3398CC;
}

.accordion__subtitle:after {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    top: 10px;
    width: 10px;
    height: 4px;
    background-image: url(../../img/icons/accordion-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.accordion__content {
    padding: 0 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease-out;
}

.accordion.open .accordion__subtitle:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.accordion.open .accordion__content {
    padding: 5px 15px;
    padding-bottom: 15px;
}

.accordion__inner-container-title {
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 5px 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 2px solid rgba(51, 153, 204, 0.2431372549);
    white-space: nowrap;
}

.accordion__inner-container-text {
    font-size: 15px;
    font-weight: normal;
}

.accordion__inner-container:nth-of-type(2) {
    -ms-flex-order: -1;
    order: -1;
}

@media (min-width: 768px) {
    .accordion__header {
        gap: 60px;
    }
}

@media (min-width: 1024px) {
    .accordion__header {
        gap: 80px;
    }

    .accordion__content {
        -ms-flex-pack: stretch;
        justify-content: stretch;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .accordion__inner-container:nth-of-type(2) {
        -ms-flex-order: 0;
        order: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .accordion__inner-container:nth-of-type(2) div {
        padding: 5px 30px;
    }
}

.additional {
    margin-top: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.additional__item {
    padding: 26px 57px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #353535;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1490196078);
    border-radius: 5px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease-out;
}

.additional__item:hover {
    box-shadow: 0 0 4px #d7ebff;
}

.additional__item img {
    width: 45px;
    height: 45px;
}

@media (min-width: 768px) {
    .additional {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .additional__item {
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.delivery {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.delivery h1 {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: bold;
}

.delivery.main-section {
    padding: 15px 19px 25px 19px;
}

@media (min-width: 768px) {
    .delivery.main-section {
        padding: 36px 55px;
    }
}