

/* Start:/local/templates/eurochemical_main/styles/delivery.css?17803077125549*/
.delivary-page {
    min-height: calc(100vh - 300px);
    padding-top: 162px;
}

.delivary-page p, 
.delivary-page li {
    text-align: justify;
}

.delivary-page ul {
  padding-left: 20px;
  list-style: square;
}

.delivary-page ol {
  padding-left: 20px;
}

.delivary-page li::marker {
  font-size: 18px;
  transform: translateY(-50%);
  color: var(--color-font-action-link);
}

.delivery-page__content-container {
    max-width: 856px;
    margin-bottom: 80px;
}

.delivary-page__title {
    width: 100%;
    margin-bottom: 24px;

    font-size: 32px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    text-align: center;
}

.delivery-page__text-block {
    margin-bottom: 48px;
}

.delivery-page__text-block h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
}

.delivery-page__text-block p {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
}

.delivery-page__text-block p.accent {
    font-size: 16px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
}

.delivery-page__text-block ul {
    margin-top: 16px;
    list-style: square;
}

.delivery-page__text-block li {
    margin-left: 24px;

    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
}

.delivery-page__text-block li::marker {
    font-size: 24px;
    transform: translateY(-50%);
    color: var(--color-font-action-link);
}

.delivery-page__details {
    margin-bottom: 48px;
}

.advantages {
    margin-top: 0;
    border-radius: 0;
    background-color: transparent;
}

.advantages__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    padding: 24px;
    justify-content: start;
    align-items: start;
    gap: 16px;
    border-radius: 8px;
}

.advantage-card__icon {
    top: -15px;
    left: 40px;
}

.advantage-card__title {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    text-align: left;
}

.advantage-card__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
    text-align: left;
}

.advantage-card__desc p:nth-of-type(1) {
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Medium;
    /*text-align: left;*/
}

.delivery-page__steps-container {
    width: 100vw;
    padding: 48px 12px;
    background: var(--bg-color-card);
}

.steps__title {
    width: 100%;
    margin-bottom: 60px;

    font-size: 32px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    text-align: center;
}

.delivery-page__steps-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    border-top: 1px solid var(--color-border-part);
    border-bottom: 1px solid var(--color-border-part);
}

.delivery-page__steps-item {
    position: relative;
}

.delivery-page__steps-item:nth-of-type(2) {
    border-left: 1px solid var(--color-border-part);
    border-right: 1px solid var(--color-border-part);
}

.steps-item__number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;

    font-size: 18px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    color: var(--color-font-shadow);
}

.steps-item__wrapper {
    width: fit-content;
    padding: 16px 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.steps-item__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    text-align: center;
}

.steps-item__pic {
    max-width: 330px;
    min-width: 296px;
    height: 186px;
    border-radius: 10px;
}

.steps-item__desc {
    max-width: 296px;
    min-width: 242px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0%;
    font-style: Regular;
    text-align: center;
}

.delivery-page__faq-block {

}

.faq__title {
    width: 100%;

    font-size: 32px;
    font-weight: 500;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    font-style: Medium;
    text-align: center;
}

.faq__content {
    width: 100%;
}

.faq__list {
    width: 100%;
}

@media(max-width: 1050px) {
    .delivery-page__steps-list {
        flex-direction: column;
        align-items: center;
        gap: 70px;
        border-top: 0;
        border-bottom: 0;
    }
    .delivery-page__steps-item:nth-of-type(2) {
        border-left: 0;
        border-right: 0;
    }
    .steps-item__number {
        top: -36px;

        font-size: 16px;
    }
    .steps-item__wrapper {
        padding: 0;
    }
}

@media(max-width: 900px) {
	.delivary-page {
		padding-top: 100px;
	}
    .advantages__list {
        min-width: 296px;
        grid-template-columns: repeat(1, 1fr);
    }
    .advantage-card {
        padding: 16px;
    }
    .advantage-card__icon {
        left: unset;
        right: -8px;
    }
}

@media(max-width: 500px) {
    .steps__title {
        margin-bottom: 70px;
        font-size: 24px;
    }
}


/* End */


/* Start:/local/templates/eurochemical_main/components/bitrix/news.list/delivery-details/style.css?1779453620150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/eurochemical_main/components/bitrix/news.list/delivery-steps/style.css?1779453619150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/eurochemical_main/components/bitrix/news.list/faq-list/style.css?1779453619150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /local/templates/eurochemical_main/styles/delivery.css?17803077125549 */
/* /local/templates/eurochemical_main/components/bitrix/news.list/delivery-details/style.css?1779453620150 */
/* /local/templates/eurochemical_main/components/bitrix/news.list/delivery-steps/style.css?1779453619150 */
/* /local/templates/eurochemical_main/components/bitrix/news.list/faq-list/style.css?1779453619150 */
