

/* Start:/bitrix/templates/avji-zuhal/styles.css?175986699721517*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }

        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #e6e2d1 0%, #f1eee2 100%);
            padding: 20px 0;
            border-bottom: 1px solid #d4d0c0;
            width: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .journal-title {
            font-size: 2.5em;
            font-weight: bold;
            color: #2c2c2c;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .journal-title span {
            color: #8a7f5e;
        }

        .journal-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9em;
            color: #555;
        }

        .journal-info {
            text-align: center;
        }

        .journal-info h2 {
            font-size: 1.8em;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .journal-info p {
            margin: 5px 0;
        }

        /* Navigation */
        nav {
            background-color: #fff;
            border-top: 1px solid #e6e2d1;
            border-bottom: 1px solid #e6e2d1;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .main-nav {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .main-nav li {
            margin-right: 25px;
            position: relative;
        }

        .main-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 15px 0;
            display: block;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: #8a7f5e;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8a7f5e;
            transition: width 0.3s;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .search-box {
            display: flex;
            margin: 10px 0;
        }

        .search-box input {
            padding: 8px 12px;
            border: 1px solid #e6e2d1;
            border-right: none;
            width: 200px;
            transition: border-color 0.3s;
        }

        .search-box input:focus {
            outline: none;
            border-color: #8a7f5e;
        }

        .search-box button {
            padding: 8px 15px;
            background: #e6e2d1;
            border: 1px solid #e6e2d1;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-box button:hover {
            background: #d4d0c0;
        }

        /* Main Content Layout */
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin: 40px 0;
            flex: 1;
            align-items: stretch; /* Добавлено для выравнивания высоты */
        }

        .content-main {
            display: flex;
            flex-direction: column;
            min-height: 100%; /* Добавлено для выравнивания высоты */
        }

        .hero {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 50px;
            border-radius: 5px;
            margin-bottom: 30px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid #8a7f5e;
            flex: 1; /* Добавлено для выравнивания высоты */
        }

        .hero h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #2c2c2c;
            font-size: 1.8em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .hero h2 i {
            color: #8a7f5e;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            padding: 30px;
            margin: 30px 0;
            border-radius: 5px;
            font-style: italic;
            text-align: center;
            font-size: 1.1em;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            position: relative;
        }

        .highlight-box::before {
            content: '"';
            font-size: 4em;
            color: #8a7f5e;
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }

        /* Info Cards Section */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .info-card {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 3px solid #8a7f5e;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .info-card h3 {
            color: #2c2c2c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3em;
        }

        .info-card h3 i {
            color: #8a7f5e;
        }

        .info-card p {
            color: #555;
            margin-bottom: 15px;
        }

        .info-card ul {
            list-style-type: none;
            padding-left: 0;
        }

        .info-card li {
            padding: 5px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-card li i {
            color: #8a7f5e;
            font-size: 0.8em;
        }

        /* Sidebar Styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
            height: 100%; /* Добавлено для выравнивания высоты */
        }

        .current-issue {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 25px;
            text-align: center;
            border-radius: 5px;
            border: 2px solid #e6e2d1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            flex: 1; /* Добавлено для выравнивания высоты */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Центрируем содержимое по вертикали */
        }

        .current-issue:hover {
            transform: translateY(-5px);
        }

        .current-issue h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .current-issue h3 i {
            color: #8a7f5e;
        }

        .issue-cover {
            width: 100%;
            max-width: 200px;
            height: 280px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            border: 1px solid #d4d0c0;
        }

        .cover-title {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c2c2c;
            text-align: center;
            padding: 0 10px;
        }

        .cover-subtitle {
            font-size: 1em;
            color: #8a7f5e;
            margin-top: 10px;
            text-align: center;
        }

        .cover-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #8a7f5e;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.8em;
            font-weight: bold;
        }

        .issue-number {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c2c2c;
            margin: 15px 0;
            background: #e6e2d1;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #8a7f5e;
            color: white;
            padding: 12px 25px;
            margin-top: 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 1em;
        }

        .download-btn:hover {
            background-color: #756b4f;
        }

        .editor-card {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 30px;
            border-radius: 5px;
            border: 1px solid #e6e2d1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex: 1; /* Добавлено для выравнивания высоты */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Центрируем содержимое по вертикали */
        }

        .editor-card h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.5em;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .editor-card h3 i {
            color: #8a7f5e;
        }

        .editor-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .editor-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-style: italic;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 3px solid #8a7f5e;
        }

        .editor-photo i {
            font-size: 3em;
            color: #8a7f5e;
        }

        .editor-details {
            text-align: center;
        }

        .editor-name {
            font-weight: bold;
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .editor-details p {
            margin: 5px 0;
            color: #555;
        }

        /* Carousel Styles */
        .partners {
            margin: 50px 0;
            padding: 40px 0;
            border-top: 1px solid #e6e2d1;
            border-bottom: 1px solid #e6e2d1;
            position: relative;
            overflow: hidden;
            width: 100%;
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
        }

        .partners h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #2c2c2c;
            font-size: 1.8em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .partners h2 i {
            color: #8a7f5e;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 140px;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            align-items: center;
            animation: scroll 30s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 220px;
            height: 100px;
            margin: 0 25px;
            background: white;
            border: 1px solid #e6e2d1;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1.1em;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            padding: 10px;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        .partner-logo i {
            font-size: 1.5em;
            margin-bottom: 5px;
            color: #8a7f5e;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-220px * 8 - 25px * 8));
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            padding: 50px 0 20px;
            margin-top: 50px;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section h3 i {
            color: #8a7f5e;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #8a7f5e;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #d4d0c0;
            font-size: 0.9em;
            color: #555;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: #f8f7f3;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            flex: 1;
            min-width: 200px;
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #8a7f5e;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1em;
            color: #555;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }

            .main-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .sidebar {
                order: -1;
            }

            .partner-logo {
                width: 200px;
                margin: 0 20px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 8 - 20px * 8));
                }
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            .journal-title {
                font-size: 2em;
            }

            .journal-meta {
                justify-content: center;
                margin-top: 10px;
                flex-direction: column;
                gap: 10px;
            }

            .nav-container {
                flex-direction: column;
            }

            .main-nav {
                justify-content: center;
                margin-bottom: 15px;
            }

            .main-nav li {
                margin: 0 10px;
            }

            .search-box input {
                width: 150px;
            }

            .hero {
                padding: 30px 20px;
            }

            .hero h2 {
                font-size: 1.5em;
            }

            .current-issue h3, .editor-card h3 {
                font-size: 1.3em;
            }

            .issue-cover {
                max-width: 180px;
                height: 250px;
            }

            .issue-number {
                font-size: 1.5em;
            }

            .partner-logo {
                width: 180px;
                height: 90px;
                margin: 0 15px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-180px * 8 - 15px * 8));
                }
            }

            .info-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .journal-title {
                font-size: 1.8em;
            }

            .main-nav {
                flex-direction: column;
                text-align: center;
                width: 100%;
            }

            .main-nav li {
                margin: 5px 0;
                width: 100%;
            }

            .main-nav a {
                padding: 10px;
            }

            .search-box {
                width: 100%;
                justify-content: center;
            }

            .search-box input {
                width: 70%;
            }

            .hero {
                padding: 20px 15px;
            }

            .highlight-box {
                padding: 20px 15px;
            }

            .current-issue, .editor-card {
                padding: 20px 15px;
            }

            .issue-cover {
                max-width: 150px;
                height: 210px;
            }

            .cover-title {
                font-size: 1.5em;
            }

            .download-btn {
                padding: 10px 20px;
            }

            .editor-photo {
                width: 120px;
                height: 120px;
            }

            .partner-logo {
                width: 150px;
                height: 80px;
                margin: 0 10px;
                font-size: 0.9em;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-150px * 8 - 10px * 8));
                }
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stats {
                flex-direction: column;
            }
        }
