

.loader{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}

.spinner-load {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  position:absolute;
  left:50%;
  right:50%;
  margin-left:-20px;
  top:50%;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #82B440;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot1{
	background-color: #000;
}	
.dot2 {
  top: auto;
  background-color: #8E8E8E;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.scroll-to-top-btn {
  position: fixed;
  right: 50px;
  bottom: 30px;
  display: none; /* скрыта по умолчанию */
  background-color: rgba(121, 182, 200, 0.6);  /* полупрозрачный #79b6c8 */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.scroll-to-top-btn:hover {
  background-color: #79b6c8;  /* полный цвет при наведении */
  color: #fff;
  text-decoration: none;
}

/* Показывать подменю при наведении */
.dropdown:hover .dropdown-menu {
  display: block;
}


