@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --primary: #2040af;
  --bs-primary-rgb: 248, 182, 45;
  --text-color: #333333;
  --text-dark: #000000;
  --bs-border-radius: 8px;
  --bs-border-color: #e6e6e6;
  --bs-body-color: #1a1a1a;
  --bs-dark-rgb: 26, 26, 26;
}

.navbar {
  --bs-navbar-active-color: #f8b62d;
}

.btn-close {
  --bs-btn-close-opacity: 1;
  --bs-btn-close-hover-opacity: 1;
}

html {
  scroll-behavior: smooth;
}

.btn:focus, input, textarea {
  box-shadow: none;
}

/* canh trái trên safari, và canh vertical với padding  */
input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value {
  text-align: left;
  padding-top: 4px !important;
}

.flex {
  display: flex;
}

.fade {
  transition: all 0.1s;
}

.center {
  display: grid;
  place-items: center;
}

textarea:focus, input:focus, select:focus {
  outline: none !important;
  border: 1px solid var(--primary) !important;
}

select option:disabled {
  background: #d2d2d2;
  color: #939393;
}

/* Class Global */
.btn, button, a {
  transition: all 0.4s ease;
}

.border {
  border: 1px solid var(--bs-border-color);
}

.border_primary {
  border: 1px solid var(--primary) !important;
  color: var(--primary);
}

.hiden {
  display: none !important;
}

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

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

.cursor {
  cursor: pointer;
}

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

a {
  color: var(--bs-body-color);
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: unset;
}

.color-primary {
  color: var(--primary) !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #5cb589 !important;
}

.vh-100 {
  height: 100vh;
}

#wrapper {
  overflow: hidden;
  min-height: 100vh;
}

.input_icon {
  position: relative;
}
.input_icon .icon {
  position: absolute;
  left: 20px;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input_icon .icon-right {
  left: auto;
  right: 20px;
  border: 0 !important;
}
.input_icon input {
  padding-left: 50px;
}
.input_icon [type=password] {
  padding-right: 50px;
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
  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: 3;
}

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

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

.line-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.img-object-fit {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

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

/* loadding page */
#page_load {
  transition: 0.2s linear;
  background: rgba(255, 255, 255, 0.6705882353);
  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 #003cff;
  border-right: 3px solid transparent;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 0.6s linear infinite;
}

div.loading,
button.loading,
a.loading {
  opacity: 0.8 !important;
  position: relative;
  color: rgba(255, 255, 255, 0) !important;
  pointer-events: none !important;
  background-image: none !important;
}

div.loading:after,
a.loading:after,
button.loading:after {
  -webkit-animation: spin 500ms infinite linear !important;
  animation: spin 500ms infinite linear !important;
  border: 2px solid #fff;
  border-radius: 32px;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  content: "";
  display: block;
  height: 16px;
  top: 50% !important;
  margin-top: -8px;
  left: 50%;
  margin-left: -8px;
  position: absolute;
  width: 16px;
}

div.loading:after {
  width: 40px;
  height: 40px;
  border: 3px solid;
  border-color: #6449b1 transparent !important;
}

div.loading {
  background: #F5F5F5;
}

div.loading:after {
  animation: spin 0.7s infinite linear !important;
}

svg.spin {
  -webkit-animation: spin 700ms infinite linear !important;
  animation: spin 700ms infinite linear !important;
}

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: 35px;
  height: 35px;
  border: 3px solid;
  border-color: var(--primary);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: spin 0.7s linear infinite;
  animation: spin 0.7s linear infinite;
}

