/* Выравнивание комментариев по левой стороне*/
.t-feed__post-popup__comments {
    text-align: left !important;
}


.uc-client-review .t-list__item .t-bgimg {
    border-radius: 250px;   
}

/* Стили для отзыв мобильно версии */
@media only and (max-width: 768px) {
    .uc-client-review .t-list__item {display: flex; flex-wrap: wrap;}
    .uc-client-review .t-list__item .t-bgimg {width: 80px !important; height: 80px !important;}
    .uc-client-review .t-list__item .t-cell {padding-left: 0 !important;}
    .uc-client-review .t-list__item .t-cell .t558__bubble {margin-top: 15px;}
    .uc-client-review .t-list__item .t-cell .t558__bubble-tail {display: none;}
}

.uc-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s, transform 0.5s;
    z-index: 99999;
}

.uc-header-menu.hide {
  opacity: 0;
  transform: translateY(-20px);
}

.uc-header-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.t-body {
    padding-top: 90px;
    background-color: #f4f7fb;
}

/* Анимация поднятия карточек работ при наведении */

#rec613455087 .tn-atom__img {
  transition: .3s all;
}

#rec613455087 .tn-atom__img:hover {
  transform: translateY(-5px);
}

.t-store__prod-popup__text {
    font-size: 18px;
    max-width: 600px;
}

/* Чиним баг кнопки меню. Она почему-то скрыта под несколькими слоями и не кликается */
#rec635536725 {
z-index: 999999 !important;
position: absolute;    
}



/* Другие товары в магазине */

@media screen and (min-width: 1240px) {
    .t-store__grid-cont_mobile-one-row.t-store__relevants-grid-cont .t-store__card {
        max-width: 350px;
    }
}

.js-product-relevant {
    padding: 15px !important;
    margin: 0 10px;
    background: #F5F5F4;
    border-radius: 15px;  
}

.t-store__relevants__container .t-container {
  max-width: 98%;
}

.js-product-relevant .t-store__card__imgwrapper {
  padding-bottom: 210px;
  
}

.js-product-img {border-radius: 10px;}



/* Стилизация формы оплаты партнёрам */

.js-partner-money-form,
.js-partner-money-form input {text-align: center;}




.notification,
.notification * {
    box-sizing: border-box;
    
}

.notification {
    font-family: 'Manrope', Helvetica, Arial, font-sans;
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #ff8200;
    color: #fff;;
    width: 90%;
    max-width: 650px;
    border-radius: 24px;
    padding: 10px 30px;  
    transition: 0.3s all;
    z-index: 200;
    opacity: 1;
    transform: translateY(0);
}
.notification-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.notification--hidden {
    opacity: 0;
    z-index: -1;
    transform: translateY(25px);
}
.notification-text {
    max-width: 80%;
    width: 100%;
	line-height: 1.3;
    padding: 10px 0;
    font-size: 25px;
    user-select: none;    
}
.notification-text a {
    color: #fff;
    text-underline-offset: 3px; 
}
.notification-text a:hover {
    opacity: 0.8;
}
.notification-btn {
    padding: 10px 15px; 
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background-color: transparent;
    font-size: 50px;
    margin-left: auto;
    transition: .3s all;
    color:#fff;
    border-radius: 32px;
}
.notification-btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 650px) {
    .notification {
        right: 50%;
        transform: translateX(50%);
    }
}
@media screen and (max-width: 480px) {
    .notification-btn {
        width: 100%;
        background-color: rgba(0,0,0,.2);
        border-radius: 20px;
        font-size: 25px;
        margin-top: 10px;
    }
    .notification-text {
        max-width: 100%;
        text-align: center;
        font-size: 20px;
    }
    .notification-container {
        flex-wrap: wrap;
        text-align: center;
    }
    .notification { 
        border-radius: 20px;
        padding: 10px;
    }
}