/*Стили для заголовка кнопки "загрузить файл" в поп-апе*/
.t702 .t-form_bbonly .t-input-title {
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 14px;
}

/*Стили для иконок в футере при наведении. Обязательно пропиште этот класс иконкам*/
.footerIcon {
    opacity: 0.3;
    transition: opacity 0.3s linear;
}
    
.footerIcon:hover {
    opacity: 1;
    transition: opacity 0.2s linear;
}
    
/*Скругления для поп-апов. Скругляем только на десктопах*/
@media screen and (min-width: 960px) {
    .t-popup__container {
        border-radius: 30px;
    }
}