/*widget-widget-sibscribe*/
.widget-share {
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    color: black;
}
.style-telegram {
    background: #a5e3fe;
}
.style-viber {
    background: #92bbcc;
}
.style-whatsapp {
    background: #25d366;
}
.widget-share > i {
    position: absolute;
    right: 1%;
    bottom: 1%;
    font-size: 5rem;
    color: #fff;
}
.widget-share_title {}
.widget-share_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
}
.widget-share_content > p {}
.widget-share_content_button {
    align-items: center;
    background: #279ed2;
    border-radius: 0.3125rem;
    color: #fff;
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.625rem;
    height: 2.75rem;
    line-height: 1.5rem;
    padding: 0.625rem 1rem;
    transition: .2s;
    white-space: nowrap;
    width: fit-content;
}
.widget-share_content_button:hover {
    background:#228ab8;
    color: #fff !important;
}
.button-style-whatsapp {
    background: #e1e1e1;
    color: #000;
}
.button-style-whatsapp:hover {
    /*background: #e1e1e1;*/
    /*color: #000;*/
}
/*КОНЕЦ widget-sibscribe*/
/* widget-popup*/
@media screen and  (max-width: 1240px) {
    .widget-popup {display:none;}
}
@media screen and  (min-width: 1441px) {
    .widget-popup {display:block;}
}
.widget-popup {
    bottom: max(150px,50vh);
    right: 30px;
    top: auto;
    transform: translateY(50%);
    z-index: 100;
    position: fixed;
    box-shadow: 0 4px 20px hsla(0,0%,39%,.15);
}
.widget-popup_inner {
    display: block;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
}
.widget-popup_inner_header {
    background-color: #fbee7d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 15px 0;
    text-align: center;
    grid-area: title;
}
.widget-popup_inner_header_title {
    font-size: 16px;
    line-height: 18px;
    padding: 3px;
    font-weight: 700;
}
.widget-popup_inner_content {
    grid-template-columns: repeat(3,1fr);
    display: grid;
    border-radius: 10px;
    grid-template-areas:
            "content content photo";
    overflow: hidden;
    padding: 0;
}
.widget-popup_inner_content_description {
    grid-area: content;
    padding: 10px 20px;
}
.widget-popup_inner_content_description_img {
    grid-area: photo;
    position: relative;
}
.widget-popup_inner_content_description_img > img {
    bottom: 0;
    height: 95% !important;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: unset !important;
    max-width: unset !important;
}
/*КОНЕЦ widget-popup*/