body {
  font-family: Inter;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 320px;
  min-height: 100vh;
  background-color: white;
}

.to-left {
  margin: 0 auto 0 0;
}

.to-right {
  margin: 0 0 0 auto;
}

.flex {
  display: flex;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- MODAL START ----- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #39527385;
  backdrop-filter: blur(3px);
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
}

.modal .container {
  width: 800px;   
  background-color: white;
  margin-top: 80px;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.modal .container h2{
  font-family: Inter;
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
}

.modal .container img.close{
  width: 30px;
  aspect-ratio: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
/* ----- MODAL END ----- */

input::placeholder {
  color: #9ca3af;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #9ca3af;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  height: 66px;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 500px) {
  header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

header img {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  width: auto;
}

header section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1 1 0%;
  justify-content: end;
  height: 100%;
}

@media not all and (min-width: 1024px) {
  header section {
    display: none;
  }
}

header section nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header section nav a {
  height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header section nav .active {
  position: relative;
  color: #cc6f02;
}

header section nav .active div {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #cc6f02;
  padding: auto;
  margin: auto;
  height: 0.5rem;
  width: 80%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

header section div.select {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: auto 10px;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-inline-start: 2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

header section div.select img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}

header div.select div.values {
  position: absolute;
  top: 90%;
  background-color: white;
  border: 1px solid var(--gray_l);
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  display: none;
}

header div.select div.values p {
  text-align: center;
  border-bottom: 1px solid var(--gray_l);
  color: black;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;

}

header section div.select div.values p:last-child {
  border-bottom: 0 !important;
}

header section select {
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-inline-start: 2rem;
  fill: #f87171;
}

header button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  cursor: pointer;
  background-color: #e5e7eb;
  border: 2px solid #e5e7eb;
  height: 100%;
  border-radius: 0.75rem;
}

header div.actions {
  display: flex;
  height: 75%;
  /* background-color: green; */
}

@media (min-width: 1024px) {
  header div.actions {
    display: none;
  }
}

header div.actions div.select {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-right: 10px;
  margin-inline-start: 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  /* background-color: red; */
}
header div.actions div.select p {
  margin: 0;
}

header div.actions div.select img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}


div.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #0000003d;
  backdrop-filter: blur(3px);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  align-items: flex-end;
}

div.sidenav nav.sidebar-links {
  height: 100%;
  width: 300px;
  transition: 1s;
  background-color: #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

div.sidenav nav.sidebar-links div {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

div.sidenav nav.sidebar-links a {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

div.sidenav nav.sidebar-links a.active {
  color: #cc6f02;
}

main section.hero {
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  height: auto;
  margin: 100px auto;
}

@media screen and (max-width: 1000px) {
  main section.hero {
    flex-direction: column-reverse;
  }
}

main section.hero div.messages,
main section.hero div.images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  /* height: 90%; */
}

@media screen and (max-width: 1000px) {

  main section.hero div.messages,
  main section.hero div.images {
    width: 100%;
    margin-bottom: 25px;

  }
}

main section.hero div.messages {
  align-items: flex-start;
  padding-right: 30px;
}


main section.hero div.messages h1 {
  font-family: Inter;
  font-weight: 700;
  font-size: 50px;
  line-height: 71.3px;
  margin: 0;
}

main section.hero div.messages p {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  color: #4B5563;
  margin-top: 15px;
}

main section.hero div.messages div.search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: 1rem;
  gap: 10px;
}

main section.hero div.images img {
  max-width: 100%;
  /* position: relative; */
  /* height: 80%; */
  /* width="620px" height="419px" */
}


@media screen and (min-width: 901px) and (max-width: 990px) {
  main section.hero div.images {
    height: 60%;
  }
}


@media (max-width: 990px) {
  main section.hero div.images img {
    max-width: 100%;
  }
}

main section.hero div.images img:nth-child(1) {
  top: 0;
  left: 0;
  border-top-left-radius: 100px;
}

main section.hero div.images img:nth-child(2) {
  bottom: 10px;
  right: 0;
  border-top-right-radius: 100px;
}

main section.popular-listing {
  width: 85%;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 1150px) {
  main section.popular-listing {
    height: auto;
  }
}

main section.popular-listing h2 {
  font-family: Inter;
  font-weight: 700;
  font-size: 35px;
  line-height: 48.3px;
}

main section.popular-listing div.items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

main section.popular-listing div.items div.item {
  width: 300px;
  /*height: 287px;*/
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin: 0.5rem;
}

@media screen and (width <=750px) {
  main section.popular-listing div.items div.item {
    width: 100%;
  }
}

main section.popular-listing div.items div.item div.caroussel {
  position: relative;
  border-radius: 15px;
}

main section.popular-listing div.items div.item div.caroussel picture {
  width: 100%;
  height: 100%;
}
main section.popular-listing div.items div.item div.caroussel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
}

main section.popular-listing div.items div.item div.caroussel div.indicators {
  position: absolute;
  display: flex;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.505); */
  padding: 0.125rem;
  border-radius: 10px;
}

