textarea.form__control {
    height: unset !important;
}

.banner-container {
    transition: visibility 0.2s ease, opacity 0.2s ease;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1
}

.banner-container a {
    display: block
}

.banner-container a .banner-container-image {
    width: 220px;
    height: auto
}

.electrician__list {
    margin: 0 -20px;
}

.electrician {
    width: calc(100% - 40px);
    margin: 0 20px 40px;
}

@media (min-width: 540px) {
    .electrician {
        width: calc(50% - 40px);
    }
}

@media (min-width: 768px) {
    .electrician {
        width: calc(33.3333% - 40px);
    }
}

@media (min-width: 1024px) {
    .electrician {
        width: calc(25% - 40px);
    }
}

@media (min-width: 1601px) {
    .electrician {
        width: calc(20% - 40px);
    }

}

.electrician .articles__text {
    text-align: left;
}

.electrician .articles__content {
    padding: 20px;
}

.electrician .galleries__image {
    padding-bottom: 140.42254%;
}

.electrician__title, .electrician__phone, .electrician__address {
    display: block;
    line-height: 1.4;
    margin-bottom: 4px;
}

.electrician__title, .electrician__address {
    color: #222;
}

.electrician__phone, .electrician__address {
    font-size: 16px;
    font-weight: 600;
}

.electrician__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.electrician__phone {
    color: #b12024;
}

.electrician__phone:hover {
    color: #522628;
}

.electrician.galleries__item .galleries__image::after {
    content: unset;
}

.info-blocks {
    margin: 25px 0;
}

.info-blocks__container {
    display: flex;
    color: #020202;
    padding: 25px;
}

@media (max-width: 1023px) {
    .info-blocks__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 539px) {
    .info-blocks__container {
        display: flex;
        flex-direction: column;
    }
}

.info-blocks__item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.info-blocks__item img,
.info-blocks__item svg {
    max-width: 84px;
    max-height: 84px;
}

.info-blocks__item img {
    border-radius: 6px;
}

.info-blocks__item svg {
    fill: #fff;
    stroke: #fff;
}

.info-blocks__image {
    margin-bottom: 15px;
}

.info-blocks__title {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
}

/* Info blocks on product inner page */
.product .product-icons {
    margin: 15px 0 0;
}

.product .product-icons__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1023px) {
    .product .product-icons {
        margin: 15px 0;
    }

    .info-blocks__title {
        font-size: 16px;
    }
}

@media (max-width: 539px) {
    .product .product-icons .product-icons__container {
        display: flex;
        flex-direction: column;
    }
}

.product .product-icons__item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.product .product-icons__item img,
.product .product-icons__item svg {
    max-width: 55px;
    max-height: 55px;
}

.product .product-icons__item img {
    border-radius: 6px;
}

.product .product-icons__item svg {
    fill: #fff;
    stroke: #fff;
}

.product .product-icons__title {
    color: #020202;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
}

.product .product-icons__image {
    margin-bottom: 15px;
}

/* Product inner page fixes */
@media (min-width: 1024px) {
    .product .product__cols {
        flex-wrap: nowrap;
    }

    .product .product__images-col,
    .product .product__info-col,
    .product .product__price-col {
        width: unset;
    }

    .product .product__images-col {
        flex: 0 0 35.46682%;
    }
    .product .product__info-col {
        flex: 1 1 auto;
    }
    .product .product__price-col {
        flex: 1 1 17.14621%
    }
}