@charset "UTF-8";
select, input, textarea {
  outline: none;
  box-shadow: none !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
}

input[type=search]::-webkit-search-cancel-button {
  position: relative;
  right: 20px;
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background-image: url("../images/close.svg");
  background-repeat: no-repeat, repeat;
  background-position: center;
}

/* loadding page */
#page-load {
  transition: 0.2s linear;
  background: rgba(255, 255, 255, 0.9411764706);
  width: 100vw;
  height: 100vh;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#page-load .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #F56B6B;
  border-right: 3px solid transparent;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 0.6s linear infinite;
}

section#at_load_more {
  min-width: 200px;
  width: 100%;
  min-height: 70px;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s linear;
}

.loader_load_more {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid;
  border-color: #F56B6B;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 0.6s linear infinite;
  animation: rotation 0.6s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.at_modal_popup {
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  opacity: 0;
  transition: all 0.4s ease;
}

div.at_modal_popup.active {
  display: flex;
  opacity: 1;
}

.at_modal_popup .modal__overlay {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.47);
}

.modal__content {
  display: block;
  text-align: center;
  width: 80%;
  background-color: #fff;
  z-index: 99999;
  border-radius: 8px;
}

.modal__content .messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #EBEBE6;
  min-height: 100px;
  font-weight: 600;
  color: #271515;
}