main section.popular-listing div.items div.item div.caroussel div.indicators span {
  display: block;
  height: 7.5px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.772);
  cursor: pointer;
  border-radius: 9999px;
  margin: auto 2px;
}

main section.popular-listing div.items div.item div.caroussel div.indicators span.active {
  height: 10px;
  background-color: white;
}

main section.popular-listing div.items div.item div.desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

main section.popular-listing div.items div.item div.desc div.texts p {
  margin: 0.125rem 0;
  font-family: Inter;
  font-size: 14px;
}

main section.popular-listing div.items div.item div.desc div.texts p:nth-child(1) {
  line-height: 21px;
  font-weight: 700;
  color: #cc6f02;
}

main section.popular-listing div.items div.item div.desc div.texts p:nth-child(2) {
  line-height: 18.2px;
  font-weight: 400;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons {
  display: flex;
  justify-content: flex-start;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.125rem 0.325rem;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon:nth-child(1) {
  margin: 0.125rem 0.325rem 0.125rem 0;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon img {
  border-radius: 0;
  width: 17.5px;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon span {
  font-size: 0.825rem;
  color: black;
}

main section.popular-listing div.items div.item div.desc button {
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

main section.popular-listing button.show-all {
  margin-top: 1rem;
}


main section.partners {
  margin: 100px 0;
}

main section.partners div.marquee {
  --gap: 1rem;
  margin: 1rem 0;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

main section.partners div.marquee:hover .marquee-content {
  animation-play-state: paused;
}

main section.partners div.marquee .marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 30s linear infinite;
}

main section.partners div.marquee .marquee-content>* {
  flex: 0 0 auto;
  margin: 2px;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  text-align: center;
  font-weight: 900;
  font-size: 60px;
  line-height: 69px;
}

main section.downloap-app {
  margin: 100px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

main section.downloap-app div.container {
  height: auto;
  width: 70%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  main section.downloap-app div.container {
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  main section.downloap-app div.container {
    width: 90%;
  }
}

@media screen and (min-width: 701px) and (max-width: 990px) {
  main section.downloap-app div.container {
    width: 80%;
  }
}

main section.downloap-app div.container img {
  width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-top-right-radius: 100px;
}

main section.downloap-app div.container div.actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  width: calc(100% - 350px);
}

@media screen and (max-width: 600px) {

  main section.downloap-app div.container img,
  main section.downloap-app div.container div.actions {
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
  }
}

main section.downloap-app div.container div.actions h3 {
  font-family: Inter;
  font-weight: 700;
  line-height: 48.3px;
  font-size: 42px;
  margin: 0;
}

@media screen and (max-width: 400px) {
  main section.downloap-app div.container div.actions h3 {
    font-size: 24px;
    line-height: 28.3px;
    font-weight: 800;
  }
}

@media screen and (min-width: 401px) and (max-width: 990px) {
  main section.downloap-app div.container div.actions h3 {
    font-size: 32px;
    line-height: 38.3px;
    font-weight: 800;
  }
}

main section.downloap-app div.container div.actions p {
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;
  margin-top: 15px;
}

main section.downloap-app div.container div.actions div.platforms {
  display: flex;
  width: 100%;
}

main section.downloap-app div.container div.actions div.platforms div.platform {
  width: 170px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

main section.downloap-app div.container div.actions div.platforms div.platform:nth-child(2) {
  margin-left: 1rem;
}

main section.downloap-app div.container div.actions div.platforms div.platform:hover {
  transform: scale(1.1);
}

main section.downloap-app div.container div.actions div.platforms div.platform img {
  display: block;
  border-radius: 0;
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left;
}


footer {
  border-top: 1px solid #e5e7eb;
  /* margin-top: 2rem; */
}

footer section.arrangements {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

footer section.arrangements aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  margin: 3rem 0;
  padding: 1rem 2rem;
}

footer section.arrangements aside a {
  margin: 0.5rem 0;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  color: #395273;
}

header section p {
  margin: initial;
}

header section a:hover,
footer section.arrangements aside a:hover {
  color: #1B2838;
  text-decoration: none;
}

footer section.arrangements aside.company img {
  margin: 1rem 0;
}

footer section.arrangements aside.company p {
  margin: 0.25rem 0;
}

footer p.copyright {
  text-align: center;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  margin: 1rem 0;
  padding: 1rem 2rem;
}
footer p.copyright a{
  text-decoration: underline;
  color: var(--primary_color);
  font-weight: bold;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

form.delete{
  /* background-color: red; */
  text-align: left;
}
form.delete h5, p, div.confirm{
  /* background-color: green; */
  width: 100%;
  text-align: left;
}
form.delete h5{
  font-family: Inter;
  font-weight: 700;
  line-height: 31.2px;
  font-size: 24px;
}
form.delete p{
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;
}
form.delete p.email{
  font-weight: 700;
}

form.delete div.confirm{
  margin-top: 25px;
}
form.delete div.confirm .btn{
  margin: 0;
  background-color: var(--error);
  border-color: var(--error);
}
form.delete div.confirm .btn:hover{
  background-color: #b42b38;
  border-color: #b42b38;
}

.favourites .title {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 75px auto 25px auto;
  /* background-color: green; */
  border-bottom: 1px solid var(--gray_l);
}

.favourites .title .texts h1 {
  color: black;
  font-family: Inter;
  font-weight: 700;
  line-height: 59.8px;
  font-size: 52px;
}

.favourites .title .texts p {
  color: var(--gray_d);
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;
}

.favourites .title img {
  width: 61px;
  aspect-ratio: 1;
  cursor: pointer;
}


main.favourites section.favourites-listing {
  width: 85%;
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: ft;
}

@media screen and (max-width: 1150px) {
  main.favourites section.favourites-listing {
      height: auto;
  }
}

main.favourites section.favourites-listing h2 {
  font-family: Inter;
  font-weight: 700;
  font-size: 35px;
  line-height: 48.3px;
}

main.favourites section.favourites-listing div.items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 95%;
  /* background-color: red; */
}

main.favourites section.favourites-listing div.items div.item {
  width: 300px;
  height: 287px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin: 0.5rem auto 0.5rem 0;
}

@media screen and (width <=750px) {
  main.favourites section.favourites-listing div.items div.item {
      width: 100%;
  }
}

main.favourites section.favourites-listing div.items div.item div.caroussel {
  position: relative;
  border-radius: 15px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
}

main.favourites section.favourites-listing div.items div.item div.caroussel div.indicators {
  position: absolute;
  display: flex;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.505); */
  padding: 0.125rem;
  border-radius: 10px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel span.new,
main.favourites section.favourites-listing div.items div.item div.caroussel span.heart {
  position: absolute;
  display: flex;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  color: black;
  font-family: Inter;
  font-weight: 500;
  line-height: 15.6px;
  font-size: 12px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel span.new {
  top: 10px;
  right: 10px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel span.heart {
  bottom: 10px;
  right: 10px;
  padding: 0.325rem;
  border-radius: 9999px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel div.indicators span {
  display: block;
  height: 7.5px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.772);
  cursor: pointer;
  border-radius: 9999px;
  margin: auto 2px;
}

main.favourites section.favourites-listing div.items div.item div.caroussel div.indicators span.active {
  height: 10px;
  background-color: white;
}

main.favourites section.favourites-listing div.items div.item div.desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts p {
  margin: 0.125rem 0;
  font-family: Inter;
  font-size: 14px;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts p:nth-child(1) {
  line-height: 21px;
  font-weight: 700;
  color: #cc6f02;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts p:nth-child(2) {
  line-height: 18.2px;
  font-weight: 400;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts div.icons {
  display: flex;
  justify-content: flex-start;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts div.icons div.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.125rem 0.325rem;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts div.icons div.icon:nth-child(1) {
  margin: 0.125rem 0.325rem 0.125rem 0;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts div.icons div.icon img {
  border-radius: 0;
  width: 17.5px;
}

main.favourites section.favourites-listing div.items div.item div.desc div.texts div.icons div.icon span {
  font-size: 0.825rem;
  color: black;
}

main.favourites section.favourites-listing div.items div.item div.desc button {
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

main.favourites section.favourites-listing button.show-all {
  margin-top: 1rem;
}

main.favourites section.modal .container p{
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;
  text-align: center;
}

main.favourites section.modal .container div.copy {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 15px; */
  margin-top: 50px;
  width: 310px;

  border-radius: 6px;
  position: relative;
}
main.favourites section.modal .container div.copy input{
  width: 100%;
  margin: 0;
  padding-left: 50px;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  font-size: 20px;
}

main.favourites section.modal .container div.copy img {
  position: absolute;
  left: 15px;

  width: 25px;
  aspect-ratio: 1;

}
main.favourites section.modal .container div.copy code {
  position: absolute;
  line-height: 12.8px;
  font-size: 10px;
  color: green;
  background-color: rgba(0, 128, 0, 0.105);
  right: 0;
  top: -25px;
  padding: 2.5px 5px;
  border-radius: 6px;
  display: none;
}

main.favourites section.modal .container div.copy p {
  margin: 0 10px;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  font-size: 20px;

}
main.favourites section.modal .container  span {
  margin-top: 10px;
  text-decoration: underline;
  cursor: pointer;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 500;
}

main .messages h1{
  margin-top: 100px;
  font-family: Inter;
  font-weight: 700;
  line-height: 59.8px;
  font-size:52px;
}
main .messages .chat{
  margin-top: 50px;
  height: calc(100% - 109.8px);
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: brown; */
}
main .messages .chat .groups{
  /* background-color: orange; */
  width: 40%;
  height: 100%;
  border: 1px solid var(--gray_l);
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 25px;
  overflow: hidden;

}
main .messages .chat .groups aside{
  /* background-color: orange; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--gray_l);

}
main .messages .chat .groups aside:hover{
  cursor: pointer;
  background-color: var(--gray_l);

}
main .messages .chat .groups aside img{
  width: 83px;
  /* background-color: brown; */
  height: 83px;
  border-radius: 6px;

}
main .messages .chat .groups aside div{
  /* background-color: green; */
  width: calc(100% - 103px);
  
}
main .messages .chat .groups aside div h2{
  font-family: Inter;
  font-weight: 700;
  line-height: 21px;
  font-size:14px;
  margin: 0;
}
main .messages .chat .groups aside div p{
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size:14px;
  margin: 5px 0;
  color: var(--gray_d);
}
main .messages .chat .groups aside div p.time{
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size:14px;
  margin: 0;
  color: var(--gray);

}
main .messages .chat .messages-box{
  /* background-color: violet; */
  width: 60%;
  height: 100%;
  border: 1px solid var(--gray_l);
  border-top-right-radius: 25px;
  border-bottom: 0;
  overflow: hidden;
}
main .messages .chat .messages-box .top-nav{
  width: 100%;
  border-bottom: 1px solid var(--gray_l);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
main .messages .chat .messages-box .top-nav div{
  width: 100%;
  display: flex;
  align-items: center;
}
main .messages .chat .messages-box .top-nav div span.name{
  margin-left: 10px;
  font-family: Inter;
  font-weight: 700;
  line-height: 25.2px;
  font-size:18px;
}

main .messages .chat .messages-box .top-nav div span.go-to-listing{
  margin-right: 20px;
  font-family: Inter;
  font-weight: 500;
  line-height: 15.6px;
  font-size:12px;
}

main .messages .chat .messages-box .messages-list {
  display: flex;
  width: 100%;
  height: calc(100% - 80px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

}
main .messages .chat .messages-box .messages-list .msgs {
  display: flex;
  flex-direction: column;
  width: 95%;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
main .messages .chat .messages-box .messages-list .msgs p{
  width: 100%;
  /* background-color: red; */
  text-align: center;
  font-family: Inter;
  font-weight: 500;
  line-height: 15.6px;
  font-size:12px;
  color: var(--gray);

}
main .messages .chat .messages-box .messages-list .msgs div{
  width: 215px;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: var(--gray_l);
  margin-bottom: 15px;

}
main .messages .chat .messages-box .messages-list .msgs div p{
  text-align: left;
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size:14px;
  color: var(--gray_d);


}
main .messages .chat .messages-box .messages-list .msgs aside{
  display: flex;
  justify-content: center;
  align-items: flex-start;

}
main .messages .chat .messages-box .messages-list .msgs aside img{
  width: 30px;
  aspect-ratio: 1;
  margin-right: 7.5px;
}
main .messages .chat .messages-box .messages-list .input-bar{
  background-color: var(--gray_l);
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 20px;

}
main .messages .chat .messages-box .messages-list .input-bar .form-group {
  margin: auto;
  width: 80%;
}

form .check-group{
  display: flex;
  width: 100%;
  padding: 15px 0;
  /* background-color: red; */
  justify-content: space-between;
  border-top: 1px solid var(--gray_l);
}
form .check-group.last{
  border-bottom: 1px solid var(--gray_l);
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-indicator{
  border-width: 2px;
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-indicator::before{
  background-color: red;
  background-color: var(--secondary_color);
}
form .check-group .custom-switches-stacked .custom-switch .custom-switch-input:checked ~ .custom-switch-indicator{
  background-color: var(--secondary_color_l);
  border: 3px solid white;
  outline: 2px solid var(--gray_l);
  height: 1rem;
}
.custom-switch-input:checked ~ .custom-switch-indicator::before {
  left: calc(1rem + 1px);
  top: -2.5px;
}

.user-account{
  width: 90%;
  margin: 50px auto;
  /* background-color: red; */
  display: flex;

}
/* FORM */
.user-account form{
  width: 540px;
  /* background-color: yellow; */
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.user-account form div.image{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.user-account form div.image p{
  margin-top: 15px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
  text-align: center;
  color: var(--secondary_color);
}
.user-account form .form-group{
  width: 100%;
  margin: 5px 0;
}.user-account form .form-group .form-control{
  height: 45px!important;
}
.user-account form .form-group label{
  color: var(--gray);
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
  padding-left: 0;
}
.user-account form button{
  width: 270px;
  margin: 15px 0 0 auto;
  
}

@media screen and (max-width: 990px) {
  .user-account{
      flex-direction: column;
  }
  .user-account form{
      width: 90%;
      margin: 10px auto;
  }
  
}

form.share img {
  width: 100px;
  aspect-ratio: 1;
}

form.share div.copy {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 15px; */
  margin-top: 50px;
  width: 310px;

  border-radius: 6px;
  position: relative;
}
form.share div.copy input{
  width: 100%;
  margin: 0;
  padding-left: 50px;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  font-size: 20px;
}

form.share div.copy img {
  position: absolute;
  left: 15px;

  width: 25px;
  aspect-ratio: 1;

}
form.share div.copy code {
  position: absolute;
  line-height: 12.8px;
  font-size: 10px;
  color: green;
  background-color: rgba(0, 128, 0, 0.105);
  right: 0;
  top: -25px;
  padding: 2.5px 5px;
  border-radius: 6px;
  display: none;
}

form.share div.copy p {
  margin: 0 10px;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  font-size: 20px;

}

form.share  span {
  margin-top: 15px;
  text-decoration: underline;
  cursor: pointer;
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 500;
}



.approve {
  margin-top: 60px!important;
  margin-bottom: 247px;
}
.approve .approve-content {
  width: calc(100% - 426px);
  padding: 0;
  margin-top: 10px;
}
.approve .approve-content .approve-content h2{
  font-family: Inter;
  font-weight: 700;
  line-height: 38.4px;
  font-size: 32px;
  color: black;
}
.approve .approve-content .approve-content p{
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
  color: black;
}

.agents-content .boost-content {
  width: calc(100% - 426px);
  padding: 0;
}

@media screen and (max-width: 990px) {
  .agents-content .boost-content {
      width: 100%;
  }
}

.agents-content .boost-content div.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.agents-content .boost-content div.form-group label {
  padding: 5px 0;
  color: var(--gray);
}

.agents-content .boost-content div.form-group .form-control {
  height: auto;
}

.agents-content .boost-content div.form-group .form-control option {
  color: black;
}

.agents-content .boost-content .checks {
  display: flex;
  justify-content: flex-start;
}

.agents-content .boost-content .checks .form-group {
  width: auto;
}

.agents-content .boost-content div.form-group label {
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  color: black;
}

.agents-content .boost-content div.form-group label span img {
  margin-left: 5px;
  cursor: pointer;
}

.agents-content .boost-content div.form-group div.values {
  position: absolute;
  top: 90%;
  left: 17.5%;
  background-color: white;
  border: 1px solid var(--gray_l);
  border-radius: 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  display: none;
  z-index: 10;
}

.agents-content .boost-content div.form-group div.values .values-holder {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  /* position: relative; */
}

.agents-content .boost-content div.form-group div.values .values-holder .indicator {
  background-color: white;
  height: 10px;
  width: 10px;
  /* z-index: -10; */
  position: absolute;
  top: -5.5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid var(--gray_l);
  border-left: 1px solid var(--gray_l);
}

.agents-content .boost-content div.form-group div.values .values-holder p {
  text-align: center;
  border-bottom: 1px solid var(--gray_l);
  color: var(--primary_color);
  width: 100%;
  padding: 10px 20px;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
}

.agents-content .boost-content div.form-group div.values .values-holder p:nth-child(2) {
  border-bottom: 0;
  color: var(--secondary_color);
  cursor: pointer;
}


.agents-content .boost-content div.duration label {
  margin-bottom: 10px;
  color: var(--gray);
}
.agents-content .boost-content div.payment {
  margin-top: 20px;
}
.agents-content .boost-content div.payment div{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.agents-content .boost-content div.payment div.texts{
  width:100%;
  justify-content:space-between;
}
.agents-content .boost-content div.payment div.texts span{
  color:var(--secondary_color);
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
}
.agents-content .boost-content div.payment div label{
  color: var(--gray);
  margin-bottom: 0;
}

.agents-content .boost-content h4 {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--gray_l);
  border-bottom: 1px solid var(--gray_l);
  color: black;
  font-weight: 700;
  font-size: 16px;
  line-height: 20.8px;
}

.agents-content .boost-content p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary_color);
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  border: 0;
  margin-bottom: 0;
}
.agents-content .boost-content button {
  width: 100%;
  margin: 20px 0 120px 0;
}
.agents .back {
  width: 80%;
  margin: 30px auto 0 auto;
  cursor: pointer;

}

.agents .back span {
  color: var(--secondary_color);
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;

}

.agents h1 {
  color: black;
  font-family: Inter;
  font-weight: 700;
  line-height: 59.8px;
  font-size: 52px;
  width: 80%;
  margin: 49px auto 25px auto;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--gray_l);
}


.agents-content {
  margin: 0 auto;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

@media screen and (max-width: 990px) {
  .agents-content {
      flex-wrap: wrap;
  }
}

.agents-content div.item {
  width: 300px;
  height: 287px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin: 10px 15px;
}

.agents-content div.delete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.agents-content div.delete p {
  text-align: center;
  margin-top: 10px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
}

@media screen and (width <=750px) {
  .agents-content div.item {
      width: 100%;
  }
}

.agents-content div.item div.caroussel {
  position: relative;
  border-radius: 15px;
}

.agents-content div.item div.caroussel img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
}

.agents-content div.item div.caroussel div.indicators {
  position: absolute;
  display: flex;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.505); */
  padding: 0.125rem;
  border-radius: 10px;
}

.agents-content div.item div.caroussel div.indicators span {
  display: block;
  height: 7.5px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.772);
  cursor: pointer;
  border-radius: 9999px;
  margin: auto 2px;
}

.agents-content div.item div.caroussel div.indicators span.active {
  height: 10px;
  background-color: white;
}

.agents-content div.item div.desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

.agents-content div.item div.desc div.texts p {
  margin: 0.125rem 0;
  font-family: Inter;
  font-size: 14px;
}

.agents-content div.item div.desc div.texts p:nth-child(1) {
  line-height: 21px;
  font-weight: 700;
  color: #cc6f02;
}

.agents-content div.item div.desc div.texts p:nth-child(2) {
  line-height: 18.2px;
  font-weight: 400;
}

.agents-content div.item div.desc div.texts div.icons {
  display: flex;
  justify-content: flex-start;
}

.agents-content div.item div.desc div.texts div.icons div.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.125rem 0.325rem;
}

.agents-content div.item div.desc div.texts div.icons div.icon:nth-child(1) {
  margin: 0.125rem 0.325rem 0.125rem 0;
}

.agents-content div.item div.desc div.texts div.icons div.icon img {
  border-radius: 0;
  width: 17.5px;
}

.agents-content div.item div.desc div.texts div.icons div.icon span {
  font-size: 0.825rem;
  color: black;
}

.agents-content div.item div.desc div.menu {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray_l);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
}

.agents-content div.item div.desc div.menu .values {
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 10;
  background-color: white;
  border: 1px solid var(--gray_l);
  border-radius: 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.agents-content div.item div.desc div.menu .values p {
  text-align: center;
  border-bottom: 1px solid var(--gray_l);
  color: black;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
}

.agents-content div.item div.desc button {
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.agents-content .edit-content img.edit-full {
  margin-top: 50px;
  width: 100%;
}

.agents-content .edit-content .images-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.agents-content .edit-content .images-list img {
  width: 23%;
  object-fit: cover;
  border-radius: 20px;
}

.agents-content .edit-content .images-list aside {
  width: 23%;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  background: url(../../images/agent/img4.png) center/cover no-repeat;
}

.agents-content .edit-content .images-list aside div {
  width: 100%;
  height: 100%;
  background-color: #3952737b;
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: underline;

}

.agents-content .edit-content .images-list .actions {
  position: absolute;
  bottom: 0;
  left: 48.25%;
  transform: translateX(-48.25%);
  display: flex;
}

.agents-content .edit-content .images-list .actions button:nth-child(1) {
  border: 1px solid var(--gray_l);
  margin-right: 14px;
  color: var(--error);
}
.agents-content .edit-content .images-list .actions button:nth-child(1):hover {
  background-color: var(--gray_l);
}
.agents-content .edit-content .images-list .actions button span {
  margin-right: 10px;
}

.agents-content .modal .container{
  padding-left: 0;
  padding-right: 0;
  
}
.agents-content .modal .container img.close{
  top: 15px;
  
}
.agents-content .modal .container h2{
  padding-bottom: 10px;
  
}
.agents-content .modal .container p{
  font-family: Inter;
  font-weight: 700;
  line-height: 38.4px;
  font-size: 32px;
  text-align: center;
  padding: 20px 0 ;
  border-top: 1px solid var(--gray_l);
  
}
.agents-content .modal .container form{
  width: 40%;
  margin: 0 auto;
  /* background-color: red; */
  
}
.agents-content .modal .container form .checks{
  display: flex;
  
}
.agents-content .modal .container form .checks .custom-control{
  margin-right: 30px;
}
.agents-content .modal .container form .form-group label.col-form-label{ 
  text-align: left;
  width: 100%;
  color: var(--gray);
}
.agents-content .modal .container form button{
  width: 100%;
  margin: 5px 0 15px 0;
}

.agent-listings .title {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 75px auto 25px auto;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--gray_l);
}
section.agent-listings .title h1 {
  color: black;
  font-family: Inter;
  font-weight: 700;
  line-height: 59.8px;
  font-size: 52px;
}

section.agent-listings .title  span {
  color: var(--gray_d);
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
  margin-right: 20px;
}

section.agent-listings .title img {
  width: 61px;
  aspect-ratio: 1;
  cursor: pointer;
}

section.listings {
  width: 85%;
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 1150px) {
  section.listings {
      height: auto;
  }
}

section.listings .title {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 75px auto 25px auto;
  background-color: orange;
  border-bottom: 1px solid var(--gray_l);
}


section.listings div.items {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  /* background-color: red; */
}

section.listings div.items div.item {
  width: 300px;
  height: 287px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin: 10px 15px ;
}
section.listings div.items div.delete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.listings div.items div.delete p {
  text-align: center;
  margin-top: 10px;
  font-family: Inter;
  font-weight: 400;
  line-height: 18.2px;
  font-size: 14px;
}
@media screen and (width <=750px) {
  section.listings div.items div.item {
      width: 100%;
  }
}

section.listings div.items div.item div.caroussel {
  position: relative;
  border-radius: 15px;
}

section.listings div.items div.item div.caroussel img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
}

section.listings div.items div.item div.caroussel div.indicators {
  position: absolute;
  display: flex;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.505); */
  padding: 0.125rem;
  border-radius: 10px;
}

section.listings div.items div.item div.caroussel div.indicators span {
  display: block;
  height: 7.5px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.772);
  cursor: pointer;
  border-radius: 9999px;
  margin: auto 2px;
}

section.listings div.items div.item div.caroussel div.indicators span.active {
  height: 10px;
  background-color: white;
}

section.listings div.items div.item div.desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

section.listings div.items div.item div.desc div.texts p {
  margin: 0.125rem 0;
  font-family: Inter;
  font-size: 14px;
}

section.listings div.items div.item div.desc div.texts p:nth-child(1) {
  line-height: 21px;
  font-weight: 700;
  color: #cc6f02;
}

section.listings div.items div.item div.desc div.texts p:nth-child(2) {
  line-height: 18.2px;
  font-weight: 400;
}

section.listings div.items div.item div.desc div.texts div.icons {
  display: flex;
  justify-content: flex-start;
}

section.listings div.items div.item div.desc div.texts div.icons div.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.125rem 0.325rem;
}

section.listings div.items div.item div.desc div.texts div.icons div.icon:nth-child(1) {
  margin: 0.125rem 0.325rem 0.125rem 0;
}

section.listings div.items div.item div.desc div.texts div.icons div.icon img {
  border-radius: 0;
  width: 17.5px;
}

section.listings div.items div.item div.desc div.texts div.icons div.icon span {
  font-size: 0.825rem;
  color: black;
}

section.listings div.items div.item div.desc div.menu {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray_l);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
}
section.listings div.items div.item div.desc div.menu .values{
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 10;
  background-color: white;
  border: 1px solid var(--gray_l);
  border-radius: 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  display: none;
}
section.listings div.items div.item div.desc div.menu .values p {
  text-align: center;
  border-bottom: 1px solid var(--gray_l);
  color: black;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
}

section.listings div.items div.item div.desc button {
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

section.listings button.show-all {
  margin-top: 1rem;
}
.agent-post {
  width: 75%;
  margin: 100px auto 120px auto;
}
.agent-post h1{
  font-family: Inter;
  font-weight: 700;
  font-size: 52px;
  line-height: 59.8px;
  color: black;
  margin-bottom: 30px;

}
.agent-post aside{
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--gray_l);
}
.agent-post aside h2{
  padding-top: 30px;
}
.agent-post aside .content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.agent-post aside div .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.agent-post aside div .form-group .textarea{
  width: 100%;
}
.agent-post aside div .form-group span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: calc(0.375rem + 1px);
  padding-left: 0;
}
.agent-post aside div .form-group span label{
  margin-bottom: 0;
  margin-left: 5px;
}
.agent-post aside div .form-group label {
  padding-left: 0;
  color: var(--gray);
}
.agent-post aside div .form-group .form-control {
  height: auto;
}
.agent-post aside div .form-group .form-control option {
  color: #000;
}
.agent-post aside.offer .map p {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  color: var(--gray);
  margin: 10px 0;
}

.agent-post aside.images .content div p,.agent-post aside.facilities p{
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  color: var(--gray);
}
.agent-post aside.images .content div button{
  width: 100%;
  margin: 20px 0 10px 0;
}
.agent-post aside.images .content div .image-container {
  display: flex;
  gap: 20px;
}
.agent-post aside.images .content div .image-container div{
  width: 113px;
  height: 113px;
  position:relative;
}
.agent-post aside.images .content div .image-container div:nth-child(1){
  background: url(../../images/agent/img5.png) center/cover no-repeat;
}
.agent-post aside.images .content div .image-container div:nth-child(2){
  background: url(../../images/agent/img6.png) center/cover no-repeat;
}
.agent-post aside.images .content div .image-container div:nth-child(3){
  background: url(../../images/agent/img7.png) center/cover no-repeat;
}
.agent-post aside.images .content div .image-container div img{
  position:absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.agent-post aside.facilities .form-group{
  display: flex;
  flex-wrap: wrap;
  /* gap: 30px; */
  /* width: 100%; */
}
.agent-post aside.facilities .form-group .custom-checkbox{
  margin-right: 30px;
}
.agents-content .stats-content {
  width: calc(100% - 426px);
  /* background-color: red; */
}

@media screen and (max-width: 990px) {
  .agents-content .stats-content  {
      width: 100%;
  }
}
.agents-content .stats-content div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray_l);
}

.agents-content .stats-content h2 {
  width: 100%;
  padding: 10px 0 20px;
  border-bottom: 1px solid var(--gray_l);
  color: black;
  font-weight: 700;
  font-size: 28px;
  line-height: 33.6px;
}

.agents-content .stats-content div span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
}

.agents-content .stats-content div span img {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  margin-left: 10px;
}

.user-account section.setting-bar {
  width: calc(100% - 690px);
  /* 150px margin */
  margin: 2rem auto;
  text-align: left;
  /* background-color: green; */
}

.user-account section.setting-bar h1 {
  width: 100%;
  margin: 0 auto 15px auto;
  text-align: left;
  padding: 25px 0;
  font-family: Inter;
  font-weight: 700;
  line-height: 59.8px;
  font-size: 52px;
  color: black;
}

.user-account section.setting-bar ul {
  width: 100%;
  padding-left: 0;
}

.user-account section.setting-bar ul a {
    color: inherit;
}

.user-account section.setting-bar ul a.active {
  color: var(--secondary_color);
}

.user-account section.setting-bar ul li {
  width: 100%;
  text-align: left;
  padding: 30px 0 !important;
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  font-size: 20px;
  border-top: 1px solid var(--gray_l);
}

.user-account section.setting-bar ul li:last-child {
  border-bottom: 1px solid var(--gray_l);
}

@media screen and (max-width: 990px) {
  .user-account section.setting-bar {
      width: 90%;
      margin: 10px auto;
  }

  .user-account section.setting-bar h1 {
      margin-left: 0;
      margin-right: 0;
  }
}

/************/
/* OVERRIDES */
main > header.header {
  /* overflow: hidden; */
}
.header > .header-content .header-logo.larger-h {
  height: 40px;
}
@media screen and (min-width: 992px) {
  .header[data-type="2"] > .header-content .content-left {
    max-width: calc(70% - 32px);
  }
}
.header-content .header-navbar .navbar-more .more-label{
  min-width: 58px;
}

.select2.select2-container .select2-selection{
  border: solid 1px #e6e7ea !important;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #9ea2ae !important;

}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 50%;
  translate: 0 -50%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #e6e7ea transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  color: #9ea2ae;
}
/**********/