#link-show-mark
{
	background: none;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: absolute;
	left: 20px;
	top: 30px;
	text-align: left;
}

#link-show-mark a
{
	border-bottom: 1px dashed #e46432 !important;
	color: #e46432 !important;
	font-size: 10pt !important;
	text-decoration: none !important;
}

#link-show-mark a:hover
{
	border: 0 !important;
}

#marks-bg
{
	background: #000;
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
	z-index: 90;
}

#marks-dialog,
#marks-dialog-about
{
	background: #fff;
	border: 1px solid #ccc;
	display: none;
	height: 140px;
	width: 300px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0 0 0 -150px;
	padding: 20px;
	z-index: 100;
}

#marks-dialog-about
{
	height: auto;
}

.md-text
{
	color: #333;
	font-size: 9pt;
	padding: 0 0 5px;
}

.md-text.centered
{
	text-align: center;
	line-height: 18px;
	padding: 0 0 20px;
}

#md-mark
{
	border: 1px dashed #ccc;
	font-size: 9pt;
	height: 70px;
	width: 280px;
	line-height: 18px;
	margin: 0 0 15px;
	padding: 10px;
}

.md-buttons
{
	overflow: hidden;
	zoom: 1;
}

.md-buttons.centered
{
	text-align: center;
}

a.md-link-send
{
	float: left;
}

a.md-link-cancel
{
	float: right;
}

a.md-link-send,
a.md-link-cancel,
a.md-link-close
{
	font-size: 9pt;
	line-height: 18px;
	text-decoration: underline !important;
}

a.md-link-send:hover,
a.md-link-cancel:hover,
a.md-link-close:hover
{
	text-decoration: none !important;
}

a.md-link-send
{
	color: green;
}

a.md-link-cancel
{
	color: #999;
}


.menu-toggle {
                display: none;
                width: 100%;
                background: #333;
                color: #fff;
                border: 0;
                padding: 15px;
                font-size: 20px;
                font-weight: 700;
                cursor: pointer;
                text-align: left;
            }
            .menu2,
            .menu3 {
                display: none;
            }
            @media (max-width: 1199px) {
                .menu-toggle {
                    display: block;
                }
                .menu2,
                .menu3 {
                    display: block;
                }
            }

 #stud {
                                padding-top: 25px;
                                padding-bottom: 25px;
                            }
                            .stats {
                                display: flex;
                                justify-content: center;
                                gap: 40px;
                                flex-wrap: nowrap;
                            }

                            .stat {
                                text-align: center;
                            }

                            /* До 1200px — все 4 блока в ряд */
                            @media (min-width: 1199px) {
                                .stats {
                                    flex-direction: row;
                                    justify-content: center;
                                    align-items: flex-start;
                                }
                            }

                            /* После 1200px — столбиком по центру */
                            @media (max-width: 1200px) {
                                .stats {
                                    flex-direction: column;
                                    align-items: center;
                                    gap: 30px;
                                }

                                .stat {
                                    width: 100%;
                                    max-width: 400px;
                                }
                            }

                            .vkk {
                            	color: #ff0000
                            }

                            .footer-email {
                            	margin-left: 0!important; 
                            	padding-left: 0!important;
                            }

                            .donate-widget{
    position: fixed;
    right: 25px;      
    bottom: 0px;     
    z-index: 9999;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /*background: #fff;*/
    /*box-shadow: 0 5px 20px rgba(0,0,0,.2);*/
    transition: .3s;
    animation: donatePulse 2.5s infinite;
}

.donate-widget img{
    width: 165px;
    height: 165px;
    object-fit: contain;
}

.donate-widget:hover{
    transform: scale(1.1);
}


/* Легкая вибрация */
@keyframes donatePulse{

    0%{
        transform: translateX(0);
    }

    2%{
        transform: translateX(-2px);
    }

    4%{
        transform: translateX(2px);
    }

    6%{
        transform: translateX(-2px);
    }

    8%{
        transform: translateX(2px);
    }

    10%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(0);
    }

}