.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.header-search {
    position: relative;
}

.header-search form {
    z-index: 400;
    position: relative;
}

.header-search--active form::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header-search-popup {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 12px 12px 20px;
    font-size: 1rem !important;
    background-color: #ffffff;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.header-search-popup--active {
    opacity: 1;
    pointer-events: all;
}

.header-search-popup * {
    box-sizing: border-box;
}

.header-search-popup__tegs {
    margin-bottom: 15px;
}

.header-search-popup__tegs-title {
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.header-search-popup__teds-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.header-search-popup__tegs-teg {
    display: block;
    font-size: 13px;
    padding: 10px 8px;
    color: #5ea623 !important;
    border: 1px solid #5ea623;
    border-radius: 10px;
    text-decoration: none;
}

.header-search-popup__caregory {
    display: block;
    width: 100%;
}

.header-search-popup__caregory-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.header-search-popup__caregory-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #f4f4f4;
    border-radius: 10px;
    min-height: 52px;
    overflow: hidden;
}

.header-search-popup__caregory-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


.header-search-popup__caregory-item::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.header-search-popup__caregory-item-title {
    z-index: 10;
    margin: 0;
}

.header-search-popup__caregory-item-link {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
}

.header-search-popup__caregory-item-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.header-center-fixed-main {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    background-color: #ffffff;
    z-index: 450;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.2s ease-in-out;
    pointer-events: none;
}

.header-center-fixed-main--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.header-center-fixed-main--popup::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
}

.header-center-fixed-main .header-logotype {
    max-width: 185px;
}

.header-center-fixed-main .header-nav ul {
    background-color: #ffffff;
}

.description__title {
    display: block;
    margin: 30px 0;
    font-size: 30px;
}

.iblock_add__title {
    display: block;
    margin: 70px 0 16px 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Nunito", Helvetica, Arial, sans-serif;
}

.specia__title {
    display: block;
    margin: 70px 0 16px 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Nunito", Helvetica, Arial, sans-serif;
}

.specia__subtitle {
    display: block;
    margin: 35px 0 16px 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Nunito", Helvetica, Arial, sans-serif;
}

html,
body {
    scroll-behavior: smooth;
}

.description__list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 20px;
}

.description__list-item {
    margin: 0;
    padding: 0;
}

.description__list-item::before {
    display: none;
}

.description__list-link {
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    color: hsl(234, 68%, 47%) !important;
}

.header-center-fixed-main .container {
    position: relative;
}


.header-product-card-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 0 16px;
}

.header-product-card {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-rows: 1fr max-content max-content;
    column-gap: 20px;
    max-width: 350px;
    padding: 24px 15px 15px;
    border: 1px solid rgb(242, 242, 242);
    border-radius: 0 0 9px 9px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
}

.header-product-card__image-wrapper {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.header-product-card__image-inner {
    position: relative;
    padding-bottom: 80%;
}

.header-product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-product-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 15px !important;
}

.header-product-card__quantity-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-product-card__button {
    grid-column: 1 / 3;
    margin-top: 10px;
}

.header-product-card__button .element-button {
    margin: 0;
}

.element-button + .element-button {
    margin-top: 10px;
}


.popular-products-slider-section {
    position: relative;
}

.popular-products-slider-section .decorated::after {
    content: none !important;
}

.popular-products-slider {
    position: relative;
}

.popular-products-slider .slider-slide {
    float: none;
    padding: 10px;
}

.popular-products-slider .slick-track {
    display: grid;
    grid-auto-flow: column;
}

.popular-products-slider-arrow {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    height: 30px;
    width: 30px;
    color: #82be3a;
    z-index: 100;
}

.popular-products-slider-arrow--prev {
    left: 0;
    transform: translateY(-50%) translateX(-110%);
}

.popular-products-slider-arrow--next {
    right: 0;
    transform: translateY(-50%) translateX(110%);
}