@media (min-width: 576px) {
  .loader-load-more {
    width: 40px;
    height: 40px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.card {
  border: none;
}

.radius-0 {
  border-radius: 0;
}

.radius-5 {
  border-radius: 5px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-18 {
  border-radius: 18px;
}

.at-box-sadow {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.zindex {
  z-index: 9;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.form-control:focus {
  border-color: #8863f1;
  box-shadow: 0 0 0 0.1rem rgba(138, 100, 242, 0.32);
}

.heading h3 {
  font-size: 1.5rem;
}

.divider {
  background: #efeff4;
  height: 7px;
  width: 300vw;
  margin-left: -100vw;
  margin-right: -100vw;
}

.card-media {
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.modal.fade.slide_bottom .modal-dialog {
  transform: translate(0, 100vh);
  top: auto;
  bottom: 0;
  position: absolute;
  height: auto;
}
.modal.fade.slide_bottom .modal-dialog .modal-content {
  border-radius: 32px 32px 0px 0px;
}

.modal.show .modal-dialog {
  transform: none !important;
}

.modal_action .btn {
  min-width: 100px;
  height: 40px;
}

div.modal.bg_black .modal-body {
  background-color: #000;
}

/*
* Spacing
*/
.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;
}

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

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

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

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

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

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

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

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

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

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mr_15 {
  margin-right: 15px !important;
}

.mb_15 {
  margin-bottom: 15px !important;
}

.ml_15 {
  margin-left: 15px !important;
}

.pr_15 {
  padding-right: 15px;
}

.pl_15 {
  padding-left: 15px;
}

.mt_20 {
  margin-top: 20px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mt_35 {
  margin-top: 35px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.h_56 {
  height: 56px;
}

.fs-16 {
  font-size: 16px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.gap-19 {
  gap: 19px;
}

.gap-20 {
  gap: 20px;
}

@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 1440px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1440px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1440px !important;
  }
}
.g-3,
.gx-3 {
  --bs-gutter-x: 12px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-36 {
  margin-bottom: 36px;
}

body {
  font-size: 14px;
  font-family: "Noto Sans KR", sans-serif;
}

.site-main {
  min-height: 1000px;
}

@media screen and (max-width: 767px) {
  .site-main {
    min-height: 650px;
  }
}
.disabled-edit {
  opacity: 0.2;
  pointer-events: none;
}

.readonly {
  pointer-events: none;
}

.step-menu .nav-link {
  border-top: 5px solid #E6E6E6;
  color: #b3b3b3;
}
.step-menu .nav-link.active {
  border-color: #f8b62d;
  color: #1a1a1a;
}
.step-menu .nav-link.updated {
  border-color: #f8b62d;
  color: #1a1a1a;
}
.step-menu .nav-link.before-active {
  border-color: #f8b62d;
  color: #1a1a1a;
}

.container-wrap-md {
  max-width: 800px;
  margin: 0 auto;
}

.content-form-edit-data {
  max-width: 540px;
  margin: 0 auto;
}
.content-form-edit-data #personal-information {
  margin-bottom: 40px;
}
.content-form-edit-data .form-title {
  font-size: 20px;
  line-height: 1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 16px;
}
.content-form-edit-data .input-wrap {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e6e6e6;
}
.content-form-edit-data .input-wrap .input-form-label {
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 12px;
}
.content-form-edit-data .input-wrap .input-form-desc,
.content-form-edit-data .input-wrap .input-data-value {
  margin-bottom: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.content-form-edit-data .input-wrap .inner {
  width: 100%;
  padding-right: 30%;
}
.content-form-edit-data .input-wrap .inner + .btn-link {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  color: #003cff;
}
.content-form-edit-data .input-data {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-form-edit-data .input-form {
  display: none;
}
.content-form-edit-data .input-form .input-form-header {
  margin-bottom: 16px;
  position: relative;
}
.content-form-edit-data .input-form .input-form-header .btn-cancel-edit {
  color: #1a1a1a;
}
.content-form-edit-data .input-form .form-floating {
  margin-bottom: 16px;
}
.content-form-edit-data .input-form .form-floating .form-control {
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
  border-color: #B3B3B3;
}
.content-form-edit-data .input-form .btn {
  background-color: #1A1A1A;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.content-form-edit-data .input-form .input-note {
  font-size: 12px;
  line-height: 18px;
  color: #1A1A1A;
  font-weight: 500;
  margin-top: 8px;
}
.content-form-edit-data .btn-popover {
  background-color: transparent;
  border: 0;
  padding: 0;
  flex-shrink: 0;
  margin-left: 8px;
}

.custom-price-popover,
.custom-compcard-popover {
  width: 100%;
  max-width: 285px;
}
.custom-price-popover .popover-header,
.custom-compcard-popover .popover-header {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  background-color: transparent;
  padding-top: 16px;
  padding-bottom: 0;
  border-bottom: 0;
}
.custom-price-popover .popover-arrow,
.custom-compcard-popover .popover-arrow {
  display: none;
}

.banner-top-home {
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-top-home::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1803921569);
}
.banner-top-home .banner-img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner-top-home .banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-top-home .banner__content .slogan {
  font-size: 20px;
  line-height: 40px;
}
.banner-top-home .banner__content .banner__content-logo {
  max-width: 439px;
}
.banner-top-home .banner__content-logo + div {
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  margin-top: 60px;
}
.banner-top-home .btn.icon-link {
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  height: 40px;
}
.banner-top-home .btn.icon-search {
  background-color: #f8b62d !important;
}
.banner-top-home .btn.icon-arrow {
  background-color: #fff !important;
  color: rgb(102, 102, 102);
}
.banner-top-home .btn-down {
  display: flex;
  position: absolute;
  z-index: 2;
  bottom: 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
}

.footer {
  color: #ffffff;
  font-family: "Noto Sans KR";
}
.footer .footer-new {
  font-weight: 500;
}
.footer .footer-new .footer-text-muted {
  color: #696969;
}
.footer .footer-new .footer-text-muted a {
  color: #696969;
}
.footer .container {
  max-width: 1440px;
}
.footer a {
  color: #ffffff;
}
.footer .footer-top {
  padding-top: 40px;
}
.footer .footer-top .logo-footer img {
  max-width: 96px;
  width: 100%;
  height: auto;
}
.footer .footer-top .footer-menu {
  margin-bottom: 40px;
  list-style-type: none;
  padding-left: 0;
}
.footer .footer-top .footer-menu li {
  margin-bottom: 20px;
}
.footer .footer-top .footer-menu li a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.footer .footer-top .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer .footer-top .business-registration p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 21px;
  line-height: 3px;
}
.footer .footer-top .business-registration p:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom {
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer .footer-bottom a {
  color: #fff;
}
.footer .footer-bottom .aimo-instagram {
  font-size: 16px;
  line-height: 1;
  font-family: "Roboto";
  font-weight: 500;
}
.footer .footer-bottom .aimo-instagram svg {
  margin-right: 8px;
}
.footer .footer-bottom .copyright {
  color: #666666;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-top .logo-footer {
    margin-bottom: 40px;
  }
  .footer .footer-top .footer-menu {
    margin-bottom: 70px;
  }
  .footer .footer-top .footer-menu li {
    margin-bottom: 15px;
  }
  .footer .footer-bottom .copyright {
    font-size: 12px;
  }
  .footer .footer-bottom .aimo-instagram {
    margin-bottom: 40px;
  }
}

.section-slide {
  background: linear-gradient(180deg, #F1F1F1 50%, #FFF 100%);
  padding-top: 42px;
}
.section-slide .swiper-slide {
  width: 1300px;
  height: 623px;
  position: relative;
}
.section-slide .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  border-radius: 12px;
  inset: 0;
  transition: all 500ms;
}
.section-slide .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}

@media screen and (min-width: 2500px) {
  .gallery-slide-home .swiper-slide {
    height: 350px;
  }
}
.box-heading {
  padding: 16px 0;
  font-weight: 700;
  font-size: 19px;
  line-height: 19px;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-heading.box-shadow {
  box-shadow: 0px -7px 10px 0px rgba(0, 0, 0, 0.0509803922);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.box-heading .heading__title-sup {
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: #9A9A9A;
}
@media screen and (max-width: 575px) {
  .box-heading {
    font-size: 18px;
  }
}

.more-btn {
  background-color: #6A6A6A;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  width: 53px;
  height: 18px;
  border-radius: 27px;
  font-weight: 500;
  vertical-align: sub;
  line-height: 16px;
}

.item-new .item-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  margin-top: 12px;
}
.item-new .item-categories .item-category {
  font-size: 15px;
  font-weight: 700;
  line-height: 16px;
}
.item-new .item-text .item-title {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.item-new .item-image {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.item-new .item-image .swiper {
  padding-top: 0 !important;
}
.item-new .item-image img {
  aspect-ratio: 253/351;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-new .item-image .btn-like {
  position: absolute;
  z-index: 9;
  top: 12px;
  right: 12px;
  padding: 0;
  border: 0;
}
.item-new-placeholder .item-image svg.bd-placeholder-img {
  aspect-ratio: 253/351;
  height: 100%;
}

.section-news .post-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 12px;
  row-gap: 24px;
}
.section-news .post-list .item-image {
  margin-bottom: 16px;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.section-news .post-list .item-image > a {
  display: block;
}
.section-news .post-list .item-image img {
  aspect-ratio: 1/1;
}
.section-news .post-list .item-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 8px;
}
.section-news .post-list .item-categories a.item-category {
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #1a1a1a;
}
.section-news .post-list .item-text {
  margin: 0;
}
.section-news .post-list .item-text .item-title {
  font-family: "Noto Sans KR", sans-serif;
  display: -webkit-box;
  width: 100%;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.section-news .post-list .item-text .item-title > a {
  color: #1a1a1a;
}
.section-news .post-list .item-text .item-date {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: #9A9A9A;
}
@media screen and (max-width: 767px) {
  .section-news .post-list {
    grid-template-columns: 1fr 1fr;
  }
}

.row-col-5 .col {
  flex: 0 0 auto;
  width: 20%;
}

.section-hot .box-disable {
  margin-top: 40px;
  pointer-events: none;
}
.section-hot .box-overlay {
  height: 472px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) -50.11%, #fff 38.24%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}
.section-hot .box-overlay .overlay-content__title-sup {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #f8b62d;
  margin-bottom: 4px;
}
.section-hot .box-overlay .overlay-content__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 28px;
}
.section-hot .box-overlay .btn {
  padding: 16px 24px;
}
@media screen and (max-width: 992px) {
  .section-hot .box-disable {
    display: none;
  }
}

.box-home-content-footer {
  text-align: center;
  padding-bottom: 50px;
}
.box-home-content-footer .content-footer__btn {
  position: relative;
}
.box-home-content-footer .content-footer__btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  background: linear-gradient(90deg, #FFFFFF 0%, #737373 49%, #FFFFFF 100%);
  z-index: 0;
}
.box-home-content-footer .content-footer__btn a {
  margin: 70px 0;
  font-size: 14px;
  padding: 15px 48px;
  position: relative;
  z-index: 1;
}
.box-home-content-footer .content-footer__title {
  font-weight: 400;
  font-size: 35px;
  line-height: 41px;
}

@media (max-width: 767px) {
  .box-home-content-footer .content-footer__btn a {
    padding: 15px 30px;
  }
  .box-home-content-footer .content-footer__title {
    font-size: 26px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .box-heading {
    font-size: 18px;
  }
  .box-home-content-footer {
    padding-bottom: 0;
  }
  .box-home-content-footer .content-footer__title {
    display: none;
  }
  .box-home-content-footer .content-footer__btn a {
    margin: 40px 0;
  }
}
.action-border-right {
  border-right: 1px solid;
  border-image: linear-gradient(180deg, rgba(87, 87, 87, 0) 0%, #BDBDBD 23%, #BDBDBD 75.5%, rgba(87, 87, 87, 0) 100%) 1 100%;
}

.smooth-scroll::-webkit-scrollbar {
  width: 8px; /* Độ rộng của thanh cuộn */
  height: 12px;
}
.smooth-scroll::-webkit-scrollbar-track {
  background: #f0f0f0; /* Màu nền của track (phần rãnh cuộn) */
  border-radius: 4px;
}
.smooth-scroll::-webkit-scrollbar-thumb {
  background-color: #1a1a1a; /* Màu của thanh cuộn */
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}
.smooth-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #f8b62d; /* Màu khi hover */
}

.swiper-button-next, .swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 28px;
  font-weight: bold;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}
@media (max-width: 575px) {
  .swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 15px;
  }
}

.swiper-button-prev {
  left: 18%;
}

.swiper-button-next {
  right: 18%;
}

header.navbar {
  padding: 0;
  display: flex;
  flex-direction: column;
}
header.navbar .header-top {
  background: #0D0C22;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 14px 24px;
}
header.navbar .header-top a {
  font-weight: 500;
  color: #FFEBA0;
}
header.navbar .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  column-gap: 9px;
  color: var(--bs-body-color);
}
header.navbar .navbar-nav li a.nav-link:hover {
  color: var(--bs-navbar-active-color);
}
header.navbar .navbar-nav li a.nav-link:hover svg path {
  fill: #f8b62d;
}
header.navbar .nav-link.active svg path {
  fill: #f8b62d;
}
header.navbar .navbar-nav li {
  position: relative;
}
header.navbar .navbar-nav .sub-menu {
  min-width: 162px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 10;
  top: 100%;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
header.navbar .navbar-nav .sub-menu li {
  list-style-type: none;
  margin-bottom: 4px;
}
header.navbar .navbar-nav .sub-menu li:last-child {
  margin-bottom: 0;
}
header.navbar .navbar-nav .sub-menu li a {
  word-break: keep-all;
}
header.navbar .navbar-nav > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 992px) {
  header.navbar {
    background-color: #F4F4F4 !important;
  }
  header.navbar .header-main {
    height: 56px;
  }
}

header .header-login .sign-in {
  color: #6E6D7A;
}
header .header-login .sign-up {
  background-color: #000000;
}
header .header-menu-wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}
header.fixed .topbar {
  display: none !important;
}
header.fixed .header-top {
  display: none !important;
}
header.fixed .heading-search {
  display: none !important;
}

body.admin-bar .header-sticky,
body.admin-bar .offcanvas,
body.admin-bar .sticky-top {
  top: 32px;
}

.heading-search {
  padding: 16px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 20px;
}
.heading-search span {
  color: #FEC20E;
}
.heading-search .heading-search-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .heading-search .heading-search-maintitle {
    max-width: 385px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .heading-search {
    font-size: 21px;
    line-height: 30px;
    margin-top: 0;
    padding-bottom: 0;
  }
  .heading-search .heading-search-maintitle {
    max-width: 270px;
    margin: 0 auto;
  }
  .heading-search .heading-search-subtitle {
    font-size: 13px;
    line-height: 19px;
  }
}

.header-seach {
  background: linear-gradient(180deg, #F8F7F5 0%, #F1F1F1 100%);
  max-width: 100% !important;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .menu-right {
    gap: 15px;
  }
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-sticky .header-back {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-sticky .header-user .header-user-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .header-sticky > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .header-sticky .topbar {
    display: none;
  }
  .header-sticky .header-back {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin: 0;
  }
  .header-sticky .header-back > .col-3 {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-default .header-main-wrap,
.header-single-model .header-main-wrap {
  background-color: #FFFEF9;
  border-bottom: 1px solid #e6e6e6;
}
.header-default .header-main-wrap .header-main,
.header-single-model .header-main-wrap .header-main {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-default .header-main-wrap .header-main .header-logo,
.header-single-model .header-main-wrap .header-main .header-logo {
  width: 76px;
  max-width: 100%;
}
.header-default .header-main-wrap .header-main .menu-right #popupNotification .dropdown-menu,
.header-single-model .header-main-wrap .header-main .menu-right #popupNotification .dropdown-menu {
  margin-top: 5px !important;
}
.header-default .header-bottom-wrap,
.header-single-model .header-bottom-wrap {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}
.header-default .header-bottom-wrap .header-bottom,
.header-single-model .header-bottom-wrap .header-bottom {
  position: relative;
}
.header-default .header-bottom-wrap .header-bottom .page-header,
.header-single-model .header-bottom-wrap .header-bottom .page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.header-default .header-bottom-wrap .header-bottom .page-header .page-header-left,
.header-default .header-bottom-wrap .header-bottom .page-header .page-header-right,
.header-single-model .header-bottom-wrap .header-bottom .page-header .page-header-left,
.header-single-model .header-bottom-wrap .header-bottom .page-header .page-header-right {
  display: flex;
  align-items: center;
}
.header-default .header-bottom-wrap .header-bottom .page-header a,
.header-single-model .header-bottom-wrap .header-bottom .page-header a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.header-default .header-bottom-wrap .header-bottom .page-header .page-title,
.header-single-model .header-bottom-wrap .header-bottom .page-header .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}
.header-default .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link,
.header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link {
  border: none;
  font-size: 16px;
  line-height: 1;
  padding: 16px 16px;
  border-bottom: 3px solid transparent;
  height: 56px;
  color: var(--pv-text-gray);
  display: flex;
  align-items: center;
}
.header-default .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link.active,
.header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link.active {
  border-color: var(--bs-body-color);
  color: var(--bs-body-color);
  font-weight: 700;
}
@media (max-width: 575px) {
  .header-default .header-bottom-wrap,
  .header-single-model .header-bottom-wrap {
    background-color: #F4F4F4;
  }
  .header-default .header-bottom-wrap .header-bottom .page-header,
  .header-single-model .header-bottom-wrap .header-bottom .page-header {
    padding: 0;
  }
  .header-default .header-bottom-wrap .header-bottom .page-header .page-header-left,
  .header-single-model .header-bottom-wrap .header-bottom .page-header .page-header-left {
    padding-left: 15px;
    gap: 12px;
  }
  .header-default .header-bottom-wrap .header-bottom .page-header .page-header-left a,
  .header-single-model .header-bottom-wrap .header-bottom .page-header .page-header-left a {
    width: unset;
    height: unset;
  }
  .header-default .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link,
  .header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link {
    font-size: 13px;
    background-color: transparent;
    padding: 16px 12px;
  }
}
.header-default.header-sticky,
.header-single-model.header-sticky {
  padding-bottom: 30px;
}
.header-default.fixed .header-main-wrap,
.header-single-model.fixed .header-main-wrap {
  display: none;
}

.header-single-model.header-sticky {
  padding-bottom: 54px !important;
}
.header-single-model .header-bottom-wrap .header-bottom .page-header {
  padding-top: 0;
  padding-bottom: 0;
}
.header-single-model .header-bottom-wrap .header-bottom .page-header h1 {
  margin: 0 auto;
  max-width: 992px;
  width: 100%;
}
.header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 575px) {
  .page-title {
    font-size: 19px !important;
    font-weight: 600;
  }
  .header-default.fixed .header-main-wrap {
    display: flex;
  }
  .header-default .header-main-wrap {
    background-color: #F4F4F4;
  }
  .header-default .header-main-wrap .header-main .page-title {
    margin-bottom: 0;
  }
}
.progress-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: -12px;
}
.progress-wrap .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.progress-wrap .step::before {
  position: absolute;
  content: "";
  border-bottom: 3px solid #b3b3b3;
  width: 100%;
  top: 34px;
  left: -50%;
  z-index: 2;
}
.progress-wrap .step::after {
  position: absolute;
  content: "";
  border-bottom: 3px solid #b3b3b3;
  width: 100%;
  top: 34px;
  left: 50%;
  z-index: 2;
}
.progress-wrap .step .step-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #b3b3b3;
}
.progress-wrap .step .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #b3b3b3;
  margin-top: 8px;
}
.progress-wrap .step.active .step-label {
  color: #1A1A1A;
}
.progress-wrap .step.active .step-counter {
  background-color: #ffffff;
  border: 4px solid #FEC20E;
}
.progress-wrap .step.completed .step-label {
  color: #1A1A1A;
}
.progress-wrap .step.completed .step-counter {
  background-color: #FEC20E;
  border: 4px solid #FEC20E;
}
.progress-wrap .step.completed .step-counter::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../icons/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(1);
}
.progress-wrap .step.completed::after {
  border-bottom: 3px solid #FEC20E;
  z-index: 3;
}
.progress-wrap .step.active.completed::after {
  border-color: #b3b3b3;
}
.progress-wrap .step:first-child::before {
  content: none;
}
.progress-wrap .step:last-of-type::after {
  content: none;
}
@media (max-width: 575px) {
  .progress-wrap .step .step-label {
    font-size: 13px;
  }
  .progress-wrap .step::before, .progress-wrap .step::after {
    top: 33px;
  }
  .progress-wrap .step.completed:first-child::before {
    content: "";
    border-bottom: 3px solid #FEC20E;
  }
  .progress-wrap .step.completed:last-of-type::after {
    content: "";
    border-bottom: 3px solid #FEC20E;
    width: 50%;
  }
}

.nav-tabs .nav-item .badge {
  border-radius: 99px;
  background-color: #F0155A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  margin-left: 4px;
  padding: 6px 8px;
  font-weight: 700;
}

@media (max-width: 1439px) {
  .header-single-model .header-bottom-wrap .header-bottom .page-header h1 {
    left: calc(100% - 800px - (100% - 800px) / 2 - 48px) !important;
    transform: translate(0, -50%);
    width: auto;
    z-index: 5;
  }
}
@media (max-width: 1299px) {
  .header-single-model .header-bottom-wrap .header-bottom .page-header h1 {
    left: 190px !important;
    transform: translate(0, -50%);
    width: auto;
    z-index: 5;
  }
}
@media (max-width: 1200px) {
  header.navbar .navbar-nav li a {
    padding: 16px;
  }
}
@media (max-width: 991px) {
  .header-single-model .header-bottom-wrap .header-bottom .page-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .header-single-model .header-bottom-wrap .header-bottom .page-header h1 {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto;
  }
  .header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv {
    position: relative;
  }
}
@media (max-width: 575px) {
  .header-bottom-wrap .container-fluid {
    padding: 0 !important;
  }
  .header-bottom-wrap .container-fluid .header-bottom .container {
    padding: 0 !important;
  }
  .header-single-model.header-sticky {
    padding-bottom: 15px !important;
  }
  .header-single-model .header-main-wrap {
    display: none;
  }
  .header-single-model .header-bottom-wrap .header-bottom .page-header {
    padding-top: 12px;
    padding-bottom: 12px;
    height: 56px;
  }
  .header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    gap: 0 !important;
  }
  .header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-item {
    flex-grow: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .header-single-model .header-bottom-wrap .header-bottom .nav-tabs.pv .nav-link {
    width: 100%;
    height: 52px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    justify-content: center;
  }
}
.header-user {
  display: flex;
  padding: 5px 0;
  gap: 18px;
  align-items: center;
}
.header-user .header-user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  object-fit: cover;
}
.header-user .header-user-name {
  line-height: 20px;
  font-weight: bold;
}

#menu_mobile {
  background: rgba(0, 0, 0, 0.8705882353);
  color: #fff;
}
#menu_mobile .offcanvas-header {
  padding: 0;
  height: 40px;
}
#menu_mobile .offcanvas-header .btn-close {
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu_mobile .offcanvas-body {
  padding: 20px;
  padding-top: 0;
  position: relative;
  height: calc(100vh - 120px);
}
#menu_mobile .offcanvas-body .header-user {
  color: rgba(255, 255, 255, 0.6980392157);
}
#menu_mobile .offcanvas-body .header-user .header-user-name {
  font-size: 16px;
}
#menu_mobile .offcanvas-body .header-user .header-user-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
#menu_mobile .offcanvas-body .header-user .header-user-alarm {
  display: flex;
  margin-top: 7px;
  align-items: center;
}
#menu_mobile .offcanvas-body .header-user .header-user-alarm .header-user-alarm-icon {
  position: relative;
  width: 22px;
  height: 22px;
}
#menu_mobile .offcanvas-body .header-user .header-user-alarm .header-user-alarm-icon .new-alarm {
  position: absolute;
  top: 1px;
  right: 6px;
  width: 7px;
  height: 7px;
  display: block;
  background: #F8532E;
  border-radius: 999px;
  border: 2px solid #FFF;
}
#menu_mobile .offcanvas-body .header-user .header-user-alarm .header-user-alarm-msg {
  font-size: 12px;
}
#menu_mobile .offcanvas-body .header-user .header-user-alarm .header-user-alarm-msg .has-unread-alarm > span {
  color: #FEC20E;
  font-weight: bold;
}
#menu_mobile .offcanvas-footer {
  padding-left: 24px;
}
#menu_mobile .offcanvas-footer .nav-item {
  height: 56px;
}
#menu_mobile .offcanvas-footer .nav-item #btn-logout {
  gap: 20px;
}
#menu_mobile ul.navbar-nav {
  gap: 4px;
}
#menu_mobile .menu_mobile-top .nav-item a span {
  color: #003cff;
}
#menu_mobile .nav-item {
  position: relative;
  height: 40px;
  line-height: 100%;
  display: flex;
  align-items: center;
}
#menu_mobile .nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
#menu_mobile .nav-item a .new-alarm {
  width: 10px;
  height: 10px;
  background-color: #FC0B37;
  border-radius: 100%;
}
#menu_mobile .nav-item:hover > a {
  color: #f8b62d !important;
}
#menu_mobile .nav-item.has-sub-menu {
  height: auto;
  flex-direction: column;
  align-items: start;
}
#menu_mobile .nav-item.has-sub-menu > a {
  height: 40px;
  width: 100%;
}
#menu_mobile .nav-item.has-sub-menu > a svg {
  margin-left: auto;
}
#menu_mobile .nav-item.has-sub-menu .sub-menu {
  padding-left: 20px;
  display: none;
}
#menu_mobile .nav-item.has-sub-menu .sub-menu li {
  column-gap: 10px;
}
#menu_mobile .nav-item.has-sub-menu .sub-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #C5C5C5;
}
#menu_mobile .nav-item.has-sub-menu.active .sub-menu {
  display: block;
}
@media (max-width: 575px) {
  #menu_mobile {
    width: 270px;
  }
}

