/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#ffffff;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size:12px;
    height:100vh;
    margin:0px;
    padding:0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
    text-transform:uppercase;
    width:100%;
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}





#myDiv{
	display: block;
	
	
}



#myDiv2{
	display: none;
	
	
}


#myDiv3{
	display: none;
	
	
}





 @font-face {
    font-family: Circe-ExtraBold; /* Гарнитура шрифта */
    src: url(../fonts/Circe-ExtraBold.ttf); /* Путь к файлу со шрифтом */
   }
			
			
		 h3 {
    font-family: Circe-ExtraBold;
   }	
			 h2 {
    font-family: Circe-ExtraBold;
   }	
			 h1 {
    font-family: Circe-ExtraBold;
   }	
	
			
			
			p {
				
				font-size: 14px;
				 font-family: Circe-ExtraBold;
				
			}
			
			
			a  {
				
				font-size: 10px;
				 font-family: Circe-ExtraBold;
			}
			
			
	
			
	  
.hidden-menu {
  display: block;
  position: fixed;
  list-style:none;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
  width: 250px;
	
	
	
 background: linear-gradient(90deg, rgb(165, 174, 65) 0%, rgb(40, 85, 142));
			background-size: 200% 200%;
			animation: gradient 5s ease infinite;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
  height: 100%;
  top: 0;
  left: -250px;
  transition: left .2s;
  z-index: 2;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
	  
	.hidden-menu-ticker {
  display: none;
}  
	  
	  
	  .btn-menu {
  color: #A5AE41;
  background-color: ;
  padding: 5px;
  position: fixed;
  top: 40px;
  left: 5px;
  cursor: pointer;
  transition: left .23s;
  z-index: 3;
  width: 39px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.btn-menu span {
  display: block;
  height: 5px;
  background-color: #fff;
  margin: 5px 0 0;
  transition: all .1s linear .23s;
  position: relative;
}
.btn-menu span.first {
  margin-top: 0;
}
	  
	  
	.hidden-menu-ticker:checked ~ .btn-menu {
  left: 210px;
}
.hidden-menu-ticker:checked ~ .hidden-menu {
  left: 0;
}
.hidden-menu-ticker:checked ~ .btn-menu span.first {
  -webkit-transform: rotate(45deg);
  top: 10px;
}
.hidden-menu-ticker:checked ~ .btn-menu span.second {
  opacity: 0;
}
.hidden-menu-ticker:checked ~ .btn-menu span.third {
  -webkit-transform: rotate(-45deg);
  top: -10px;
}  
	
			
			
		
			
	
			
			
			
			
			
			
			
			
			
	  
	  
	  
	.container-fluid1 { 
    width: 100%; 
    border: none; 
    padding: 5px; 
		z-index: 5;
		
		
   border-radius: 50px 50px 0px 0px;
		
		
    position: fixed;
		bottom: 0%; 
		background: linear-gradient(90deg, rgb(165, 174, 65) 0%, rgb(40, 85, 142));
			background-size: 200% 200%;
			animation: gradient 5s ease infinite;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
 
   }
			
			
		@keyframes gradient {
			0%{ background-position: 0 50%;}
			
			50%{ background-position: 100% 50%;}
			
			100%{ background-position: 0 50%;}
			
			
		}	
			
			
			@keyframes vertical {
  100% {
    background-position: 0 200px;
  }
}
			
			
	
			
		@keyframes zoom {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.0);
    }
			
  100% {
        transform: scale(0.9);
    }
}	
			
			
			
			
			
	  
	  
	  
	  .container1 { 
    width: 100%; 
    position: fixed;
		z-index: 1 ;
		  margin-top: 40px;
		  margin-left: 40px;
		  
		  
	
		  }
		  
			
			
			
.container2 { 
width: 100%; 
position: fixed;
z-index: 1 ;
	
	
	height: 75px;
			
  background: linear-gradient(90deg, rgb(165, 174, 65) 0%, rgb(40, 85, 142));
			background-size: 200% 200%;
			animation: gradient 5s ease infinite;
			
	

			 border-radius: 0px 0px 50px 0px;
	
	
	
}
			
			
.container3 { 
width: 100%; 
position: fixed;
z-index: 1 ;
	margin-top: 10px;
	opacity: 0.5;
	
}
			
	  
			
.container { position:relative; }
.container video {
    position:relative;
    z-index:0;
}

	
			
			
			
			
			
			.contain_google { 
				margin-top: 0px auto;
				max-width: 100%; 
			}
			
			
        .g-scrolling-carousel .items{
            padding: 8px 0px 0px 5px;
            
        }
       
	

	
	 .gcar   {
            display: inline-block; /* notice the comments between inline-block items */
          
            height: 100px;
            a
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
            text-align: center;
            text-decoration: none;
        }
			
			
			
			
	.stories_gorizontal
			{
	  background: linear-gradient(90deg, rgb(165, 174, 65) 0%, rgb(40, 85, 142));
			background-size: 200% 200%;
			animation: gradient 15s ease infinite;
    color: #fff; 
   
    border-radius: 10px;
	width: 100px;
	height: 100px; 
	display: inline-block;
			
		}	
			
		
			
			.stories_vertical
			{
	 
			background-size: 200% 100%;
			animation: vertical 5s ease infinite;
    color: #fff; 
   
    border-radius: 10px;
	width: 100px;
	height: 100px; 
	display: inline-block;
			
		}	
			
			
			
			.stories_zoom
			{
	 
			background-size: 100% 100%;
			animation: zoom 5s ease infinite;
    color: #fff; 
   
    border-radius: 10px;
	width: 100px;
	height: 100px; 
	display: inline-block;
			
		}	
			
			
			
			
			
			
				.stories
			{
	 
			
			
    background: #404040;
   
    border-radius: 10px;
	width: 100px;
	height: 100px; 
	display: inline-block;
			
		}	
			
			
			
					.stories_convert
			{
	 
			
			
    background: #E64A19;
   
    border-radius: 10px;
	width: 100px;
	height: 100px; 
	display: inline-block;
			
		}	


	
			
			
			
			#overlaystart {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}
			
			
			
			.popupstart {
    top: 25%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 85%;
    min-width: 320px;
    max-width: 600px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #383838;
    background: #fefefe;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}
			
			
			
			
			
			.closestart {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0, 131, 119, 0.9);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;
 
}
.closestart:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/* кнопка закрытия при наведении */
.closestart:hover {
    background-color: rgba(252, 20, 0, 0.8);
}
		
			
/* изображения в модальном окне */
.popupstart img {
    width: 100%;
    height: auto;
   
}
/* миниатюры изображений */
.pl-leftstart,
.pl-rightstart {
    width: 25%;
    height: auto;
}
/* миниатюры справа */
.pl-rightstart {
    float: right;
    margin: 5px 0 5px 15px;
}
/* миниатюры слева */
.pl-leftstart {
    float: left;
    margin: 5px 18px 5px 0;
}
/* анимация при появлении блоков с содержанием */
@-moz-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}
@-webkit-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 } 
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}
			
			




