
.logo {
  width:               150px;
  height:              80px;
  background-image:    url(https://www.yisumatica.org.il/yisumaticaImages/yisumaticaLogo.png);
  background-position: center;
  background-size:     contain;
  background-repeat:   no-repeat;
  margin-bottom:       15px;
}

.loaderContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.loading {
    height: 0;
    width: 0;
    padding: 15px;
    border: 6px solid #689AE7;
    border-right-color: #1E2E57;
    border-radius: 22px;
    -webkit-animation: rotate 1s infinite linear;
  }
  
  @-webkit-keyframes rotate {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }


  @keyframes rotateQube {
    100% {
      transform: rotate(360deg);
    }
  }