#menu-user-role {
  margin-top: 10px;
  margin-bottom: 20px;
}
#menu-user-role .dropdown-toggle {
  width: 100%;
  background: #000;
  border-radius: 50px;
  border: 12px solid #3C3C3C;
  font-size: 14px;
  padding: 3px 25px;
  color: #fff;
  font-weight: 600;
}
#menu-user-role .dropdown-toggle:after {
  color: #FEC20E;
  margin-left: 10px;
}
#menu-user-role .dropdown-menu {
  width: 100%;
}
#menu-user-role .dropdown-menu .dropdown-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 7px 20px;
  color: #1a1a1a;
  cursor: pointer;
}
#menu-user-role .dropdown-menu .dropdown-item:hover {
  background: #E6E6E6;
}
#menu-user-role .dropdown-menu .dropdown-item.active {
  background: #E6E6E6;
}
#menu-user-role .dropdown-menu .dropdown-item .badge {
  font-size: 12px;
  background: #E03E1A;
}

.menu_mobile-role {
  border-bottom: 2px solid #565656;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: none;
}
.menu_mobile-role.active {
  display: block;
}

.aimo-event {
  padding: 0 20px;
  margin-top: 15px;
}
.aimo-event img {
  width: 100%;
  height: auto;
  border: 1px solid #4D4D4D;
  border-radius: 23px;
  max-height: 200px;
}
.aimo-event .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}
@media (max-width: 575px) {
  .aimo-event img {
    border-radius: 15px;
  }
}

.modal .modal-footer .btn-group {
  width: 100%;
  grid-gap: 10px;
  margin: 0;
}
.modal .modal-footer .btn-group .btn {
  height: 56px;
  padding: 0;
  flex: 1;
  border-radius: 50px;
}

.modal-content {
  border-radius: 16px;
  border: 0;
}

.modal-dialog {
  margin: auto;
}

.popup-size-small .modal-dialog {
  max-width: 360px;
}

.popup-size-large .modal-dialog {
  max-width: 1200px;
  padding: 10px;
}

.modal-header {
  padding: 25px;
  display: flex;
  align-items: unset;
  flex-direction: column;
}
.modal-header .modal-header-logo {
  position: relative;
}
.modal-header .modal-header-logo .btnClose {
  position: absolute;
  right: -5px;
  top: -5px;
}
.modal-header .modal-header-logo img {
  height: 24px;
}
.modal-header .modal-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.modal-header .modal-title .modal-title-header {
  font-weight: 600;
  font-size: 23px;
}
.modal-header .btnClose {
  position: absolute;
  right: 24px;
  left: auto;
  display: block;
}

.modal-body {
  padding: 25px;
}
.modal-body .title-text {
  font-size: 23px;
  font-weight: bold;
  line-height: 35px;
  margin-bottom: 10px;
}
.modal-body .wellcome-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 32px;
}
.modal-body form .form-floating > label {
  color: #B3B3B3;
  font-weight: 500;
}
.modal-body form .form-floating .form-select,
.modal-body form .form-floating .form-control {
  border-color: #b3b3b3;
  font-weight: 500;
  color: #1A1A1A;
}
.modal-body form .form-floating > .form-control-plaintext ~ label,
.modal-body form .form-floating > .form-control:focus ~ label,
.modal-body form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.modal-body form .form-floating > .form-select ~ label {
  transform: scale(0.7) translateY(-0.5rem) translateX(0.15rem);
}

.modal-footer {
  background-color: var(--text-color);
}
.modal-footer .btn {
  background-color: #fff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  border: 1px solid #1a1a1a;
  padding: 15px 23px;
  text-align: center;
}

#popupLogin .modal-body .wellcome-text {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 25px;
}
#popupLogin .modal-body .group-social-login {
  grid-gap: 12px;
}
#popupLogin .modal-body .group-social-login .group-item {
  height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16px;
}
#popupLogin .modal-body .group-social-login .group-item svg, #popupLogin .modal-body .group-social-login .group-item img {
  margin-right: 5px;
  max-width: 24px;
  max-height: 24px;
}
#popupLogin .modal-body .group-social-login .group-item span {
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1;
}

#popupLoginEmail .wellcome-text {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 25px;
}

#popup-client-register #register-a-client.verified {
  background-color: #F8B62D;
  color: #1a1a1a;
}

#popup-model-register #verification-completed {
  display: none;
  background-color: #F8B62D;
  color: #1a1a1a;
}
#popup-model-register #verification-completed:disabled {
  background-color: #e6e6e6;
  color: #cccccc;
}

#registerModelForm .agree-terms .form-check .form-check-input {
  width: 18px;
  height: 18px;
}
#registerModelForm .agree-terms .form-check .form-check-label {
  font-size: 16px;
  font-weight: 500;
  margin-left: 8px;
  color: #1a1a1a;
}
#registerModelForm .agree-terms .form-check .form-check-label a {
  color: #1a1a1a;
  text-decoration: underline;
}

#popup-agency-model-register #register-agency-model {
  background-color: #F8B62D;
  color: #1a1a1a;
}
#popup-agency-model-register #register-agency-model:disabled {
  background-color: #e6e6e6;
  color: #cccccc;
}