.modal__content .action {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.modal__content .action a {
  font-weight: 700;
  color: #F56B6B;
  padding: 0.375rem 1rem;
  line-height: 1.5;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.flex-fill {
  flex: 1 1 auto;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

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

.no-click {
  pointer-events: none !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/*
* Spacing
*/
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

/*
  * End Spacing
  */
.rounded-circle {
  border-radius: 50% !important;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

/*Ngắt dòng*/
.line-clamp-1, .line-clamp-2, .line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 2;
}

.position-relative {
  position: relative;
}

input[type=date], input[type=time] {
  -webkit-appearance: none;
}

form .box-square {
  overflow: hidden;
  position: relative;
  width: 100%;
}

form .box-square img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

form .box-item.active .box-square {
  height: 287px !important;
}

.select-selected, .select-selected2 {
  z-index: 99 !important;
}

body.single-question .single-question-images {
  margin-top: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  grid-gap: 4px 4px;
  -ms-flex-line-pack: center;
  align-content: center;
}
body.single-question .single-question-images img {
  margin: 0;
}

.box-load-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.box-load-more .at_load_more_cm {
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  background-color: transparent;
  color: #FF0B7A;
}

.list-comment .loader_load_more {
  width: 35px;
  height: 35px;
}

.search-input_quetions {
  border: 0;
  outline: 0;
  width: 100%;
}

div.at_box_gallery {
  margin-top: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  grid-gap: 5px 5px;
  -ms-flex-line-pack: center;
  align-content: center;
}
div.at_box_gallery a {
  display: block;
}
div.at_box_gallery a img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.post-type-archive-question .question-archive .date-span {
  font-size: 14px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.post-type-archive-question .question-archive .date-span img {
  width: 16px;
}
.post-type-archive-question .post-box .like-comment img {
  width: 16px;
}
.post-type-archive-question .post-box .like-comment, .post-type-archive-question .post-box .like-comment .like-comment-like {
  font-size: 14px;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

/*

    SINGLE Question

*/
body.single-question .comment-section .author-thumb {
  border-radius: 8px;
  width: 44px;
  height: 44px;
}

/*

    SINGLE Review

*/
.single-review .list-comment .comment__item__left a {
  border-radius: 50%;
}
.single-review .comment-section .author-thumb {
  width: 44px;
  height: 44px;
}
.single-review .comment-section .author-thumb img {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}

/*

    STYLE COMMENTS

*/
.list-comment .comment__item__left a {
  width: 44px !important;
  height: 44px;
  overflow: hidden;
  text-align: center !important;
  border-radius: 8px;
  display: block;
}
.list-comment .comment__item__left img {
  padding: 0;
  object-fit: cover;
  border-radius: 100%;
  width: 35px;
  height: 35px;
}
.list-comment .comment_info .name a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.7px;
  margin-right: 5px;
  color: #271515;
}
.list-comment .commnet__content {
  color: #271515;
  font-size: 12px;
  margin-bottom: 2px;
}
.list-comment .commnet__content span {
  color: #FF5CA6;
}
.list-comment .dislike-btn svg path {
  fill: #FF5353;
  stroke: #FF5353;
}
.list-comment .list-comment__item .time {
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  flex: 0 0 auto;
}
.list-comment .list-comment__item .time svg {
  margin-right: 5px;
}
.list-comment .list-comment__item .like-btn, .list-comment button.reply-btn {
  color: #333333;
}
.list-comment button {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
}
.list-comment span[data-userid] {
  color: #000;
  font-weight: 500;
  cursor: pointer;
}
.list-comment span[data-userid]:hover {
  text-decoration: underline;
}

.comment-section .author-thumb {
  position: unset;
  left: 20px;
  bottom: 45px;
  width: 50px;
  z-index: 3;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.form_commnets {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.0005);
  background: #fff;
  z-index: 2;
}

.form_commnets button {
  border: none;
  background: transparent !important;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}
.form_commnets button.active {
  color: #FF0B7A;
}

.at_box_add_review {
  max-width: 440px;
  width: 100vw;
  height: 100vh;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
  position: fixed;
  opacity: 0;
  left: -105vw;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.at_box_add_review .box_head {
  display: flex;
  align-items: center;
  column-gap: 10px;
  height: 65px;
  padding: 0 1rem;
}
.at_box_add_review .box_head h2 {
  font-size: 20px;
  font-weight: 600;
}
.at_box_add_review.active {
  left: 0;
  opacity: 1;
}
.at_box_add_review.active .fixed-bottom {
  display: block;
}
.at_box_add_review .box_content {
  padding-left: 15px;
  padding-right: 15px;
}
.at_box_add_review .box_content label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.at_box_add_review .box_content .box_input {
  margin-bottom: 30px;
}
.at_box_add_review .fixed-bottom {
  display: none;
}

.at_add_review a {
  color: #FF9292;
  display: flex;
  align-items: center;
}

.box_rating {
  display: flex;
  justify-content: center;
}

.at_rating {
  height: 70px;
  padding: 0 10px;
  white-space: nowrap;
  float: left;
}

.at_rating:not(:checked) > input {
  position: absolute;
  top: -9999px;
}

.at_rating:not(:checked) > label {
  float: right;
  width: 60px;
  height: 70px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 46px;
  color: #C4C4C4;
  border-radius: 0.2px;
}

.at_rating:not(:checked) > label:before {
  content: "★ ";
  height: 70px;
  display: flex;
  align-items: center;
}

.at_rating > input:checked ~ label {
  color: #E6853D;
}

.at_rating > input:checked + label:hover, .at_rating > input:checked + label:hover ~ label, .at_rating > input:checked ~ label:hover, .at_rating > input:checked ~ label:hover ~ label, .at_rating > label:hover ~ input:checked ~ label {
  color: #E6853D;
}

.at_rating:not(:checked) > label:hover, .at_rating:not(:checked) > label:hover ~ label {
  color: #E6853D;
}

.at_box_add_review textarea {
  width: 100%;
  border: 1px solid #EBEBE6;
  border-radius: 12px;
  padding: 15px;
  height: 170px;
}

textarea:focus-visible {
  outline: 1px solid #EBEBE6;
}

#add_review {
  font-weight: 700;
  font-size: 20px;
  line-height: 47px;
}
#add_review.no-click {
  background-color: #E0E0E0;
  color: #271515;
}

.review_beauty button.time {
  display: flex;
  align-items: center;
}
.review_beauty .review-meta img {
  min-width: unset;
  min-height: unset;
}
.review_beauty .comment_info {
  justify-content: space-between;
}
.review_beauty .comment_info .review-meta span {
  font-weight: 700;
  font-size: 14px;
}

.post-event .head-info .info .address {
  -webkit-line-clamp: 2;
}

body.tax-type_beauty .bg-rating .select-items div:nth-of-type(2) {
  background-image: none;
  font-size: 16px;
}

.checkbox-field > div label {
  width: auto;
  background-color: #FF0B7A;
  color: white;
  font-size: 16px;
  border-radius: 5px;
}

.post-head .info span:first-of-type {
  width: 100%;
  margin-right: 1%;
}

.post-type-archive-question .top-question .post-box .img-des:nth-of-type(1) .img,
.post-type-archive-question .top-question .post-box .img-des:nth-of-type(2) .img,
.post-type-archive-question .top-question .post-box .img-des:nth-of-type(3) .img {
  height: 59px;
  /* padding-bottom: 18px; */
}

.post-type-archive-question .top-question .avatar-img {
  max-height: 44px;
}

.post-type-archive-question .top-question .post:nth-of-type(1) .thumb-link:after,
.post-type-archive-question .top-question .post:nth-of-type(2) .thumb-link:after,
.post-type-archive-question .top-question .post:nth-of-type(3) .thumb-link:after {
  background: #FFCF00;
  border-radius: 0px 0px 8px 8px;
  display: block;
  padding: 2px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.post-type-archive-question .top-question .post:nth-of-type(1) .thumb-link:after {
  content: "1";
}

.post-type-archive-question .top-question .post:nth-of-type(2) .thumb-link:after {
  content: "2";
}

.post-type-archive-question .top-question .post:nth-of-type(3) .thumb-link:after {
  content: "3";
}

.box-mutiple .box-item:last-child .box-square img {
  width: 35px;
  height: 35px;
}

.box-mutiple .box-item.active .box-square {
  width: 80px;
  height: 80px !important;
}

.post-type-archive-question .post {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px 15px 10px 10px;
}

.post.post-event {
  display: flex;
  column-gap: 8px;
}
.post.post-event .post-head .spa-name {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #271515;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
}
.post.post-event .des {
  border: none;
  background-color: white;
  padding: 0;
  flex: 1;
}
.post.post-event .des a {
  color: #271515;
}
.post.post-event .des .info .box-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  padding-right: 25px;
  margin-bottom: 0;
}
.post.post-event .des .info .address {
  font-size: 11px;
  margin-top: 3px;
  margin-bottom: 3px;
}
.post.post-event .des .info .time {
  font-size: 11px;
  color: #5F5F5F;
  margin-bottom: 5px;
}
.post.post-event .des .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post.post-event .des .meta .n_o_register {
  font-size: 11px;
}
.post.post-event .des .meta strong {
  font-weight: 700;
  margin-right: 10px;
}
.post.post-event .des .meta .count {
  font-weight: 700;
  color: #FF0B7A;
}
.post.post-event .des .meta._1 {
  margin-bottom: 5px;
  font-size: 12px;
}
.post.post-event .des .icon-stick-box {
  display: block;
  padding: 0;
  border: none;
  height: auto;
  width: auto;
  top: 0;
  right: 0;
}
.post.post-event .des .icon-stick-box.active svg path {
  fill: #FF0B7A;
}
.post.post-event a.btn-register {
  color: white;
  text-align: center;
  border-radius: 7px;
  line-height: 1;
  color: #FF0B7A;
}
.post.post-event a.btn-register.registered {
  color: #A1A1A1;
}
.post.post-event a.btn-register span {
  font-weight: 500;
}
.post.post-event .event-cover {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.image-field .box-mutiple .box-item {
  padding-top: 0;
}

.at-add-multiple-image p {
  margin: 0;
}

.image-field label {
  position: relative;
}

#list__gallery {
  display: flex !important;
  grid-gap: unset;
}

.gallery__item__box {
  width: 110px;
  height: 110px;
}

.gallery__list__item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery__list__item {
  margin-bottom: 15px;
}

.gallery__item__box {
  border-radius: 12px;
  overflow: hidden;
}

.gallery__list__item i {
  position: absolute;
  top: 4px;
  right: 4px;
  color: #fff !important;
  z-index: 2;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: pointer !important;
  overflow: hidden;
}

.gallery__list__item i svg {
  width: 100%;
}

body.archive .search-input::placeholder, body.archive .search-input {
  width: 80%;
}

body.archive.author .wrap, body.archive.author .author-header-fixed {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ======= Toast message ======== */
#toast {
  position: fixed;
  top: 32px;
  right: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

#toast .toast {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  padding: 10px 0;
  min-width: 350px;
  max-width: 450px;
  flex-basis: unset;
  border-left: 4px solid;
  border: 0;
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
  transition: all linear 0.3s;
}
#toast .toast--success {
  border-color: #47d864;
}
#toast .toast--success .toast__icon {
  color: #47d864;
}
#toast .toast--info {
  border-color: #2f86eb;
}
#toast .toast--info .toast__icon {
  color: #2f86eb;
}
#toast .toast--warning {
  border-color: #ffc021;
}
#toast .toast--warning .toast__icon {
  color: #ffc021;
}
#toast .toast--error {
  border-color: #ff623d;
}
#toast .toast--error .toast__icon {
  color: #ff623d;
}
#toast .toast + .toast {
  margin-top: 24px;
}
#toast .toast__icon {
  font-size: 24px;
}
#toast .toast__icon,
#toast .toast__close {
  padding: 16px;
}
#toast .toast__body {
  flex-grow: 1;
}
#toast .toast__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
#toast .toast__msg {
  font-size: 15px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
}
#toast .toast__close {
  cursor: pointer;
  opacity: 0.6;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