@media (max-width: 991px) {
    .popular-products-slider-arrow--prev,
    .popular-products-slider-arrow--next {
        width: 28px;
        height: 56px;
        background-color: rgba(0, 0, 0, 0.2);
        transform: translateY(-50%);
        color: #FFFFFF;
    }

    .popular-products-slider-arrow--prev {
        left: 10px;
        border-radius: 0 28px 28px 0;
        padding-right: 8px;
    }

    .popular-products-slider-arrow.slick-disabled {
        opacity: 0.2 !important;
    }

    .popular-products-slider-arrow--next {
        right: 10px;
        border-radius: 28px 0 0 28px;
        padding-left: 8px;
    }
}

.popular-products-slider-arrow.slick-disabled {
    color: #e3e2e2;
}

.popular-products-slider-arrow svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    fill: currentColor;
}

.popular-product-slide,
.popular-product-slide .popular-product-card {
    height: 100%;
}

.popular-product-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 9px;
    box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.1);
    padding: 25px 15px 25px 20px;
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-rows: 1fr max-content;
    column-gap: 20px;
}

.popular-product-card__image-wrapper {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.popular-product-card .item-tags {
    left: 22px;
}

.popular-product-card__image-link {
    position: relative;
    display: block;
    padding-bottom: 80%;
}

.popular-product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popular-product-card__title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin: 0 0 10px !important;
}

.popular-product-card__title-link {
    font-weight: 700;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
}

