@charset "UTF-8";
.header {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 130px;
  background-color: rgb(13, 2, 43);
}

.app {
  height: 100%;
  background-color: rgb(13, 2, 43);
}

.app-content,
.header-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.header-container {
  width: 1200px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid #f8fafc;
}

.header-action {
  width: 480px;
  text-align: center;
}
.header-action a:first-child {
  margin-right: 10px;
}
.header-action .btn-hover {
  position: relative;
  display: inline-block;
  background: linear-gradient(106deg, #639, #36c 102.69%);
  overflow: hidden;
  z-index: 0;
  text-decoration: none;
  color: black;
  padding: 6px 0px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  width: 150px;
}
.header-action .btn-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: linear-gradient(90deg, #ff6d00, #ffc107);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.header-action .btn-hover:hover span {
  color: #f8fafc;
  transition: all 0.3s ease-in;
}
.header-action .btn-hover:hover img {
  filter: brightness(0) invert(1);
}
.header-action .btn-hover:hover::before {
  left: 0;
}
.header-action .btn-hover span {
  z-index: 1;
}

.book {
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  width: 120px;
}

.header-right {
  display: flex;
  margin-top: 5px;
}
.header-right .header-search {
  position: relative;
  margin-right: 30px;
}
.header-right .header-search-input {
  width: 250px;
  padding: 4px 4px 4px 10px;
  border-radius: 20px;
  outline: none;
}
.header-right .header-search-btn {
  position: absolute;
  border: none;
  background-color: #f8fafc;
  right: 10px;
  transform: translateX(-100%) translateY(20%);
}
.header-right .header-login {
  display: flex;
  align-items: center;
  position: relative;
  top: -10px;
  margin-right: 30px;
}
.header-right .header-login a {
  font-size: 16px;
  text-decoration: none;
  color: #f8fafc;
}
.header-right .header-login a:hover {
  color: rgb(223, 223, 26);
}
.header-right .header-login .hd-icon-user {
  font-size: 24px;
  color: #f8fafc;
  padding-right: 5px;
}
.header-right .header-language {
  position: relative;
  line-height: 36px;
  top: -10px;
  margin-top: 6px;
}
.header-right .header-language-option a {
  font-size: 16px;
  text-decoration: none;
  color: #f8fafc;
  padding: 0 5px;
}
.header-right .header-language-option img:last-child {
  filter: brightness(0) invert(1);
}
.header-right .header-language-option .hd-eng {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in;
  background-color: #36c;
  border-radius: 5px;
}
.header-right .header-language-option:hover .hd-eng {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-right .header-language-option .hd-eng:hover {
  opacity: 0.6;
}

.header-bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 10px;
}
.header-bottom-left {
  display: flex;
}
.header-bottom-right a {
  color: #f8fafc;
  text-decoration: none;
  margin-left: 10px;
}
.header-bottom-right a:hover {
  color: yellow;
  text-decoration: underline;
  transition: all 0.2s ease-in;
}
.header-bottom .hd-location {
  margin-right: 20px;
}
.header-bottom .hd-location:hover {
  cursor: pointer;
}
.header-bottom .hd-location:hover span,
.header-bottom .hd-location:hover i {
  color: yellow;
}
.header-bottom .hd-location .hd-theater {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in;
  margin-top: 10px;
  height: 200px;
  line-height: 60px;
  width: 100%;
  background-color: rgb(13, 2, 43);
  border: 1px solid rgb(125, 76, 238);
}
.header-bottom .hd-location .hd-theater a {
  text-decoration: none;
  padding: 8px 10px;
  color: #f8fafc;
}
.header-bottom .hd-location .hd-theater a:hover {
  color: yellow;
}
.header-bottom .hd-location:hover .hd-theater {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-bottom .hd-date a {
  text-decoration: none;
}
.header-bottom .hd-date a:hover i,
.header-bottom .hd-date a:hover span {
  color: yellow;
}
.header-bottom i,
.header-bottom span {
  color: #f8fafc;
}

.footer {
  background: linear-gradient(106deg, #639, #36c 102.69%);
  padding-top: 100px;
}

.footer-container {
  width: 1200px;
  margin: 0 auto;
}
.footer-container .footer-row {
  display: flex;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Thanh cuộn */
::-webkit-scrollbar {
  width: 8px;
}

/* Phần cầm của thanh cuộn */
::-webkit-scrollbar-thumb {
  background: linear-gradient(106deg, #639, #36c 102.69%);
  border-radius: 5px;
}

/* Đường ray của thanh cuộn */
::-webkit-scrollbar-track {
  background-color: white;
  border-radius: 5px;
}

.labs {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.labs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 70%;
  height: 40%;
  background-color: rgb(106, 88, 156);
  border-radius: 50%;
  border: none;
  filter: blur(100px);
  opacity: 0.7;
  z-index: -1;
}
.labs::after {
  content: "";
  position: absolute;
  bottom: 40%;
  right: 0%;
  width: 100%;
  height: 50%;
  background-color: #6756e6;
  border-radius: 50%;
  border: none;
  filter: blur(100px);
  opacity: 0.7;
  z-index: -1;
}

.card-body {
  background: linear-gradient(106deg, #639, #36c 102.69%);
}
.card-body .card-title a {
  text-decoration: none;
}
.card-body a {
  color: black;
}
.card-body a:hover {
  color: white;
  transition: all 0.3s ease-in;
}

.btn-hover {
  margin-top: 10px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  display: inline-block;
  background: #ffc107;
  overflow: hidden;
  z-index: 0;
}
.btn-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background: rgb(13, 2, 43);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.btn-hover:hover span {
  color: #f8fafc;
  transition: all 0.3s ease-in;
}
.btn-hover:hover img {
  filter: brightness(0) invert(1);
}
.btn-hover:hover::before {
  left: 0;
}
.btn-hover:hover a {
  color: white;
  transition: all 0.3 ease-in;
}
.container-footer{
  width: 1200px;
  margin: 0 auto;
}
/*# sourceMappingURL=labs.css.map */