/*#region NOTIFICATION */
#popupNotification .dropdown-toggle {
  position: relative;
}
#popupNotification .dropdown-toggle .new-alarm {
  position: absolute;
  top: -2px;
  right: 3px;
  width: 10px;
  height: 10px;
  display: block;
  background: #F8532E;
  border-radius: 999px;
  border: 2px solid #FFF;
}
#popupNotification .dropdown-toggle::after {
  content: unset;
  display: none;
}
#popupNotification .dropdown-menu {
  border: 0;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 0;
  margin: 0;
  overflow: auto;
}
#popupNotification .dropdown-menu .popup-notification-wrap {
  max-width: 360px;
  width: 360px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 16px;
  background-color: #1a1a1a;
  color: #FFF;
  flex-shrink: 0;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-title > div {
  gap: 8px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-title .btn-close-popup-notification {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  right: 0;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #f2f2f2;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-actions .notification-count {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #161616;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-actions .notification-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-actions .notification-actions .spinner-border {
  width: 14px;
  height: 14px;
  border-width: 2px;
  color: #B3B3B3;
  margin: 3px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-header .popup-notification-actions .notification-actions a {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  color: #b3b3b3;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list {
  max-height: 307px;
  overflow: auto;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item {
  display: flex;
  padding: 12px 16px;
  border-bottom: 1px solid #F2F2F2;
  gap: 10px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-mark span {
  width: 7px;
  height: 7px;
  display: block;
  background: #E0E0E0;
  border-radius: 999px;
  margin-top: 5px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-mark.unread span {
  background: #FC0B37;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-delete svg {
  width: 14px;
  height: 18px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-delete .spinner-border {
  width: 14px;
  height: 14px;
  border-width: 2px;
  color: #B3B3B3;
  margin: 3px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-content {
  font-size: 14px;
  line-height: 20px;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item .notification-time {
  font-size: 14px;
  line-height: 20px;
  color: #32ADE6;
}
#popupNotification .dropdown-menu .popup-notification-wrap .popup-notification-body .notification-list .notification-item:last-child {
  border-bottom: none;
}
@media (max-width: 459px) {
  #popupNotification .dropdown-menu .popup-notification-wrap {
    max-width: 300px;
    width: 300px;
  }
}

/*#endregion NOTIFICATION */
.aimo-popup.aimo-popup-sm .modal-dialog {
  max-width: 360px;
}
.aimo-popup .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.aimo-popup .modal-content .modal-header {
  flex-direction: column;
  align-items: flex-start;
}
.aimo-popup .modal-content .modal-header .popup-logo {
  height: 24px;
}
.aimo-popup .modal-content .modal-header .btnClose {
  padding: 0;
  margin-left: auto;
  margin-right: 0;
}
.aimo-popup .modal-content .modal-header .modal-title {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.aimo-popup .modal-content .modal-header .modal-desc {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #6D6D6D;
}
.aimo-popup .modal-content .modal-body .button-submit {
  width: 100%;
  padding: 14px 24px;
  background-color: #3D3D3D;
  border: 1px solid #3D3D3D;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  height: 48px;
}
.aimo-popup .modal-content .modal-body .button-submit:disabled {
  background-color: #C5C5C5;
  border-color: #C5C5C5;
}
.aimo-popup form button[type=submit] {
  width: 100%;
  padding: 14px 24px;
  background-color: #3D3D3D;
  border: 1px solid #3D3D3D;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  height: 48px;
}
.aimo-popup form button[type=submit]:disabled {
  background-color: #C5C5C5;
  border-color: #C5C5C5;
}
.aimo-popup .floating-form-control {
  margin-bottom: 16px;
}
.aimo-popup .aimo-upload-file {
  margin-bottom: 16px;
}
.aimo-popup .aimo-phone-w-authen {
  margin-bottom: 16px;
}
.aimo-popup .aimo-phone-w-authen .floating-form-control {
  margin-bottom: 0 !important;
}
.aimo-popup .aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group {
  margin-bottom: 0 !important;
}
.aimo-popup .aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group select {
  max-width: 65px;
}
.aimo-popup#popup-model-register .modal-content .modal-body #registerModelForm .agree-terms .form-check .form-check-input {
  width: 16px;
  height: 16px;
  box-shadow: none;
}
.aimo-popup#popup-model-register .modal-content .modal-body #registerModelForm .agree-terms .form-check .form-check-input:checked {
  background-color: #4b4b4b;
  border-color: #4b4b4b;
}
.aimo-popup#popup-model-register .modal-content .modal-body #registerModelForm .agree-terms .form-check .form-check-label {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 21px;
  color: #1a1a1a;
  margin-left: 4px;
  cursor: pointer;
}
.aimo-popup#popup-model-register .modal-content .modal-body #registerModelForm .agree-terms .form-check .form-check-label a {
  text-decoration: none;
}
.aimo-popup#popup-model-register .modal-content .modal-body #registerModelForm .agree-terms .form-check .form-check-label a:hover {
  text-decoration: underline;
}
.aimo-popup#popup-client-register-success .modal-content .modal-header, .aimo-popup#popup-model-register-success .modal-content .modal-header, .aimo-popup#popup-model-registration-instructions .modal-content .modal-header, .aimo-popup#popup-agency-register-success .modal-content .modal-header {
  border-bottom: 0;
  justify-content: center;
  height: 90px;
}
.aimo-popup#popup-client-register-success .modal-content .modal-body .popup-logo, .aimo-popup#popup-model-register-success .modal-content .modal-body .popup-logo, .aimo-popup#popup-model-registration-instructions .modal-content .modal-body .popup-logo, .aimo-popup#popup-agency-register-success .modal-content .modal-body .popup-logo {
  margin-bottom: 57px;
}
.aimo-popup#popup-client-register-success .modal-content .modal-body .message, .aimo-popup#popup-model-register-success .modal-content .modal-body .message, .aimo-popup#popup-model-registration-instructions .modal-content .modal-body .message, .aimo-popup#popup-agency-register-success .modal-content .modal-body .message {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #1a1a1a;
}
.aimo-popup#popup-client-register-success .modal-content .modal-body .icon, .aimo-popup#popup-model-register-success .modal-content .modal-body .icon, .aimo-popup#popup-model-registration-instructions .modal-content .modal-body .icon, .aimo-popup#popup-agency-register-success .modal-content .modal-body .icon {
  margin-top: 25px;
  margin-bottom: 25px;
}
.aimo-popup#popup-model-registration-instructions .modal-content .modal-body .popup-logo {
  margin-bottom: 38px;
}
.aimo-popup#popup-model-registration-instructions .modal-content .modal-body .headline {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  color: #FEC20E;
  margin-bottom: 38px;
}
.aimo-popup#popup-model-registration-instructions .modal-content .modal-body ul.explains {
  padding-top: 24px;
  padding-left: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: left;
  border-top: 1px solid #F0F0F0;
}
.aimo-popup#popup-model-registration-instructions .modal-content .modal-body ul.explains li {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #A8A8A8;
}