/* ======= END Toast message ======== */
.post-review.before-after .post {
  border: none;
  margin-bottom: 15px;
}
.post-review.before-after .post .user__name {
  font-size: 16px;
  color: #271515;
  font-weight: 700;
}
.post-review.before-after .post p {
  font-size: 13px;
}
.post-review.before-after .item-image {
  height: 86px;
  width: 71px;
}
.post-review.before-after .item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  left: 0px;
}
.post-review.before-after .item-image .label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 1px;
  min-width: 38px;
  height: 12px;
  font-size: 10px;
  text-align: center;
}

.list-review.home .review-item {
  box-shadow: none;
}
.list-review.home .review-item .img {
  min-width: 150px;
}
.list-review.home .review-item .img img {
  height: 85px;
}
.list-review.home .review-item .bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.list-review.home .review-item .bottom ._more {
  column-gap: 8px;
}
.list-review.home .review-item .bottom ._more .box {
  display: flex;
}
.list-review.home .review-item .bottom ._more .box span {
  margin-left: 3px;
}

body.home .post-box .post {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}

body.home .post-box .post .left {
  display: flex;
  column-gap: 10px;
}

body.home .post-box .post .box-title {
  font-size: 15px;
  font-weight: 700;
}

body.home .post-box .post .right {
  display: flex;
  align-items: center;
}

body.home .post-box .post .right a {
  position: relative;
}

body.home .post-box .post .right a span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  top: 5px;
  color: #271515;
  font-weight: 500;
}

body.home .post-box.post-box-top-question .post .right a svg path {
  fill: #FF0B7A;
  stroke: #FF0B7A;
}

body.home .like-comment-like img {
  margin-bottom: 0;
}

body.home .question-archive .post-box .img-des .img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ebebe5;
  padding: 7px 0px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

body.home .post-type-archive-question .question-archive .post-box .img-des .img img {
  min-width: 25px;
  min-height: 25px;
}

body.home .excerpt-url p {
  -webkit-line-clamp: 1;
  font-size: 13px;
}

body.home .question-archive .post-box .img-des .des {
  margin-left: 0px;
}

.post-box-top-question .right span {
  color: #fff !important;
}

.post-box-top-question .right svg path {
  fill: #FF0B7A !important;
  stroke: #FF0B7A !important;
}

.text-capitalize {
  text-transform: capitalize;
}

.post .icon-location {
  margin-left: 4px;
  color: #30C69E;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
}

/*# sourceMappingURL=style.css.map */
