#suncalc {
	font-family: 'Roboto', sans-serif;
	position: absolute;
	display: none;
	z-index: 9090;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
	transition: right 0.4s ease-in-out;
}

#myCanvas { 
    display: block;    
	left: 0; 
	right: 0; 
	margin-top: 0px;
	margin-left: auto; 
	margin-right: auto; }

.round {
    border-radius: 50%; /* Радиус скругления */
   	
	position: absolute; 
	left: 0; 
	right: 0; 
	top: 0px;
	margin-left: auto; 
	margin-right: auto; 
	width: 0px; /* Need a specific value to work */
	z-index: -100;
	
	-webkit-box-shadow: 4px 4px 43px 28px rgba(255, 255, 255, 0.2);
	-moz-box-shadow: 4px 4px 43px 28px rgba(255, 255, 255, 0.2);
	box-shadow: 4px 4px 43px 28px rgba(255, 255, 255, 0.2);	
	
 }

<!-- фон для калькулятора -->
.gradient { 
	position: absolute; 
	left: 0; 
	right: 0; 
	top: 0px;
	margin-left: auto; 
	margin-right: auto; 
	width: 100%;
	height: 100%;
	z-index: -120;
	<!-- background: rgb(3,2,75);
	background: linear-gradient(0deg, rgba(3,2,75,1) 0%, rgba(10,133,244,0.9640056706276261) 100%); -->
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 30%, rgba(81,83,84,1) 100%);
	opacity: 1;
 }  
 
#my_slider {
  margin-top: 20px;
  width: 80%;
  height: 80px;
  margin: auto;
}

#my_slider1 {
  margin-top: 100px;
  width: 80%;
  height: 80px;
  margin: auto;
}

.suncalc_title {
	text-align: center;
	font-size: 16px;
	font-family: Roboto, sans-serif;color: #FFF;
	height: 50px;
	margin-top: 10px;
	line-height: 1.5;
}
.suncalc_title1 {
	text-align: center;
	font-size: 12px;
	font-family: Roboto, sans-serif;color: #FFF;
	margin-top: 10px;
	margin-bottom: 10px;
}

#suncalc_button_close {
	width: 40px;
	height: 40px;
	background-image: url('../skin/icons/h_menu/close.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    background-size: 80%;	
	border-radius: 5px 5px 5px 5px;
	display: flex;
	justify-content: center;
	align-items: right;
	position: relative;
	cursor: pointer;
	margin-left: auto;
	margin-top:0px;
}
#suncalc_button_close:hover {
	background-color: rgba(135, 133, 142, 0.7);
}