form .form-select.is-valid,
form .form-control.is-valid,
form .was-validated .form-control:valid {
  background-image: none;
}
form .form-select,
form .form-control {
  border-color: #b3b3b3;
}
form .field-label label {
  font-weight: 500;
}
form .h-120px {
  height: 120px !important;
}
form button.btn-form-submit {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  height: 56px;
  border-radius: 56px;
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
  background-color: #f8b62d;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
form button.btn-form-submit:disabled {
  background-color: #e6e6e6;
  color: #ccc;
  border-color: #ccc;
}
form .form-control.is-invalid,
form .was-validated .form-control:invalid {
  background-image: none;
  border-color: #FC5555 !important;
}
form .form-control.is-invalid ~ label,
form .was-validated .form-control:invalid ~ label {
  color: #FC5555;
}
form .invalid-feedback {
  margin-top: 8px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-left: 20px;
  background-position: left;
}
form .form-floating .clear-input {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
form .form-floating.is-invalid .clear-input {
  top: 18px;
  transform: none;
}
form .hashtag-wrap .form-group .form-control {
  padding: 1rem 0.75rem;
  height: calc(3.5rem + var(--bs-border-width) * 2);
  min-height: calc(3.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}
form .form-has-timer {
  display: none;
}
form .form-has-timer .input-verify-wrap {
  padding-left: 80px;
  position: relative;
  border: 1px solid #b3b3b3;
  border-radius: 8px;
  height: 58px;
  padding: 12px;
  margin-bottom: 16px;
}
form .form-has-timer .input-verify-wrap > label {
  font-size: 14px;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(-0.85rem);
  pointer-events: none;
  position: relative;
  z-index: 2;
}
form .form-has-timer .input-verify-wrap .input-verify-group {
  position: absolute;
  display: flex;
  align-items: center;
  top: auto;
  bottom: 0;
  width: 80%;
}
form .form-has-timer .input-verify-wrap .input-verify-group .timer {
  width: 40px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  color: #666;
  left: 12px;
  bottom: 10px;
}
form .form-has-timer .input-verify-wrap .input-verify-group input {
  flex: 1;
  border: 0 !important;
  height: 36px;
  padding: 0 10px;
}
form .form-has-timer .input-verify-wrap.is-invalid {
  border-color: #fc5555 !important;
  margin-bottom: 8px;
}
form .form-has-timer .error {
  margin-bottom: 16px;
}
form .form-has-timer .sumbit-verify-group .link {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  margin-left: 16px;
  text-decoration: underline;
}
form .form-has-timer .sumbit-verify-group .link.disabled {
  pointer-events: none;
}
form .form-has-timer .sumbit-verify-group .btn-verify {
  background-color: #1a1a1a;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
form .form-has-timer .sumbit-verify-group .btn-verify.disabled {
  background-color: #E6E6E6;
  color: #cccccc;
  pointer-events: none;
}
form .input-upload-file .file-name {
  height: calc(3.5rem + var(--bs-border-width) * 2);
  min-height: calc(3.5rem + var(--bs-border-width) * 2);
  border-radius: var(--bs-border-radius);
}
form .input-upload-file .select-file {
  position: absolute;
  height: 38px;
  left: auto;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a1a1a;
  border: 1px solid #e6e6e6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--bs-border-radius) !important;
  z-index: 10;
}

.step-form-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: white;
  background: #3D3D3D;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .step-form-heading {
    font-size: 14px;
  }
}

.step-form-note {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-form-note.note-inline {
  flex-direction: row;
  align-items: center;
}
.step-form-note.heading {
  box-shadow: 0 -7px 10px 0 rgba(0, 0, 0, 0.0509803922);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 18px 20px;
}
.step-form-note.heading .sublabel {
  font-size: 13px;
}
.step-form-note .sublabel {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #939393;
}
@media (max-width: 575px) {
  .step-form-note.heading {
    padding: 13px 15px;
    text-align: center;
  }
  .step-form-note.heading .sublabel {
    max-width: 200px;
  }
  .step-form-note.note-inline.linebreak-mobile {
    flex-direction: column;
    align-items: flex-start;
  }
}

.step-form-wrap {
  margin-bottom: 40px;
}
.step-form-wrap .fieldset {
  padding: 25px 30px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.0588235294);
  border-radius: 10px;
  margin-bottom: 30px;
}
.step-form-wrap .fieldset .form-group {
  margin-bottom: 30px;
}
.step-form-wrap .fieldset .form-group:last-child {
  margin-bottom: 0;
}
.step-form-wrap .fieldset > textarea {
  width: 100%;
  border: none !important;
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #1a1a1a;
}
@media (max-width: 575px) {
  .step-form-wrap .fieldset > textarea {
    font-size: 14px;
  }
}
.step-form-wrap .form-group .field-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.step-form-wrap .form-group .field-label label {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #1A1A1A;
}
.step-form-wrap .form-group .field-label .field-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #939393;
}
.step-form-wrap .form-group .button-muted {
  padding: 8px 16.5px;
  border-radius: 8px;
  border: unset;
  background-color: #C5C5C5;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
  height: 39px;
  white-space: nowrap;
}
.step-form-wrap .form-group .button-muted.project-name-suggest {
  width: 77px;
}
.step-form-wrap .form-group .button-muted.shooting-date-btn {
  width: 59px;
}
.step-form-wrap .form-group .button-muted.project-name-suggest, .step-form-wrap .form-group .button-muted.shooting-date-btn {
  margin-top: 8px;
}
@media (max-width: 575px) {
  .step-form-wrap .form-group .button-muted.shooting-date-btn {
    width: 49px;
  }
}
.step-form-wrap .form-group .field-info {
  color: #1A1A1A;
}
.step-form-wrap .form-group .field-info label {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}
.step-form-wrap .form-group .field-info .field-note,
.step-form-wrap .form-group .field-info .field-value {
  font-size: 14px;
  line-height: 20px;
}
.step-form-wrap .form-group .field-info .field-note .icon,
.step-form-wrap .form-group .field-info .field-value .icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.step-form-wrap .form-group .field-info .field-note .total-hours,
.step-form-wrap .form-group .field-info .field-value .total-hours {
  font-weight: 600;
  color: #fb6568;
}
.step-form-wrap .form-group .field-info .field-value-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.step-form-wrap .form-group .field-info .field-value-checkbox span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  padding: 5px 18px;
  font-size: 12px;
  border: 1px solid #D1D1D1;
  border-radius: 20px;
  line-height: 24px;
  font-weight: 500;
  background: #6D6D6D;
  color: #fff;
}
@media (max-width: 575px) {
  .step-form-wrap .form-group .field-info .field-value-checkbox span {
    font-size: 14px;
  }
}
.step-form-wrap .form-group .form-control {
  /*&.input-datepicker {
      background-image: url("../icons/calendar.svg");
      background-repeat: no-repeat;
      background-position: right .75rem center;
      background-size: 24px 24px;
  }*/
}
.step-form-wrap .form-group .form-control.input-timepicker {
  background-image: url("../icons/clock.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px 18px;
}
.step-form-wrap .form-group .field-noti.d-block {
  display: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #FB6568;
  margin-top: 15px;
}
.step-form-wrap .form-group .field-noti.d-block + .field-noti.d-block {
  margin-top: 0;
}
.step-form-wrap .form-group .file-list-value {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.step-form-wrap .form-group .file-list-value .file-item {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.step-form-wrap .offer-amount {
  border-bottom: 0;
}
.step-form-wrap .offer-amount .price {
  font-family: "Roboto";
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a1a1a;
}
.step-form-wrap .offer-amount .total-hours {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}
.step-form-wrap input:focus, .step-form-wrap select:focus, .step-form-wrap textarea:focus {
  box-shadow: none;
  outline: none;
  border-color: #1a1a1a !important;
}
.step-form-wrap .suggestions-dropdown {
  position: relative;
  width: 100%;
}
.step-form-wrap .suggestions-dropdown .search-suggestions {
  display: none;
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background-color: #ffffff;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list {
  margin-top: 8px;
  max-height: 256px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list::-webkit-scrollbar {
  width: 4px;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list::-webkit-scrollbar-track {
  background: #fff;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  border-radius: 8px;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list .suggestion-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 8px;
  cursor: pointer;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list .suggestion-item .icon-search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  margin-right: 8px;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-list .suggestion-item .icon-search::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../icons/search.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.step-form-wrap .suggestions-dropdown .search-suggestions .suggestion-noti {
  padding-top: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  height: 60px;
}
.step-form-wrap .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.step-form-wrap .form-actions button {
  font-weight: 400;
}
.step-form-wrap .form-actions button.sub-btn {
  min-width: 200px;
  width: unset;
}
.step-form-wrap .form-actions button.sub-btn:disabled {
  background-color: #c5c5c5;
  border-color: #c5c5c5;
  color: #fff !important;
}
@media (max-width: 575px) {
  .step-form-wrap .fieldset {
    padding: 15px;
  }
  .step-form-wrap .form-group .field-label.linebreak-mobile {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-form-wrap .form-group .button-muted {
    padding: 8px 10px;
  }
  .step-form-wrap .form-actions .button-primary, .step-form-wrap .form-actions .button-secondary {
    padding: 14px 5px;
  }
  .step-form-wrap .form-actions .button-primary.sub-btn, .step-form-wrap .form-actions .button-secondary.sub-btn {
    min-width: 110px;
  }
}

.datepicker-container {
  position: relative;
}
.datepicker-container .datepicker {
  display: none;
  width: 100%;
  min-width: 370px;
  margin-top: 4px;
  position: absolute;
  z-index: 9999;
}
.datepicker-container .datepicker .ui-widget {
  width: 100%;
  border-radius: 8px;
  padding: 8px 8px 4px 8px;
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-header .ui-datepicker-next .ui-icon,
.datepicker-container .datepicker .ui-widget .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background-image: url("../icons/next.svg");
  background-position: center !important;
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  transform: rotate(180deg);
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-calendar thead tr {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-calendar thead tr th {
  padding: 8px 12px;
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-calendar tbody tr td .ui-state-default {
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
  background-color: transparent;
  transition: none;
}
.datepicker-container .datepicker .ui-widget .ui-datepicker-calendar tbody tr td .ui-state-default.ui-state-hover, .datepicker-container .datepicker .ui-widget .ui-datepicker-calendar tbody tr td .ui-state-default.ui-state-active {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.timepicker-container {
  position: relative;
}
.timepicker-container .timepicker {
  display: none;
  width: auto;
  margin-top: 4px;
  position: absolute;
  z-index: 9999;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
}
.timepicker-container .timepicker .timepicker-list {
  max-height: 310px;
  display: flex;
}
.timepicker-container .timepicker .timepicker-list > ul {
  padding: 4px 4px;
  margin: 0;
  list-style: none;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.timepicker-container .timepicker .timepicker-list > ul::-webkit-scrollbar {
  display: none;
}
.timepicker-container .timepicker .timepicker-list > ul:first-child {
  border-right: 1px solid #e6e6e6;
}
.timepicker-container .timepicker .timepicker-list > ul > li {
  width: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #ffffff;
}
.timepicker-container .timepicker .timepicker-list > ul > li:hover, .timepicker-container .timepicker .timepicker-list > ul > li.active {
  background-color: #1a1a1a;
  color: #ffffff;
}
.timepicker-container .timepicker .timepicker-footer {
  border-top: 1px solid #e6e6e6;
  text-align: center;
}
.timepicker-container .timepicker .timepicker-footer > button {
  padding: 16px 16px;
  width: 100%;
  border: 0;
  background-color: transparent;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.floating-form-control {
  position: relative;
  width: 100%;
  padding-top: 8px;
  flex-grow: 1;
  margin-bottom: 30px;
}
.floating-form-control label {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #4e4e4e;
  position: absolute;
  top: 0;
  left: 16px;
  background-color: #fff;
  padding: 0 8px;
}
.floating-form-control input, .floating-form-control select, .floating-form-control textarea {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 8px 8px;
  height: 40px;
  padding: 0 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #1a1a1a;
}
.floating-form-control input::placeholder, .floating-form-control select::placeholder, .floating-form-control textarea::placeholder {
  color: #B6B6B6 !important;
}
.floating-form-control input::-ms-input-placeholder, .floating-form-control select::-ms-input-placeholder, .floating-form-control textarea::-ms-input-placeholder {
  color: #B6B6B6 !important;
}
.floating-form-control input:focus, .floating-form-control select:focus, .floating-form-control textarea:focus {
  border-color: #1a1a1a !important;
}
.floating-form-control input:read-only:focus, .floating-form-control select:read-only:focus, .floating-form-control textarea:read-only:focus {
  border-color: #eaeaea !important;
}
.floating-form-control select option {
  color: #1a1a1a !important;
}
.floating-form-control select.unselect {
  color: #B6B6B6 !important;
}
.floating-form-control textarea {
  padding: 12px 16px;
}
.floating-form-control.input-price-won .form-control {
  padding-right: 40px;
}
.floating-form-control.input-price-won label {
  font-size: 16px;
  right: 5px;
  left: unset;
  background: transparent;
  top: 18px;
  color: #1a1a1a;
}
.floating-form-control .form-select option {
  color: #1a1a1a;
}
.floating-form-control .form-select.unselect {
  color: #B6B6B6;
}
.floating-form-control .input-password {
  padding-right: 48px;
}
.floating-form-control .btn-view-password {
  border: none;
  background: transparent;
  position: absolute;
  bottom: 3px;
  right: 0;
  font-size: 16px;
  padding: 5px 16px;
}
@media (max-width: 575px) {
  .floating-form-control label {
    font-size: 14px;
  }
  .floating-form-control input, .floating-form-control select, .floating-form-control textarea {
    font-size: 14px;
  }
}

.opt-in-consent {
  margin-bottom: 32px;
}
.opt-in-consent .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.opt-in-consent .form-check .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #ffffff !important;
  border: 2px solid #1a1a1a !important;
  margin-top: 0;
}
.opt-in-consent .form-check .form-check-input:checked[type=checkbox] {
  background-image: url("../icons/check.svg");
  background-size: 20px;
}
.opt-in-consent .form-check label {
  font-size: 14px;
  font-weight: 500;
}
.opt-in-consent .form-check label a {
  text-decoration: underline;
}

.aimo-upload-file {
  margin-bottom: 30px;
}
.aimo-upload-file .upload-wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 8px;
}
.aimo-upload-file .upload-wrap .btn-upload {
  flex-shrink: 0;
  height: 40px;
  padding: 0 12px;
  border: 0;
  background-color: #C5C5C5;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  line-height: 21px;
  font-weight: 700;
}
.aimo-upload-file .upload-wrap .floating-form-control {
  margin-bottom: 0 !important;
}

.aimo-phone-w-authen {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.aimo-phone-w-authen .floating-form-control {
  margin-bottom: 0 !important;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 8px 8px;
  padding: 0 16px;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner:focus-within {
  border-color: #1a1a1a !important;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0 !important;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group input, .aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group select {
  height: 40px;
  border: 0 !important;
  padding: 0;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .form-group select {
  width: 100%;
  max-width: 120px;
  padding-right: 18px;
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../icons/select-arrow.svg") right no-repeat;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner > input.verify_code {
  height: 40px;
  border: 0;
  border-top: 1px solid #eaeaea;
  border-radius: 0;
  padding: 0;
  display: none;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner > input.verify_code:focus {
  border-top: 1px solid #eaeaea !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-code,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-email-code,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-phone,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-email {
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  text-align: center;
  padding: 5px 6px;
  border-radius: 10px;
  min-width: 48px;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-code:disabled,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-email-code:disabled,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-phone:disabled,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-email:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-code,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-resend-email-code {
  color: #FEC20E;
  border: 1px solid #FEC20E;
  background-color: #fff;
  position: absolute;
  top: 18px;
  right: 18px;
  display: none;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-phone,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .btn-verify-email {
  color: #fff;
  border: 1px solid #FEC20E;
  background-color: #FEC20E;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .verify-group {
  position: absolute;
  bottom: 9px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner .verify-group .countdown {
  font-weight: 700;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  color: #E03E1A;
  display: none;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner.has-send-code > input.verify_code,
.aimo-phone-w-authen .floating-form-control .phone-authen-inner.has-send-code .btn-resend-code {
  display: block;
}
.aimo-phone-w-authen .floating-form-control .phone-authen-inner.has-send-code .verify-group .countdown {
  display: block;
}
.aimo-phone-w-authen .btn-cancel-verify-phone {
  margin-top: 8px;
  font-weight: 700;
  font-size: 11px;
  line-height: 100%;
  text-align: center;
  padding: 5px 6px;
  border-radius: 10px;
  min-width: 48px;
  color: #fff;
  border: 1px solid #3d3d3d;
  background-color: #3d3d3d;
  display: none;
}
.aimo-phone-w-authen .btn-cancel-verify-phone:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.aimo-phone-w-authen .note {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #1A1A1A;
  font-weight: 500;
  margin-top: 8px;
}

div.error.invalid-feedback {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #dc3545;
  margin-top: 8px;
  text-align: left;
}

.aimo-badge-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0;
  list-style: none;
  margin-bottom: 0;
}
.aimo-badge-list li {
  position: relative;
  transition: 0.4s;
  border: 1px solid #d1d1d1;
  border-radius: 99px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  padding: 5px 16px;
  font-size: 12px;
  line-height: 1;
  height: 36px;
  display: flex;
  align-items: center;
  color: #1A1A1A;
}
.aimo-badge-list.dark-list li {
  background: #6D6D6D;
  color: #ffffff;
}

.aimo-checkbox {
  position: relative;
  display: inline-block;
}
.aimo-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.aimo-checkbox.checked span, .aimo-checkbox input:checked + span {
  background: #6D6D6D;
  color: #ffffff;
}
.aimo-checkbox input:checked + span .color {
  display: none !important;
}
.aimo-checkbox span {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #D1D1D1;
  border-radius: 20px;
  font-weight: 500;
  padding: 5px 18px;
  font-size: 12px;
  height: 36px;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .aimo-checkbox span {
    font-size: 14px;
  }
}

.form-notice {
  border: 1px solid #FFEDB9;
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 150%;
  background-color: #FFFEF9;
  margin-top: 15px;
  margin-bottom: 15px;
}

.hashtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hashtag-list:has(.hashtag-item) {
  margin-top: 16px;
}
.hashtag-list .hashtag-item {
  position: relative;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid #d1d1d1;
  border-radius: 20px;
  font-weight: 500;
  padding: 5px 18px;
  font-size: 12px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hashtag-list .hashtag-item input {
  display: none;
}
.hashtag-list .hashtag-item .btn-remove-hashtag-item {
  cursor: pointer;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../icons/remove.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.form-multi-files .file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-multi-files .file-list .file-item {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #F6F6F6;
}
.form-multi-files .file-list .file-item:not(.has-file)::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../icons/add.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.form-multi-files .file-list .file-item.has-file::before {
  content: "";
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.form-multi-files .file-list .file-item.has-file:hover::before {
  opacity: 0.7;
}
.form-multi-files .file-list .file-item.has-file:hover .remove-file {
  opacity: 1;
}
.form-multi-files .file-list .file-item .remove-file {
  width: 24px;
  height: 24px;
  background-image: url("../icons/circle-remove.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  border: 0;
  background-color: transparent;
  opacity: 0;
}
.form-multi-files .file-list.video .file-item:not(.has-file)::before {
  background-image: url("../icons/add-video-1.svg");
  width: 25px;
  height: 25px;
}
.form-multi-files input[type=file] {
  display: none !important;
}

.popover-button {
  background-color: #FEC20E;
  padding: 6px 10px;
  border-radius: 14px;
  color: #fff;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  border: 0;
  margin-left: auto;
  flex-shrink: 0;
  height: max-content !important;
}
.popover-button:hover {
  color: #fff;
}

.compcard-popover {
  width: 100%;
  max-width: 285px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border: 0 !important;
}
.compcard-popover .popover-header {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  text-align: left;
  background-color: transparent;
  padding-top: 16px;
  padding-bottom: 0 !important;
  border-bottom: 0;
}
.compcard-popover .popover-body {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #666;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
}
.compcard-popover .popover-arrow {
  display: none;
}

@media (max-width: 575px) {
  .form-multi-files .file-list .file-item {
    width: 92px;
    height: 92px;
  }
}
body.mobile .container, body.mobile .container-fluid, body.mobile .container-lg, body.mobile .container-md, body.mobile .container-sm, body.mobile .container-xl, body.mobile .container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}
body.mobile .banner-top-home {
  display: none;
}
body.mobile #menu_mobile {
  border-left: 0;
}
body.mobile #header .navbar-nav {
  display: none;
}
body.mobile .section-slide {
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
}
body.mobile .section-slide .swiper-slide {
  aspect-ratio: 326/142;
  width: 100%;
  height: auto;
}
body.mobile .swiper-wrapper {
  flex-wrap: nowrap;
}
body.mobile .mobile-slide .g-3, body.mobile .mobile-slide .gx-3 {
  --bs-gutter-x: 12px;
}
body.mobile .mobile-slide .swiper-slide {
  width: 160px;
}
body.mobile #new-model .swiper-slide, body.mobile #popular .swiper-slide {
  width: 272px;
}
body.mobile .box-overlay {
  display: none;
}
body.mobile #header #logo {
  width: 58px;
}
body.mobile .box-search .icon-right > div {
  display: none;
}
body.mobile section.mt_40 {
  margin-top: 16px !important;
}
body.mobile .section-new {
  /*.row{
      column-count: 2;
      display: block;
      margin: 0;
      column-gap: 12px;

      &>div{
          margin: 0;
          padding: 0;
          width: auto;
          break-inside: avoid;
          margin-bottom: 16px;
      }
      .item-new{
          .item-image{
              margin-top: 0;
          }
      }
  }
  .g-3, .gx-3 {
      --bs-gutter-x: 12px;
  }*/
}
body.mobile .box-favourite {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
body.mobile .box-favourite .favourite-body {
  padding-bottom: 160px;
}
body.mobile .camera__des {
  display: none;
}

@media (min-width: 768px) {
  .web .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333% !important;
  }
}
@media (min-width: 992px) {
  .web .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667% !important;
    height: auto;
  }
  .row-col-5 .col {
    flex: 0 0 auto;
    width: 20% !important;
  }
}
@media (max-width: 992px) {
  #header .navbar-nav {
    display: none;
  }
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  color: #1A1A1A;
  box-shadow: -2px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.sidenav .closebtn {
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 24px;
}
.sidenav ul li {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  border: none;
}
.sidenav ul li .collapse {
  margin-top: 16px;
}
.sidenav ul li .login {
  color: #003CFF;
}
.sidenav ul li .sub-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  padding: 12px 16px;
  display: block;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
#btn-camera .camera__des {
  border-radius: 8px;
  background: #FEC20E;
  color: #000000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 8px 12px;
  width: 167px;
  position: absolute;
  z-index: 1;
  top: -103%;
}
#btn-camera .camera__des svg {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#btn-camera .drop-zone__thumb {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 100%;
  background-size: cover;
  position: absolute;
}

header.fixed #btn-camera .camera__des {
  display: none !important;
}

.header-search .box-search {
  padding: 14px 0;
  /*.suggest-label, .suggest-keyword {
      display: none !important;
  }*/
}
.header-search .box-search .search-submit {
  position: absolute;
  line-height: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 68px;
  text-align: center;
  background: #454545;
  color: #ffffff;
  padding: 0;
  border: none;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 900;
}
.header-search .box-search.focused .search-submit {
  border-bottom-right-radius: 0;
}
.header-search .box-search .input_icon {
  width: 100%;
  max-width: 455px;
}
.header-search .box-search .input_icon input {
  padding-right: 130px;
  height: 40px;
  border-radius: 8px !important;
  box-shadow: none;
  border-color: #E0E5EB;
  padding-left: 24px;
}
.header-search .box-search .input_icon input:focus {
  border-radius: 8px 8px 0 0 !important;
}
.header-search .box-search .input_icon .box-search__recent {
  border-radius: 0 0 8px 8px;
}
.header-search .box-search .input_icon .box-search__image {
  border-radius: 8px;
  top: -1px;
}
.header-search .box-search .input_icon .box-search__image .search__image-top {
  height: 40px;
}
.header-search .box-search .input_icon .icon-left {
  left: 8px;
}
.header-search .box-search .input_icon .icon-right {
  right: 75px;
}
.header-search .box-search .input_icon #btn-camera {
  width: 40px;
  height: 40px;
}
.header-search .box-search .input_icon #btn-camera img {
  width: 26px;
}
.header-search .box-search .input_icon #btn-camera .camera__des {
  top: 115%;
}
.header-search .box-search .input_icon #btn-camera .camera__des svg {
  top: -12px;
  left: 47%;
  transform: rotate(180deg);
}
@media screen and (min-width: 576px) {
  .header-search.header-default .header-main-wrap {
    background-color: #FFFFFF;
  }
}
.header-search.header-default.fixed .header-main-wrap {
  display: block !important;
}
.header-search.header-default.fixed .header-main-wrap .topbar {
  display: flex !important;
}
.header-search .header-bottom-wrap {
  display: none;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 575px) {
  .header-search .header-bottom-wrap {
    display: flex;
  }
  .header-search .header-bottom-wrap .suggestion-tags {
    margin-bottom: 5px;
  }
  .header-search.header-sticky {
    padding-bottom: 15px;
  }
  .header-search.fixed .suggestion-tags {
    display: none;
  }
  .header-search .box-search .search-submit {
    display: none;
  }
  .header-search .box-search .input_icon .icon-right {
    right: 10px;
  }
  .header-search .box-search .input_icon .camera__des {
    display: none;
  }
  .header-search .box-search .input_icon input {
    padding-left: 15px;
    padding-right: 55px;
    height: 50px;
  }
}

.header-seach #btn-camera .camera__des {
  left: -20px;
}
.header-seach #btn-camera .camera__des svg {
  left: 32%;
}

.box-search {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.box-search .input_icon {
  max-width: 643px;
  width: 100%;
  /*.suggest-label {
      color: #fff;
      background: #FEC20E;
      border-radius: 13px;
      padding: 1px 10px;
      margin-right: 10px;
      font-size: 13px;
  }
  .model-keyword-animation {
      display: block;
  }*/
}
.box-search .input_icon .button-icon {
  width: 70px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-search .input_icon input {
  padding-right: 80px;
  font-size: 14px;
  height: 58px;
  padding-left: 30px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.0588235294);
}
.box-search .input_icon input:focus {
  border-color: #e6e6e6 !important;
  border-radius: 32px 32px 0 0 !important;
  border-bottom: 0 !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15) !important;
}
.box-search .input_icon input:focus + div + div {
  opacity: 1;
  visibility: visible;
}
.box-search .input_icon input::placeholder {
  color: rgba(0, 0, 0, 0.5019607843);
}
.box-search .input_icon .icon-right {
  right: 8px;
  display: flex;
  align-items: center;
}
.box-search .input_icon .input-text {
  font-weight: 500;
}
.box-search .input_icon .box-search__recent {
  position: absolute;
  z-index: 9;
  width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0 0 32px 32px;
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.box-search .input_icon .box-search__recent .box-search__recent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 30px 0 30px;
}
.box-search .input_icon .box-search__recent .line-horizontal {
  height: 2px;
  background: #f8b62d;
}
.box-search .input_icon .box-search__recent .icon-link {
  height: 34px;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
}
.box-search .input_icon .box-search__recent .box-search__recent-des {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 16px;
}
.box-search .input_icon .box-search__recent .box-search__recent-des span {
  font-weight: 700;
  color: #f8b62d;
}
.box-search .input_icon .box-search__image {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  background: #fff;
  border-radius: 32px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 8px;
}
.box-search .input_icon .box-search__image .line-horizontal {
  width: 100%;
  height: 1px;
  background: #f8b62d;
  margin-top: 8px;
  margin-bottom: 10px;
}
.box-search .input_icon .box-search__image .search__image-top {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}
.box-search .input_icon .box-search__image .search__image-content {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  border-radius: 23px;
  margin: 10px 0;
  cursor: pointer;
  padding: 5px;
}
.box-search .input_icon .box-search__image .search__image-content .image-content__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.box-search .input_icon .box-search__image .search__image-content .image-content__wrap span {
  color: #003cff;
}
.box-search .input_icon .box-search__image .search__image-content .image-content__wrap .drop-zone__thumb {
  background-size: cover;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-search .input_icon .box-search__image .search__image-bottom {
  font-weight: 500;
  line-height: 150%;
  padding: 9px 0;
  font-size: 14px;
}
.box-search .input_icon .box-search__image .search__image-bottom span {
  color: #f8b62d;
}
.box-search .input_icon .box-search__image.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1230px) {
  .box-search .input_icon .icon-right > div {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .box-search .input_icon .icon-left {
    left: 8px;
  }
  .box-search .input_icon input {
    padding-right: 70px;
  }
}
@media screen and (max-width: 575px) {
  .box-search .input_icon input {
    height: 46px;
  }
}

.search-tool {
  font-size: 16px;
  gap: 8px;
}
.search-tool .btn {
  line-height: 20px;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid #E0E5EB;
  color: #7B7B7B;
  box-sizing: border-box;
  height: 40px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  background-color: transparent;
}
.search-tool .btn.dropdown-toggle.show {
  color: #F5C01F;
}
.search-tool .btn-open-seach-tool .ic-filter-close {
  display: none;
}
.search-tool .btn-open-seach-tool.active {
  background-color: #F8B62D;
  color: #FFFFFF;
}
.search-tool .btn-open-seach-tool.active .ic-filter {
  display: none;
}
.search-tool .btn-open-seach-tool.active .ic-filter-close {
  display: block;
}
.search-tool .btn-open-seach-tool.active svg path {
  fill: #fff;
}
.search-tool .dropdown-sort-model .dropdown-toggle::after {
  display: none;
}
.search-tool .dropdown-sort-model .dropdown-menu {
  border-color: #E6E6E6;
  border-radius: 12px;
  overflow: hidden;
  font-size: 14px;
}
.search-tool .dropdown-sort-model .dropdown-menu .dropdown-item {
  text-align: left;
  color: #1A1A1A;
  padding: 16px 24px;
  background-color: transparent !important;
}
.search-tool .dropdown-sort-model .dropdown-menu .dropdown-item.active, .search-tool .dropdown-sort-model .dropdown-menu .dropdown-item:hover {
  background: #E6E6E6 !important;
}

.suggestion-tags {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.suggestion-tags .suggestion-tag {
  padding: 8px 24px;
  font-size: 14px;
  line-height: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.8980392157);
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .suggestion-tags {
    margin-bottom: 0;
  }
  .suggestion-tags::-webkit-scrollbar {
    display: none;
  }
}

.search-not-found {
  margin-top: 50px;
}
.search-not-found img {
  margin-bottom: 10px;
}

:root {
  --sideSearchTool-width: 298px !important;
}

#main {
  transition: padding-left 0.03s ease;
}

body.open-offcanvas .site-wrap {
  padding-left: var(--sideSearchTool-width);
  transition: padding 0.3s ease;
}
@media screen and (max-width: 767px) {
  body.open-offcanvas .site-wrap {
    padding-left: 0;
  }
}

.offcanvas.sideSearchTool {
  width: var(--sideSearchTool-width);
  background: #F6F6F6;
  overflow-y: auto;
}
@media screen and (max-width: 575px) {
  .offcanvas.sideSearchTool {
    width: 300px;
  }
}

.sideSearchTool {
  background-color: #FFFFFF;
  color: #0B0D1E;
  box-shadow: 2px 0 8px 0 rgba(0, 0, 0, 0.15);
}
.sideSearchTool .offcanvas-header {
  padding: 20px 20px 0 20px;
}
.sideSearchTool .offcanvas-header .side-search-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
}
.sideSearchTool .offcanvas-header .btn-reset-filter {
  color: #888888;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 16px;
  border: none;
}
.sideSearchTool .offcanvas-body {
  padding: 0;
  overflow-y: unset;
}
.sideSearchTool .main-filter {
  padding: 20px;
}
.sideSearchTool .main-filter .group-filter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: solid 1px #E0E5EB;
  padding: 20px 0;
}
.sideSearchTool .main-filter .group-filter .head-filter label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sideSearchTool .main-filter .group-filter .head-filter label .sublabel {
  font-size: 14px;
  font-weight: 400;
}
.sideSearchTool .main-filter .group-filter .head-filter .switch {
  width: 40px;
}
.sideSearchTool .main-filter .group-filter .content-filter .hide-optional {
  text-align: center;
  width: 100%;
}
.sideSearchTool .main-filter .group-filter .content-filter .hide-optional label {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.sideSearchTool .main-filter .group-filter .content-filter .show-optional .group-sub-filter {
  margin-bottom: 32px;
  display: block;
  overflow: hidden;
}
.sideSearchTool .main-filter .group-filter .content-filter .show-optional .group-sub-filter:last-child {
  margin-bottom: 0;
}
.sideSearchTool .main-filter .group-filter .content-filter input, .sideSearchTool .main-filter .group-filter .content-filter select {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #E0E5EB;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}
.sideSearchTool .main-filter .group-filter .content-filter .input-range-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sideSearchTool .main-filter .group-filter .content-filter .input-range-text input {
  min-width: 100px;
}
.sideSearchTool .main-filter .group-filter.group-filter-type-tag .content-filter {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.sideSearchTool .main-filter .group-filter.group-filter-type-tag .aimo-checkbox span {
  height: 38px;
  padding: 8px 24px;
  font-size: 14px;
}
.sideSearchTool .main-filter .group-filter.group-filter-color .aimo-checkbox .color {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  margin: 0;
  margin-right: 8px;
  padding: 0;
}
.sideSearchTool .offcanvas-footer .group-filter-submit {
  padding: 0 20px 20px 20px;
}
.sideSearchTool .offcanvas-footer .btn-submit-filter {
  width: 100%;
  justify-content: center;
  background: #3D3D3D;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sideSearchTool .offcanvas-footer .group-filter-submit {
    padding-bottom: 24px;
  }
}

@media screen and (max-height: 450px) {
  .sideSearchTool {
    padding-top: 15px;
  }
  .sideSearchTool a {
    font-size: 18px;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider:before {
  content: "";
  background-image: url("../icons/check.svg");
  transform: translateX(26px);
  background-color: #f8b62d;
  padding: 0;
  background-size: 24px;
  background-position: center center;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 12px;
  height: 12px;
  width: 32px;
  border-radius: 6px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider .round {
  border-radius: 34px;
}
.switch .slider .round:before {
  border-radius: 50%;
}
.switch .slider:before {
  color: white;
  font-size: 32px;
  position: absolute;
  content: "¯";
  height: 24px;
  width: 24px;
  left: -8px;
  bottom: -6px;
  background-color: #6c757d;
  transition: 0.4s;
  border-radius: 50%;
  padding-left: 2px;
  padding-top: 12px;
}

.range-slide {
  position: relative;
  margin-top: 5px;
  height: auto;
  width: 100%;
}
.range-slide .slide {
  position: absolute;
  top: 0;
  height: 4px;
  background: #ccc;
  left: 7px;
  right: 7px;
}
.range-slide .slide .line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background-color: #FCA412;
}
.range-slide .slide .circle {
  position: absolute;
  z-index: 1;
  text-align: left;
  border: 4px solid #FCA412;
  background-color: #E6E6E6;
  border-radius: 100%;
  outline: none;
  top: -5px;
  height: 14px;
  width: 14px;
  margin-left: -9px;
}
.range-slide .slide .thumb {
  z-index: 2;
}
.range-slide .slide.line-model-height {
  background-image: url("../icons/line-model-height.svg");
  background-size: cover;
}
.range-slide .slide.line-model-shoes {
  background-image: url("../icons/line-model-shoes.svg");
  background-size: cover;
}
.range-slide .slide.line-shooting-time {
  background-image: url("../icons/line-shooting-time.svg");
  background-size: contain;
}
.range-slide input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: 3px;
  top: 0;
  width: 100%;
  opacity: 0;
  margin: 0;
}
.range-slide input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  border-radius: 50%;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.range-slide .display {
  position: absolute;
  top: -40px;
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.range-slide .range-hint {
  padding-top: 22px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 12px;
  color: #999999;
}

.button-primary, .button-secondary {
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  border: unset;
  background-color: #3D3D3D;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #FFFFFF;
  border: 1px solid #3D3D3D;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.button-primary:disabled {
  background-color: #e6e6e6;
  color: #ccc;
  border-color: #cccccc;
}

.button-secondary {
  background-color: #E03E1A;
  border: 1px solid #E03E1A;
}
.button-secondary:disabled {
  background-color: rgba(224, 62, 26, 0.631372549);
  border-color: rgba(224, 62, 26, 0.631372549);
}

a.button-primary:hover, a.button-secondary:hover {
  color: #FFFFFF;
}

.project-item .contract-status, .model-item .contract-status {
  transition: 0.4s;
  font-size: 13px;
  border: 2px solid #6A6A6A;
  border-radius: 20px;
  font-weight: 500;
  background: #6A6A6A;
  color: #fff;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 5px 10px;
  box-sizing: border-box;
}
.project-item .btn-check-contract, .model-item .btn-check-contract {
  border: 2px solid #E03E1A;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  color: #E03E1A;
  background: white;
  border-radius: 27px;
  min-width: 125px;
}
@media (max-width: 575px) {
  .project-item .contract-status, .model-item .contract-status {
    min-width: unset;
    height: 30px;
  }
  .project-item .btn-check-contract, .model-item .btn-check-contract {
    min-width: unset;
    height: 30px;
  }
  .project-item .project-status .contract-status, .model-item .project-status .contract-status {
    min-width: 90px;
  }
}

.project-item.contract-completed .contract-status, .project-item.contract-partial-completed .contract-status {
  background-color: #E03E1A;
  border-color: #E03E1A;
  color: #FFFFFF;
}
.project-item.shooting-completed .contract-status {
  background-color: #ffffff;
  color: #FEC20E;
  border-color: #FEC20E;
}
.project-item.model-request-payment .contract-status {
  background-color: #FEC20E;
  border-color: #FEC20E;
}
.project-item.aimo-paid .contract-status {
  background-color: #ffffff;
  color: #E03E1A;
  border-color: #E03E1A;
}
.project-item.cancelled .contract-status, .project-item.rejected .contract-status {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.project-item.contract-completed .project-status .contract-status, .project-item.contract-partial-completed .project-status .contract-status, .project-item.shooting-completed .project-status .contract-status, .project-item.model-request-payment .project-status .contract-status, .project-item.aimo-paid .project-status .contract-status {
  background-color: #E03E1A;
  border-color: #E03E1A;
  color: #FFFFFF;
}
.project-item.cancelled .project-status .contract-status, .project-item.rejected .project-status .contract-status {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  color: #FFFFFF;
}

.model-item.pending-acceptance .contract-status {
  background-color: #ffffff;
  color: #B0B0B0;
  border-color: #B0B0B0;
}
.model-item.pending-payment .contract-status {
  background-color: #ffffff;
  color: #E03E1A;
  border-color: #E03E1A;
}
.model-item.contract-completed .contract-status, .model-item.contract-partial-completed .contract-status {
  background-color: #E03E1A;
  border-color: #E03E1A;
}
.model-item.shooting-completed .contract-status {
  background-color: #ffffff;
  color: #FEC20E;
  border-color: #FEC20E;
}
.model-item.model-request-payment .contract-status {
  background-color: #FEC20E;
  border-color: #FEC20E;
}
.model-item.aimo-paid .contract-status {
  background-color: #ffffff;
  color: #E03E1A;
  border-color: #E03E1A;
}
.model-item.cancelled .contract-status, .model-item.rejected .contract-status {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}

.btn-count-like {
  position: fixed;
  z-index: 1031;
  right: 32px;
  bottom: 100px;
}
.btn-count-like .count {
  position: absolute;
  padding: 6px 8px;
  border-radius: 999px;
  background: #fc5555;
  color: #fff;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  left: 50%;
  top: -6px;
}
.btn-count-like svg path {
  fill: #FC0B37;
}

.box-favourite {
  position: fixed;
  z-index: 2000;
  right: 40px;
  bottom: 35px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
  width: 360px;
  border-radius: 24px 24px 0 0;
  border: 1px solid #e6e6e6;
  background: #f2f2f2;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
.box-favourite .favourite-head {
  padding-left: 16px;
  padding-right: 16px;
}
.box-favourite .favourite-head__total {
  display: flex;
  align-items: center;
  column-gap: 4px;
  height: 64px;
}
.box-favourite .favourite-head__total .btn {
  width: 24px;
  height: 24px;
}
.box-favourite .favourite-head__total .favourite-head__total-title {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.box-favourite .favourite-head__total .total {
  margin-left: 4px;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}
.box-favourite .favourite-body {
  padding-left: 16px;
  padding-right: 16px;
  /*         padding-bottom: 96px; */
  padding-bottom: 140px;
}
.box-favourite .favourite-body .favourite-body__list {
  max-height: 380px;
  overflow: auto;
  min-height: 228px;
}
.box-favourite .favourite-body .favourite-body__list .item-favourite {
  height: 76px;
  border-bottom: 1px solid #e6e6e6;
}
.box-favourite .favourite-body .favourite-body__list .item-favourite .favourite-product__img {
  width: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.box-favourite .favourite-body .favourite-body__list .item-favourite .favourite-product__img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.box-favourite .favourite-body .favourite-body__list .favourite-product__title {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.box-favourite .favourite-body .favourite-body__list .btn {
  width: 24px;
  height: 24px;
}
.box-favourite .favourite-footer {
  background: #333333;
  padding: 16px;
  padding-bottom: 24px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.box-favourite .favourite-footer .btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-kakao-talk {
  position: fixed;
  z-index: 1031;
  right: 32px;
  bottom: 35px;
}
.btn-kakao-talk img {
  width: 60px;
}

.show-favourite .box-favourite {
  opacity: 1;
  visibility: visible;
}
.show-favourite .btn-count-like {
  opacity: 0;
  visibility: hidden;
}
.show-favourite .btn-kakao-talk {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  body:not(.home) .btn-count-like {
    display: none;
  }
  body:not(.home) .btn-kakao-talk {
    display: none;
  }
}
/*model list*/
.favorite-model-list-wrap {
  padding: 24px;
  border: 1px solid #E6E6E6;
  background: #FCFCFC;
  border-radius: 12px;
}
.favorite-model-list-wrap .checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  border: 2px solid #D9E1E7;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox .checkmark::after {
  content: "";
  width: 8px;
  height: 13px;
  border: solid #D9E1E7;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  margin-bottom: 2px;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox input[type=checkbox]:checked ~ .checkmark {
  border-color: #FEC20E;
  background-color: #FEC20E;
}
.favorite-model-list-wrap .checkbox-wrap .input-checkbox input[type=checkbox]:checked ~ .checkmark::after {
  border-color: #ffffff;
}
.favorite-model-list-wrap .list-header {
  padding-bottom: 24px;
  display: flex;
  justify-content: end;
  align-items: end;
  border-bottom: 1px solid #EDEDED;
  flex-direction: column;
  margin-bottom: 20px;
}
.favorite-model-list-wrap .list-header .invalid-feedback {
  text-align: center;
  width: auto;
  margin: 0 auto;
}
.favorite-model-list-wrap .list-header .checkbox-wrap {
  width: unset;
  height: unset;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
}
.favorite-model-list-wrap .list-header .checkbox-wrap .input-checkbox {
  width: unset;
  height: unset;
  display: flex;
  gap: 15px;
  align-items: center;
}
.favorite-model-list-wrap .list-header .checkbox-wrap .input-checkbox .checkmark {
  position: relative;
  height: 25px;
  width: 25px;
  border: 1px solid #1A1A1A;
  border-radius: 5px;
}
.favorite-model-list-wrap .list-header .checkbox-wrap .input-checkbox .checkmark:after {
  width: 5px;
  height: 8px;
  border: solid #1A1A1A;
  border-width: 0 1px 1px 0;
}
.favorite-model-list-wrap .favorite-model-list {
  padding: 0;
  margin: 0;
}
.favorite-model-list-wrap .favorite-model-list .model-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #EDEDED;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .num-list {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #161616;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-img-wrap .model-img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .model-name {
  font-size: 16px;
  font-weight: 500;
  color: #161616;
  margin-bottom: 0;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .shooting-desc {
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  align-items: center;
  display: flex;
  gap: 6px;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .shooting-desc:before {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("../icons/clock-ring.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .model-action-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .model-action-mobile .price {
  font-size: 17px;
}
.favorite-model-list-wrap .favorite-model-list .model-item .price {
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: #1A1A1A;
  white-space: nowrap;
}
.favorite-model-list-wrap .favorite-model-list .model-item .model-action {
  display: flex;
  gap: 20px;
  align-items: center;
}
.favorite-model-list-wrap .favorite-model-list > .model-item:first-child {
  padding-top: 0;
}
.favorite-model-list-wrap .favorite-model-list > .model-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.favorite-model-list-wrap.single-model .favorite-model-list .model-item .model-content .model-info .shooting-desc {
  font-size: 18px;
  font-weight: 700;
}
.favorite-model-list-wrap.single-model .favorite-model-list .model-item .model-content .model-info .shooting-desc:before {
  width: 20px;
  height: 20px;
}
.favorite-model-list-wrap.single-model .favorite-model-list .model-item .model-action .price {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .favorite-model-list-wrap {
    padding: 15px;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item {
    padding: 15px 0;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item .model-content .num-list {
    display: none;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .shooting-desc {
    font-size: 14px;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info .model-action-mobile {
    display: flex;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item .model-action {
    align-items: end;
  }
  .favorite-model-list-wrap .favorite-model-list .model-item .model-action .price {
    display: none;
  }
  .favorite-model-list-wrap.single-model .favorite-model-list .model-item .model-content .model-info .shooting-desc {
    font-size: 17px;
    gap: 12px;
  }
  .favorite-model-list-wrap.single-model .favorite-model-list .model-item .model-action .price {
    display: block;
    font-size: 17px;
  }
}

/*end model list*/
.project-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-list .project-item .project-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border: 1px solid #F3F3F3;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.0588235294);
  border-radius: 10px;
  margin-top: 21px;
  cursor: pointer;
}
.project-list .project-item .project-info-wrap .project-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1;
}
.project-list .project-item .project-info-wrap .project-info .project-name {
  font-size: 16px;
  font-weight: 700;
}
.project-list .project-item .project-info-wrap .project-info .project-meta {
  font-size: 12px;
  display: flex;
  gap: 10px;
}
.project-list .project-item .project-info-wrap .project-info .project-meta .project-date {
  font-family: "Be Vietnam Pro";
  font-weight: 600;
  color: #6A6A6A;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.project-list .project-item .project-info-wrap .project-info .project-meta .project-date.text-highlight {
  color: #FBBC00;
}
.project-list .project-item .project-info-wrap .project-info .project-meta .project-date .project-time {
  color: #B3B3B3;
}
.project-list .project-item .project-info-wrap .project-info .project-action-mobile {
  display: none;
  justify-content: space-between;
  margin-top: 8px;
}
.project-list .project-item .project-info-wrap .project-info .project-action-mobile .price {
  font-size: 17px;
}
.project-list .project-item .project-info-wrap .project-action {
  display: flex;
  gap: 20px;
  align-items: center;
}
.project-list .project-item .project-info-wrap .project-action .contract-count {
  font-family: "Be Vietnam Pro";
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  width: 60px;
  height: 60px;
  color: #FFFFFF;
  background: #FEC20E;
  font-size: 21px;
  font-weight: 700;
}
.project-list .project-item .project-info-wrap .project-action .project-status {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-list .project-item .project-info-wrap .project-action .project-status .contract-count-people {
  background: rgba(0, 0, 0, 0.2509803922);
  border-color: #D9D9D9;
  color: #FFFFFF;
}
.project-list .project-item .project-info-wrap .price {
  font-family: "Be Vietnam Pro";
  font-size: 21px;
  font-weight: 600;
  color: #1A1A1A;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-list .project-item .project-info-wrap .price .vat {
  color: #737E84;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
.project-list .project-item.with-contract-list .project-info-wrap {
  background: rgba(0, 0, 0, 0.0509803922);
  box-shadow: none;
}
.project-list .project-item.on-hold .project-info-wrap .contract-count {
  background-color: #D9D9D9;
}
.project-list .project-item .favorite-model-list-wrap {
  margin-top: 25px;
  margin-bottom: 0;
}
.project-list .project-item .close-btn-wrap {
  text-align: center;
  margin-top: -1px;
}
.project-list .project-item .close-btn-wrap .close-btn {
  text-align: center;
  border: 1px solid #E6E6E6;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top: 0;
  font-size: 11px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.0509803922);
  padding: 2px 20px 4px 20px;
}
.project-list .project-item .close-btn-wrap .close-btn svg {
  margin-right: 5px;
}
@media (max-width: 575px) {
  .project-list .project-item .project-info-wrap {
    padding: 15px;
    align-items: flex-start;
    margin-top: 12px;
  }
  .project-list .project-item .project-info-wrap .project-info .project-meta {
    font-size: 13px;
  }
  .project-list .project-item .project-info-wrap .project-info .project-action-mobile {
    display: flex;
  }
  .project-list .project-item .project-info-wrap .project-action {
    flex-direction: column;
    gap: 10px;
    align-items: end;
  }
  .project-list .project-item .project-info-wrap .project-action .contract-count {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }
  .project-list .project-item .project-info-wrap .project-action .price {
    display: none;
  }
  .project-list .project-item.past .project-info-wrap {
    align-items: center;
  }
  .project-list .project-item .favorite-model-list-wrap {
    margin-top: 12px;
  }
}
.project-list .project-item.past .project-meta .project-date {
  color: #1A1A1A !important;
}
.project-list .project-item.past .project-meta .project-date .project-time {
  color: #1A1A1A !important;
}
.project-list .project-item.cancelled .project-info-wrap {
  cursor: unset;
}
.project-list.agency .project-item.past .project-info-wrap {
  cursor: unset;
}

@media (max-width: 575px) {
  #modelProjectList .project-info-wrap {
    flex-direction: column;
    align-items: unset;
  }
  #modelProjectList .project-info-wrap .project-action {
    display: none;
  }
  #projectList .favorite-model-list-wrap .favorite-model-list .model-item {
    flex-direction: column;
    align-items: unset;
  }
  #projectList .favorite-model-list-wrap .favorite-model-list .model-item .model-content .model-info {
    flex-grow: 1;
  }
  #projectList .favorite-model-list-wrap .favorite-model-list .model-item .model-action {
    display: none;
  }
}
.project-list-pagination {
  margin: 0;
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.project-list-pagination .pagination-item {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  text-align: center;
  border-radius: 99px;
  background-color: transparent;
}
.project-list-pagination .pagination-item a, .project-list-pagination .pagination-item span {
  padding: 8px 12px;
}
.project-list-pagination .pagination-item.btn-next::before, .project-list-pagination .pagination-item.btn-prev::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../icons/next.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.project-list-pagination .pagination-item.btn-next span, .project-list-pagination .pagination-item.btn-prev span {
  font-size: 0;
}
.project-list-pagination .pagination-item.btn-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.project-list-pagination .pagination-item.active {
  background-color: #FFF0D0;
}

.home header:not(.fixed) .header-seach {
  background: linear-gradient(0deg, #FBF8EE 0%, #F8F7F5 100%), linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}
.home header:not(.fixed) .heading-search {
  padding: 0;
  margin-top: 183px;
  margin-bottom: 26px;
}
.home header:not(.fixed) .box-search {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 247px;
}

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