#app__container {
  width: 100%;
  overflow: auto;
}

.slideshow__container {
  width: 100%;
}

.slideshow__container img {
  width: 100%;
  height: 570px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.tb-info_section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info__container-content {
  background-color: var(--primary-color-2);
  padding: 20px 0;
}

.info__section {
  display: flex;
  justify-content: space-between;
}

.info__section-img {
  width: 35%;
}

.info__section-content{
  padding-left: 8px;
}

.info__section-title {
  font-weight: 600;
  display: flex;
}

.info__section-ct, .news_list-content-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info__text {
  margin-top: 16px;
  background-color: #fff;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  height: 340px;
}

.info__text-heading {
  padding-top: 16px;
  text-align: center;
  margin: 0;
}
.info__text-about {
  padding: 16px;
  display: flex;
  justify-content: center;
}

.info__text-img {
  display: none;
  left: 0;
  /* position: absolute; */
  animation: showimg 1s ease;
  align-items: center;
  object-fit: scale-down;
}

@keyframes showimg {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.info__text-img img {
  max-width: 500px;
  height: 330px;
  margin-right: 16px;
}

.info__text-content {
  padding-left: 30px;
  display: none;
  right: 0;
  /* position: absolute; */
  animation: showcontent 1s ease;
}

.info__text-description {
  margin-bottom: 16px;
}

@keyframes showcontent {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.productLike-tab-item {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  align-items: center;
}

.productLike-note {
  margin: 5px 10px;
  color: var(--black-color);
  padding: 5px 10px;
  border-radius: 25px;
  border: 2px solid #e5e5e6;
  cursor: pointer;
}

.productLike-note:hover {
  background-color: var(--orange-color);
  color: var(--while-color);
}

.productLike-note.active {
  background-color: var(--orange-color);
  color: var(--while-color);
}

.margin-180 {
  margin: 0 180px;
}

.pane-content {
  display: none;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pane-content.active {
  display: flex;
}

.news__container {
  margin-top: 60px;
}

.news__container-list {
  background-color: var(--primary-color-2);
  display: flex;
  justify-content: space-between;
  padding: 20px 70px;
}

.news__list-item {
  display: flex;
  width: 49%;
  color: var(--black-color);
  background-color: var(--while-color);
  height: 200px;
}

.news__list-item img {
  max-width: 50%;
  object-fit: scale-down;
}

.news_list-content {
  padding: 16px;
}

.news_list-content-title {
  font-weight: 600;
  font-size: 18px;
}

.news_list-content-item{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Login/register */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal {
  z-index: 5;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  display: none;
}

.modal.open {
  display: flex;
}

.login-pane {
  display: none;
}

.login-pane.active {
  display: block;
}

.auth-form {
  width: 420px;
  background-color: var(--while-color);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e5e5e6;
  position: absolute;
  /* padding: 16px 0; */
  animation: fadeIn ease-in 0.5s;
  padding-bottom: 16px;
}

.modal-close {
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--black-color);
  padding: 0 4px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--while-color);
  background: var(--orange-color);
}

.auth-form__container {
  padding: 0 16px;
}

.auth-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 10px;
}

.auth-form__heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}

.auth-form__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e5e6;
  padding: 10px;
  border-radius: 2px;
  margin: 16px 0;
  color: #999696;
}

.auth-form__group input {
  border: none;
}

.auth-form__switch-btn {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
}

.auth-form__input {
  width: 100%;
  font-size: 14px;
  /* outline: none; */
}

/* lớp giả */
.auth-form__input:focus {
  border-color: #999696;
}

.auth-form__aside {
  margin-top: 8px;
}

.auth-form__text-link {
  text-decoration: none;
  color: var(--primary-color);
}

.auth-form__controls {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}

.auth-form__controls-back {
  margin-right: 8px;
  background-color: var(--while-color) !important;
  color: var(--black-color) !important;
  border: 1px solid #e8e8e9 !important;
}

.auth-form__controls-back:hover {
  background-color: var(--orange-color) !important;
  color: var(--while-color) !important;
}

.auth-form__socials {
  background-color: #f5f5f5;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.auth-form-btn {
  padding: 4px 6px;
  font-size: 12px !important;
  color: var(--while-color);
  border-radius: 5px;
  margin-bottom: 8px;
}

.auth-form__socials-icon {
  font-size: 20px;
  text-align: center;
}

.auth-form__socials--facebook {
  background-color: #3a5a98 !important;
}

.auth-form__socials-title {
  margin: 0 4px;
  text-align: center;
}

.auth-form__socials--google {
  background-color: var(--orange-color);
}

.auth-form__help {
  display: flex;
  justify-content: flex-end;
  top: -14px;
}

.auth-form__help-link {
  text-decoration: none;
  font-size: 14px;
  color: #939393;
}

.auth-form__help-separate {
  display: block;
  height: 20px;
  margin: 0 14px 0;
  border-left: 1px solid #eaeaea;
}

.auth-form__help-forgot {
  color: var(--primary-color);
}