/* End */


/* Start:/bitrix/templates/avji-zuhal/template_styles.css?158798361011363*/
/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
	font-family:'Times new Roman', serif;
	background:#f7f7f7;
	min-width:320px;
}
h1, h2, h3{
	font-family:'Times new Roman', serif;
}

.text-brown-av{
	color:#71450e !important;
}

.breadcrumb{
	font-family:'Times new Roman', serif;
}
.breadcrumb li a{
	font-family:'Times new Roman', serif;
	text-decoration:none;
	color:#d2680a;
}

p {
    font-size: 14pt;
    font-weight: 300;
    line-height: 18pt;
    color: #000;
}

/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;

}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius:5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #525965;
}
::-webkit-scrollbar-thumb:active {
  background: #525965;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

a,
a:hover,
a:focus {
    color: #d2680a;
    text-decoration: none;
    transition: all 0.3s;
}

.bg-light-av{
	background: #dae9cd9c !important;
}
.section {
	margin-bottom:5px;
	font-size:14px;
	color:#000;
}

.article-name:hover{
	color: orange;
}

.article-name{
	font-weight:700;
    color: #71450e;
	font-size:1.2em;
}

.authors,.authors-work-place{
	margin-left:20px;
	margin-bottom:5px;
}

.download-view, .download, .view{
	margin:5px;
	color:#71450e;
}
.download{
	color:;
}
.navbar {
    padding: 5px;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    color: #71450e;
    transition: all 0.3s;
	background:#dddfd0;
}
#sidebar ul li ul li a {
	text-align:left;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
	/* font-family:'Palatino Linotipe'; */
	font-family:'Times new Roman', serif;
}
#sidebar .sidebar-header h4 a {
	color: #71450e;
	margin:0;
	padding:0;
	font-size:1em;
	font-family:'Times new Roman', serif;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul li {
	margin-bottom:5px;
    padding-right: 30px;
	text-transform:uppercase;
    display: block;
	text-align:right;
	position:relative;
}
#sidebar ul li button {
	position:absolute;
	top:3px; 
	right:10px; 
	font-size:12px; 
	cursor: pointer;
}
#sidebar ul li a {
    padding: 5px;
    font-size: 0.7em;
	letter-spacing:2px;
	color: black;
	font-weight:700;
	font-family:'Times new Roman', serif;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

