

/* Start:/bitrix/templates/zgu_inner/components/bitrix/menu/program_menu/style.css?1701959745581*/
/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(/bitrix/templates/zgu_inner/components/bitrix/menu/program_menu/images/left_menu_bg.gif) top repeat-x;
}

ul.left-menu li a
{
	font-size:100%;
	color:#BC262C;
	font-weight:bold;
	text-decoration:none;
}

ul.left-menu li a:visited
{
	color:#BC262C;
}

ul.left-menu li a:hover
{
	color:#BC262C;
}


ul.left-menu li a.selected:link,
ul.left-menu li a.selected:visited,
ul.left-menu li a.selected:active,
ul.left-menu li a.selected:hover
{
	color:#FC8D3D;
}




/* End */


/* Start:/bitrix/components/sporina/socialmedia.widget/templates/new/style.css?17624143459726*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* Стили для виджета социальных сетей */

/* Виджет социальных сетей */
.social-widget {
    position: fixed;
    bottom: 135px;
    right: 30px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

/* Контейнер списка */
.list-container {
    position: relative;
}

.list-container.active .social-menu {
    opacity: 1;
    transform: scale(1);
}

.list-container.active .social-item {
    animation: fadeInItem .6s .2s forwards;
}

.list-container.active .social-item:nth-child(2) { 
    animation-delay: .4s; 
}

.list-container.active .social-item:nth-child(3) { 
    animation-delay: .6s; 
}

.list-container.active .social-item:nth-child(4) { 
    animation-delay: .8s; 
}

.list-container.active .social-item:nth-child(5) { 
    animation-delay: 1s; 
}

.list-container.active .widget-toggle {
    animation: onePulse .6s forwards linear;
}

.list-container.active .menu-icon-wrapper {
    transform: rotate(-45deg);
}


/* Кнопка виджета */
.widget-toggle {
    box-shadow: 0px 0px 0px 4px rgba(143, 143, 146, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;

    transition: .2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Эффект пульсации */
.widget-toggle::before,
.widget-toggle::after {
    content: '';
    position: absolute;
    border: 2px solid var(--pulse-color, #828283);
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.widget-toggle::after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.widget-toggle:hover, 
.widget-toggle:focus {
    box-shadow: 0px 0px 0px 8px rgba(143, 143, 146, 0.3);
    background-color: #4a52d9;
}

/* Остановка анимации при наведении */
.widget-toggle:hover::before,
.widget-toggle:hover::after,
.widget-toggle:focus::before,
.widget-toggle:focus::after {
    animation-play-state:paused;
    display: none;
    
}

.widget-toggle:focus { 
    outline: 0; 
}

/* CSS иконка виджета (share icon) - исправленная версия */
.menu-icon-wrapper {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Кружочки иконки поделиться */
.share-circle {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s 
ease;
}

.share-circle.top-left {
    top: 0px;
    left: 1px;
}

.share-circle.top-right {
    top: 10px;
    right: -3px;
}

.share-circle.bottom-center {
    bottom: -2px;
    left: 18%;
    transform: translateX(-50%);
}

/* Соединяющие линии */
.share-line {
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease;
}

.share-line.line-1 {
    top: 3px;
    left: 1px;
    width: 2px;
    height: 22px;
    transform: rotate(296deg);
    transform-origin: top left;
}

.share-line.line-2 {
    top: 14px;
    right: 0px;
    width: 2px;
    height: 22px;
    transform: rotate(65deg);
    transform-origin: top right;
}

/* Анимация трансформации в крестик */
.list-container.active .share-circle {
    opacity: 0;
}

.list-container.active .share-line.line-1 {
    top: 2px;
    left: 11px;
    width: 2px;
    height: 22px;
    transform: rotate(0deg);
}

.list-container.active .share-line.line-2 {
    top: 12px;
    right: 23px;
    width: 2px;
    height: 22px;
    transform: rotate(270deg);
}

/* Меню социальных сетей */
.social-menu {
    background-color: #fff;
    border-radius: 8px;
    width: 160px;
    min-height: 170px;
    box-shadow: 0px 0px 4px 4px rgba(150, 157, 249, 0.16);
    padding: 6px;
    position: absolute;
    right: 24px;
    bottom: 0;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all .3s ease .1s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-menu.active {
    opacity: 1;
    transform: scale(1);
}
/*
.social-menu::after {
    content: '';
    position: absolute;
    bottom: -9px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}*/

/* Элементы социальных сетей */
.social-item {
    display: flex;
    align-items: center;
    color: #1c3991;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: .2s ease-in;
    transform: translatex(-10px);
    opacity: 0;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    justify-content: flex-start;
}

.social-item:hover { 
    color: #5c67ff; 
}

.social-item:after {
    content: '';
    position: absolute;
    height: 1px;
    width: calc(100% - 24px);
    left: 12px;
    bottom: 0;
    background-color: rgba(132, 160, 244, 0.1);
}

.social-item:last-child:after { 
    display: none; 
}

.social-icon {
    width: 30px;
    height: 35px;
    margin-right: 8px;
    flex-shrink: 0;
}

.social-item span {
    display: inline-block;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
}

/* Анимации */
@keyframes onePulse {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(92,103,255,0.3);
    }
    
    50% {
        box-shadow: 0px 0px 0px 12px rgba(92,103,255,0.1);
    }
    
    100% {
        box-shadow: 0px 0px 0px 4px rgba(92,103,255,0.3);
    }
}

@keyframes fadeInItem {
    100% {
        transform: translatex(0px);
        opacity: 1;
    }
}

/* Цвета для социальных сетей */
.whatsapp { color: #25D366; }
.telegram { color: #0088cc; }
.viber { color: #7360f2; }
.vk { color: #4c75a3; }
.feedback { color: #ff6b6b; }

/* Форма обратной связи */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.feedback-modal.active {
    display: flex;
    z-index: 1000;
}

.feedback-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.feedback-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {


    .widget-toggle {
        width: 45px;
        height: 45px;
    }

    .menu-icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .social-menu {
        right: 24px;
        width: 150px;
        min-height: 150px;
        padding: 5px;
    }

    .social-item {
        padding: 8px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .feedback-form {
        padding: 25px 20px;
        margin: 20px;
    }

    .share-circle.top-left {
        top: 0px;
        left: 1px;
    }

    .share-circle.top-right {
        top: 8px;
        right: -3px;
    }

    .share-circle.bottom-center {
        bottom: -2px;
        left: 4px;
        transform: translateX(-50%);
    }

    .share-line.line-1 {
        top: 3px;
        left: 3px;
        width: 2px;
        height: 22px;
        transform: rotate(302deg);
    }
    
    .share-line.line-2 {
        top: 11px;
        right: -3px;
        width: 2px;
        height: 18px;
        transform: rotate(64deg);
    }

    .list-container.active .share-line.line-1 {
        top: -1px;
        left: 8px;
    }
    
    .list-container.active .share-line.line-2 {
        top: 9px;
        right: 22px;
    }


    
}

@media (max-width: 480px) {
    .social-widget {
        bottom: 185px;
        right: 15px;
    }

    .widget-toggle {
        width: 50px;
        height: 50px;
    }

    .menu-icon-wrapper {
        width: 18px;
        height: 18px;
    }

    .social-menu {
        right: 30px;
        bottom: 40px;
        width: 70px;
        min-height: 150px;
        padding: 4px;
    }

    .social-item {
        padding: 6px;
    }

    .social-item span {
        display: none;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .feedback-form {
        padding: 20px 15px;
        margin: 15px;
    }

    .share-circle.top-left {
        top: -3px;
        left: 0px;
    }

    .share-circle.top-right {
        top: 7px;
        right: -7px;
    }

    .share-circle.bottom-center {
        bottom: -6px;
        left: 3px;
        transform: translateX(-50%);
    }

    .share-line.line-1 {
        top: 1px;
        left: 3px;
        width: 2px;
        height: 22px;
        transform: rotate(302deg);
    }

    .share-line.line-2 {
        top: 13px;
        right: -2px;
        width: 2px;
        height: 18px;
        transform: rotate(64deg);
    }

    .list-container.active .share-line.line-2 {
        top: 9px;
        right: 20px;
    }
}
/* End */


/* Start:/bitrix/components/sporina/main.feedback/templates/sporina-form-widget/style.css?17624143451775*/
/* Стили для формы обратной связи */

.feedback-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.feedback-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #dc3545;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-widget {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* End */
/* /bitrix/templates/zgu_inner/components/bitrix/menu/program_menu/style.css?1701959745581 */
/* /bitrix/components/sporina/socialmedia.widget/templates/new/style.css?17624143459726 */
/* /bitrix/components/sporina/main.feedback/templates/sporina-form-widget/style.css?17624143451775 */
