/* ============================================== OKNO CZEKANIA - małe,  mc.js ======================================= */

.loading_small.visible { visibility:visible; opacity: 1; }
		
.loading_small { display:inline-block; width:15px; height:15px; opacity: 0; transition: opacity 0.3s ease; visibility:hidden;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top: 3px solid #2196F3;
  border-bottom: 3px solid #2196F3;
  border-right: 3px solid #2196F3;
  -webkit-animation: loader-spin-small 1.5s linear infinite;
  animation: loader-spin-small 1.5s linear infinite;
}

@-webkit-keyframes loader-spin-small {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes loader-spin-small {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}