.popular-product-card__footer {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*////////////////////////////////*/
/*VIDEO*/
/*////////////////////////////////*/
.video-detail-page .landing-request {
    margin-top: 50px;
}

.video-detail-page .landing-request {
    margin-top: 70px;
}

/*what-new-list*/
.video-detail-page .what-new-list__item.landing-item-container {
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: center;
    border-radius: 9px;
    gap: 17px;
    padding: 20px;
    height: 100%;
}

@media (min-width: 768px) {
    .video-detail-page .what-new-list__item.landing-item-container {
        padding: 45px 36px;
    }
}

.video-detail-page .what-new-list__item-number.school-big-online {
    position: static;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    font-size: 27px;
    font-weight: 800;
    line-height: 0.8;
    padding: 4px 6px;
}

@media (min-width: 768px) {
    .video-detail-page .what-new-list__item-number.school-big-online {
        width: 40px;
        height: 40px;
        font-size: 37px;
        padding: 3px 8px;
    }
}

/*webinar-list*/
.video-detail-page .webinar-list.school-road {
    padding: 10px 20px;
    border-radius: 9px;
}

@media (min-width: 768px) {
    .video-detail-page .webinar-list.school-road {
        padding: 10px 48px;
    }
}

.video-detail-page .webinar-list__item-wrapper.school-road-item {
    padding: 20px 0;
}

.video-detail-page .col-md-6 figure {
    aspect-ratio: 524 / 349;
}

@media (min-width: 768px) {
    .video-detail-page .col-md-6 figure {
        aspect-ratio: 551 / 500;
    }
}

.video-detail-page .col-md-6 figure .gallery-item {
    height: 100%;
}

.video-detail-page .col-md-6 figure .gallery-item img {
    height: 100%;
    object-fit: cover;
}


/*form-button-decorate*/
.video-detail-page .element-right {
    padding: 29px 27px 25px;
}

@media (max-width: 767px) {
    .video-detail-page .element-right h1 {
        font-size: 30px;
    }
}


@media (max-width: 339px) {
    .video-detail-page .element-right h1 {
        font-size: 24px;
    }
}


@media (min-width: 1200px) {
    .video-detail-page .element-right {
        padding: 42px 68px 23px;
    }
}

/*form-button-decorate properties*/
.video-detail-page .product-page-header .element-small-properties {
    border: 0;
    font-size: 14px;
}

@media (min-width: 340px) {
    .video-detail-page .product-page-header .element-small-properties {
        font-size: 16px;
    }
}


.video-detail-page .product-page-header .element-small-properties > dt > span > span {
    font-weight: 700;
}

.video-detail-page .product-page-header .element-small-properties > dt {
    flex: 1 0 40%;
    max-width: 40%;
}

.video-detail-page .product-page-header .element-small-properties > dd {
    flex: 1 0 60%;
    max-width: 60%;
}

.video-detail-page .product-page-header .element-small-properties > dd > span {
    font-weight: 400;
}

/*Buy*/
.product-page-header .product-page-header-buy-wrapper {
    padding-bottom: 20px;
}

.video-detail-page .product-page-header .form-button-decorate {
    font-size: 15px;
    padding: 12px 24px;
}

@media (min-width: 370px) {
    .video-detail-page .product-page-header .form-button-decorate {
        font-size: 17px;
        padding: 12px 30px;
    }
}

@media (min-width: 768px) {
    .video-detail-page .product-page-header .form-button-decorate {
        font-size: 21px;
        padding: 12px 40px;
    }
}

.video-detail-page .product-page-header .catalog-price {
    font-weight: 800;
    font-size: 26px;
    color: #5EA623;
}

@media (min-width: 370px) {
    .video-detail-page .product-page-header .catalog-price {
        font-size: 35px;
    }
}

@media (min-width: 768px) {
    .video-detail-page .product-page-header .catalog-price {
        font-size: 43px;
    }
}

/*Share*/

.product-page-header-share-wrapper {
    border-top: 1px solid #E7E7E7;
    padding: 20px 8px 0;
}

.product-page-header-share {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 26px;
}

.product-page-header-share__left-column {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.product-page-header-share__icon {
    width: 30px;
    height: 30px;
}

.product-page-header-share__icon-text {
    font-weight: 700;
    font-size: 16px;
}

.product-page-header-share__links {
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .product-page-header-share__links {
        flex-shrink: 0;
        margin-left: auto;
    }
}

/*footer*/

.footer-top {
    height: auto;
}

.footer-top-nav {
    display: grid !important;
    height: auto;
    min-height: 70px;
}

.footer-links-container.footer-top-nav {
    height: auto;
    min-height: 70px;
}

.footer-links-container__header .footer-menu-item {
    margin: 0;
}

.footer-links-container {
    padding: 10px 0 20px;
    display: grid;
    gap: 20px;
}

.footer-links-container__header {
    display: flex;
    justify-content: center;
}

.footer-links-container__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
}

.footer-links-container__column {
    display: grid;
    grid-auto-rows: min-content;
    gap: 10px;
    margin: 0 auto;
}

.footer-links-container__column-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-container__column-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
}

.footer-menu-item.footer-menu-item--t-item {
    font-weight: 400;
}

.footer-links-container__column .footer-links-container__column-list > li::before {
    position: static;
    content: "-";
    width: auto;
    height: auto;
    color: white;
    background: none;
}

.footer-links-container__column-bold {
    min-height: 120px;
    display: grid;
}

.footer-top .footer-menu {
    display: flex;
    gap: 5px 20px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.footer-top .footer-menu .footer-menu-item {
    margin: 0;
}

@media (max-width: 1199px) {

    .footer-links-container__inner {
    grid-template-columns: 1fr 1fr;   
    }
}

@media (min-width: 990px) {
    .footer-top .footer-menu .footer-menu-item:nth-child(5) {
        margin-left: auto;
        /*display: flex;*/
    }
}


@media (max-width: 767px) {

    .footer-links-container__inner {
    grid-template-columns: 1fr;   
    }

    .footer-links-container__inner b, .footer-links-container__inner {
    white-space: normal !important;   
    }

    .footer-links-container__column:not(:last-child) {
    border-bottom: 1px solid #4C8727;
    padding-bottom: 10px;
    }

    .footer-links-container__column {
    margin: 0;
    }


}


