/*@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");*/

body {
  padding: 0;
  margin: 0;
}

#app-site {
  display: flex;
  width: 100%;
  height: 100vh;
}

.loader {
  position: relative;
  margin: 0 auto;
  width: 60px;
  height: 100vh;

  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;

  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.center-container {
  text-align: center;
}
.loading {
  width: 120px;
}

.circle {
  position: absolute;
  top: 50%; /* Đưa về giữa chiều dọc */
  left: 50%;
  width: 150px;
  height: 150px;
  margin-top: -75px; /* Đưa về phía trên một nửa chiều cao */
  margin-left: -75px; /* Đưa về phía trái một nửa chiều rộng */
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #17b799;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*# sourceMappingURL=loader.css.map */