#sidebar ul li a:hover {
    color: #71450e;
	border-bottom: 1px solid orange;
	text-decoration:none;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: orange;
}

a[data-toggle="collapse"] {
    position: relative;
}


ul ul a {
	text-align:left;
    font-size: 0.7em !important;
    padding-left: 60px !important;
}
ul ul ul a {
	text-align:left;
    font-size: 0.7em !important;
    padding-left: 80px !important;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 1024px) {/* ------------ SIDEBAR STYLE ------ */

	#sidebar {
		width: 200px;
		position: fixed;
		top: 0;	
		z-index: 9999;
		left: -200px;
		height: 100vh;
		color: #71450e;
		background:#dae9cd;
		transition: all 0.3s;
		overflow-y: scroll;
		box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	}

	#sidebar.active {
		left: 0;
	}

	#sidebar.active {
		margin-left: 0;
	}
	.overlay {
		display: none;
		position: fixed;
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.7);
		z-index: 9998;
		opacity: 0;
		transition: all 0.5s ease-in-out;
	}
	.overlay.active {
		display: block;
		opacity: 1;
	}

	#sidebar .sidebar-header {
		padding: 20px;
		/* font-family:'Palatino Linotipe'; */
		font-family:'Times new Roman', serif;
	}
	#sidebar .sidebar-header h4 {
		font-size:1.05rem;
	}

	#sidebar ul.components {
		padding: 20px 0;
	}


	#sidebar ul li a {
		padding: 5px;
		padding-right: 25px;
		font-size: 0.6em;
		text-transform:uppercase;
		letter-spacing:1px;
		display: block;
		color: #71450e;
		font-weight:700;
		text-align:right;
	}

	.dropdown-toggle::after {
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
	}

	#sidebar ul li a:hover {
		color: orange;
		border-bottom: 1px solid orange;
	}

	#sidebar ul li.active>a,
	a[aria-expanded="true"] {
		color: orange;
	}

	a[data-toggle="collapse"] {
		position: relative;
	}

	ul ul a {
		font-size: 0.55em !important;
		padding-left: 50px !important;
	}
	ul ul ul a {
		font-size: 0.5em !important;
		padding-left: 80px !important;
	}

	ul.CTAs {
		padding: 20px;
	}

	ul.CTAs a {
		text-align: center;
		font-size: 0.8em !important;
		display: block;
		border-radius: 5px;
		margin-bottom: 5px;
	}

	a.download {
		background: #fff;
		color: #7386D5;
	}

	a.article,
	a.article:hover {
		background: #6d7fcc !important;
		color: #fff !important;
	}

	/* ---------------------------------------------------
		CONTENT STYLE
	----------------------------------------------------- */

	#content {
		width: 100%;
		padding: 0px;
		min-height: 100vh;
		transition: all 0.3s;
		position: absolute;
		top: 0;
		right: 0;
	}
}

@media only screen and (max-width: 331.98px) {

    #lg_log {
        width: 15%;
        height: 30px;
        padding: 10px 0 0 0;
        margin: 0;
    }

    #lg_log ul li {
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 24px;
        height: 10px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 24px;
        border: 0;
        border-radius: 100%;
    }
}

@media only screen and (min-width: 332px) and (max-width: 428.98px) {

    #lg_log ul li {
        width: 30px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 24px;
        height: 10px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 24px;
        border: 0;
        border-radius: 100%;
    }
}

@media only screen and (min-width: 429px) and (max-width: 487.98px) {

    #lg_log ul li {
        width: 33px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 26px;
        height: 10px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 25px;
        padding: 0;
        margin: 5px 0 0 0;
        border: 0;
        border-radius: 14px;
    }
}

@media only screen and (min-width: 488px) and (max-width: 580.98px) {

    #lg_log ul li {
        width: 33px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 26px;
        height: 10px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 25px;
        padding: 0;
        margin: 5px 0 0 0;
        border: 0;
        border-radius: 14px;
    }
}

@media only screen and (min-width: 581px) and (max-width: 767.98px) {

    #lg_log ul li {
        width: 43px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 43px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {

        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 23px;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 859.98px) {

    #lg_log ul li {
        width: 29px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 25px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 27px;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 14px;
    }
}

@media only screen and (min-width: 860px) and (max-width: 991.98px) {

    #lg_log ul li {
        width: 29px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 25px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 27px;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023.98px) {

    #lg_log ul li {
        width: 29px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 29px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 30px;
        padding: 0;
        margin: 0;
        border: 0;
        border-radius: 14px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1295.98px) {

    #lg_log ul li {
        width: 29px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 29px;
        height: 30px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 29px;
        border: 0;
    }
}

@media only screen and (min-width: 1296px) {

    #lg_log ul li {
        width: 37px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul li a {
        width: 37px;
        padding: 0;
        margin: 0;
    }

    #lg_log ul {
        padding: 0;
        margin: 0;
    }

    #lg_button {
        width: 30px;
        border: 0;
    }
}

/* End */
/* /bitrix/templates/avji-zuhal/styles.css?175986699721517 */
/* /bitrix/templates/avji-zuhal/template_styles.css?158798361011363 */
