:root {
  --radius: 0.4rem;
  --radiusBig: 24px;
  --colorBorder: #e6e7eb;
  --colorGray: #949494;
  --colorMain: #0EA867;
  --colorMainDark: #03725a;
  --colorMainBright: #f0f5f4;
  --paddingDialog: 2.5rem;
  --fontSize: 12px;
  --fontFamilyHeader: "Montserrat", sans-serif;
  --transitionTime: 0.3s;
}

main#main-agent-list {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f0f5f4;
}

.agent-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
#mobile .agent-list {
  grid-template-columns: repeat(1, 1fr);
}
.agent-list .agent-list-item {
  position: relative;
  padding: 2rem;
  display: grid;
  gap: 1rem 2rem;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  grid-template-columns: auto 1fr;
}
.agent-list .agent-list-item .img {
  grid-row: 1/2;
  grid-column: 1/2;
}
.agent-list .agent-list-item .img img {
  width: 8rem;
  border-radius: 5rem;
  line-height: 1;
}
.agent-list .agent-list-item .img .offers {
  padding: 0.75em;
  line-height: 1em;
  color: #0EA867;
  background: #f0f5f4;
  margin: 0.5rem auto 0 auto;
  border-radius: 0.4rem;
  display: table;
}
.agent-list .agent-list-item .data {
  grid-row: 1/2;
  grid-column: 2/3;
}
.agent-list .agent-list-item .data .name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.agent-list .agent-list-item .data .title {
  color: #9a9a9a;
  line-height: 1.3em;
}
.agent-list .agent-list-item .data .phone {
  font-size: 1.1rem;
  opacity: 0.8;
}
.agent-list .agent-list-item .data .email {
  font-size: 1.1rem;
  opacity: 0.8;
}
.agent-list .agent-list-item .data .languages {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-top: 1rem;
  align-items: center;
  line-height: 1em;
}
.agent-list .agent-list-item .data .languages span {
  text-transform: uppercase;
  font-size: 0.8rem;
  width: 100%;
  font-weight: 600;
  color: #9a9a9a;
}
.agent-list .agent-list-item .data .languages img {
  position: relative;
  z-index: 5;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: cover;
  border-radius: 1rem;
}
.agent-list .agent-list-item .agency {
  border-top: 1px dotted #e6e7eb;
  padding-top: 1rem;
  grid-column: span 2;
  display: grid;
  grid-column-gap: 1rem;
  grid-template-columns: auto 1fr;
  margin-top: 1rem;
  line-height: 1.3em;
}
.agent-list .agent-list-item .agency .name {
  font-weight: 600;
  grid-column: 2/3;
  align-self: flex-end;
}
.agent-list .agent-list-item .agency .address {
  font-size: 0.9rem;
  grid-column: 2/3;
}
.agent-list .agent-list-item .agency img {
  background: #fafafa;
  width: 48px;
  border-radius: 3rem;
  grid-column: 1/2;
  grid-row: span 2;
}
.agent-list .agent-list-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.agent-list .agent-list-item .verified {
  line-height: 1em;
  padding: 0.5rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  white-space: nowrap;
  color: #0966ff;
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 3rem;
  font-size: 1rem;
}
.agent-list .agent-list-item .verified:before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: #0966ff;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  opacity: 0.075;
}
.agent-list .agent-list-item .verified .icon {
  color: inherit !important;
  font-variation-settings: "FILL" 1 !important;
  cursor: default;
}

#agency-profile-top {
  display: grid;
  grid-template-columns: 16rem 1fr auto auto;
  grid-template-rows: repeat(5, auto) 1fr;
  padding-bottom: 2rem;
  position: relative;
  z-index: 5;
}

#agent-profile-wallpaper {
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  grid-column: 1/4;
  grid-row: 1/2;
}

#agent-profile-company {
  grid-column: 4/5;
  grid-row: 1/2;
  text-align: center;
  flex: 2;
  padding: 0rem;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 250px;
  margin-left: 2rem;
}
#agent-profile-company .rating {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  line-height: 1rem;
  color: #9a9a9a;
  padding-top: 0.5rem;
}
#mobile #agent-profile-company .rating {
  justify-content: flex-start;
}
#agent-profile-company .logo {
  margin-bottom: 1rem;
}
#agent-profile-company .logo > img {
  border-radius: 100%;
  aspect-ratio: 1/1;
  width: 10rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#mobile #agent-profile-company .logo > img {
  width: 6rem;
}
#agent-profile-company .name {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}
#mobile #agent-profile-company .name {
  font-size: 1.2rem;
}
#agent-profile-company .google-links {
  display: flex;
  padding-top: 0.5rem;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}
#mobile #agent-profile-company .google-links {
  justify-content: flex-start;
}
#agent-profile-company .google-links .icon {
  font-size: 1.2rem;
}
#agent-profile-company .google-links a {
  gap: 0.25rem;
  padding: 1rem;
  line-height: 1;
}
#mobile #agent-profile-company .google-links a {
  flex: 1;
}
#agent-profile-company .strong {
  font-weight: 600;
}

#agent-profile-avatar {
  grid-column: 1/2;
  grid-row: 2/4;
  position: relative;
  width: 12em;
  margin: -6rem 2rem 0 2rem;
  z-index: 5 !important;
}
#agent-profile-avatar img {
  width: 12rem;
  aspect-ratio: 1/1;
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.5);
  border: 0.25rem solid #fff;
  border-radius: 100rem;
}
#agent-profile-avatar .qr {
  font-size: 3rem;
  background: #fff;
  color: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  z-index: 5;
  padding: 0.25rem;
  position: absolute;
  top: 8.25rem;
  right: 0.25rem;
}

#agent-profile-name {
  margin-top: 2rem;
  line-height: 1em !important;
  grid-column: 2/3;
  grid-row: 2/3;
}

#agent-profile-title {
  grid-column: 2/3;
  grid-row: 3/4;
  padding-top: 0rem;
  color: #9a9a9a;
  font-size: 1.1rem;
  padding-top: 0.2rem;
}
#agent-profile-title a:hover {
  color: #222;
}

#agent-profile-languages {
  grid-column: 2/4;
  grid-row: 4/5;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: left;
  text-transform: lowercase;
  margin-top: 0.5rem;
}
#agent-profile-languages:empty {
  display: none;
}
#agent-profile-languages div {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border: 1px solid #f2f2f2;
  border-radius: 2rem;
}
#agent-profile-languages img {
  height: 1.4rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 1rem;
}

#agent-profile-contact {
  grid-column: 3/4;
  grid-row: 2/4;
  overflow: hidden;
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-left: 2rem;
  justify-content: flex-end;
}

#agent-profile-socialmedia {
  grid-column: 4/5;
  grid-row: 2/5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: center;
  margin: 2rem 0 0 2rem;
}
#agent-profile-socialmedia > * {
  border-radius: 10rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#agent-profile-socialmedia > * > img {
  height: 40%;
}
#agent-profile-socialmedia .btn-fb:before {
  background: rgb(9, 102, 255);
  color: #fff;
}
#agent-profile-socialmedia .btn-ig:before {
  background: url(images/bg-ig.png);
  background-size: cover;
}
#agent-profile-socialmedia .btn-yt:before {
  background: rgb(255, 0, 52);
}
#agent-profile-socialmedia .btn-tt:before {
  background: rgb(254, 44, 85);
}
#agent-profile-socialmedia .btn-li:before {
  background: rgb(9, 102, 194);
}

#mobile #agency-profile-top {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  grid-template-rows: repeat(7, auto);
  padding: 0;
}
#mobile #agency-profile-top #agent-wallpaper {
  grid-column: 1/3;
  border-radius: 0;
  margin: 0;
  max-width: unset;
  width: 100%;
}
#mobile #agency-profile-top #agent-profile-avatar {
  grid-column: 1/2;
  grid-row: 2/5;
  margin-left: 1.5rem;
  margin-top: -4.5rem;
  width: 9rem;
}
#mobile #agency-profile-top #agent-profile-avatar img {
  width: 9rem;
}
#mobile #agency-profile-top #agent-profile-avatar .qr {
  width: 3rem;
  height: 3rem;
  font-size: 2.4rem;
  top: 6rem;
  right: 0;
}
#mobile #agency-profile-top #agent-profile-name {
  grid-column: 2/3;
  grid-row: 3/4;
  margin-top: 1.5rem;
  font-size: 1.6rem;
  margin-right: 1.5rem;
}
#mobile #agency-profile-top #agent-profile-title {
  grid-column: 2/3;
  grid-row: 4/5;
  line-height: 1.2em;
  margin-right: 1.5rem;
}
#mobile #agency-profile-top #agent-profile-title span {
  display: block;
}
#mobile #agency-profile-top #agent-profile-contact {
  grid-column: 2/3;
  grid-row: 5/6;
  margin: 1rem 0 1rem 0;
  margin-right: 1.5rem;
  justify-content: flex-start;
}
#mobile #agency-profile-top #agent-profile-socialmedia {
  grid-column: 1/2;
  grid-row: 5/6;
  gap: 0.25rem;
  margin: 1rem 1rem 0 1.5rem;
  flex-wrap: wrap;
}
#mobile #agency-profile-top #agent-profile-socialmedia > * {
  width: 2.6rem;
  height: 2.6rem;
}
#mobile #agency-profile-top #agent-profile-languages {
  grid-column: 2/3;
  grid-row: 6/7;
  margin: -0.5rem 0 1rem 0;
  line-height: 1em;
}
#mobile #agency-profile-top #agent-profile-languages div {
  border-radius: 0.75rem;
}
#mobile #agency-profile-top #agent-profile-company {
  grid-row: 7/8;
  grid-column: 1/3;
  border-top: 1px solid #e6e7eb;
  text-align: left;
  padding: 2rem 1.5rem;
  justify-content: flex-start;
  width: auto;
  margin: 1rem 0 0 0;
}
#mobile #agency-profile-top #agent-profile-company > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
}

#agent-offer-filters {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
#mobile #agent-offer-filters {
  display: none;
}
#agent-offer-filters > div {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#agent-offer-filters div:has(> .checkbox) {
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
  font-weight: 600;
  display: flex;
  overflow: hidden;
}
#agent-offer-filters label {
  width: auto;
  padding: 1rem;
}
#agent-offer-filters label:not(.checkbox) {
  display: relative;
  width: 10em;
  min-width: 6rem;
  padding: 0;
}
#agent-offer-filters label:has(> input[name=title]) {
  position: relative;
}
#agent-offer-filters label:has(> input[name=title]):before {
  content: "search";
  font-family: "Material Symbols Rounded";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.25rem;
  color: #9a9a9a;
}
#agent-offer-filters input[type=text], #agent-offer-filters select {
  padding: 1rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
#agent-offer-filters input[name=title] {
  padding-left: 3rem;
}
#agent-offer-filters .checkbox {
  position: relative;
  overflow: hidden;
  color: #9a9a9a;
}
#agent-offer-filters .checkbox:has(> input:checked) {
  color: #fff;
  background: #0EA867;
}
#agent-offer-filters .checkbox input[type=checkbox] {
  width: 0 !important;
  height: 0 !important;
  position: fixed !important;
  bottom: 100% !important;
  top: 100% !important;
  opacity: 0;
}

#agent-profile-content {
  background: #f0f5f4;
}
#agent-profile-content > div {
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 4rem;
  position: relative;
}
#mobile #agent-profile-content > div {
  flex-direction: column;
  padding: 1.5rem;
  gap: 2rem;
}
#agent-profile-content .offers {
  flex: 6;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#mobile #agent-profile-content .offers {
  padding: 0;
}
#agent-profile-content .offers .h2 + div {
  color: #9a9a9a;
}
#agent-profile-content .map {
  height: 100vh;
  flex: 4;
  position: sticky;
  top: 0;
  padding: 2rem 0;
  margin: 0;
}
#mobile #agent-profile-content .map {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1.5;
  position: static;
  margin-bottom: -2rem;
}
#agent-profile-content #map {
  height: 100%;
  width: 100%;
  border-radius: 24px;
}
#agent-profile-content #agent-profile-offer-list {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
#agent-profile-content #agent-profile-offer-list:has(> .commentBox) {
  grid-template-columns: repeat(1, 1fr);
}
#mobile #agent-profile-content #agent-profile-offer-list {
  grid-template-columns: repeat(1, 1fr);
}
#agent-profile-content .offer-agent-item {
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  position: relative;
}
#agent-profile-content .offer-agent-item .img {
  max-width: 100%;
  aspect-ratio: 10/9;
  position: relative;
  border-radius: 24px;
  border: 3px solid #fff;
}
#agent-profile-content .offer-agent-item .img .spec {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}
#agent-profile-content .offer-agent-item .img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#agent-profile-content .offer-agent-item .offer-images-no {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.75rem 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.1em;
  line-height: 1;
  gap: 0.4em;
  border-radius: 0.4rem;
  color: #fff;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
#agent-profile-content .offer-agent-item .footer {
  padding: 1.5rem;
  margin-top: -3px;
}
#agent-profile-content .offer-agent-item {
  /*
  .type {
    color: #fff; border-radius: $radius; border-top-right-radius: 0; font-weight: 600; font-family: $fontFamilyHeader; position: absolute; top: 0rem; left: 0rem; line-height: 1em; padding: 1rem 0.75em; background: $colorMain;
    &:after { display: block; content: ''; clip-path: polygon(0 0,0 100%,100% 0); background: $colorMain; position: absolute; top: 100%; left: 0; width: 1.5rem; height: 1.5rem; margin-top: -0.75rem; }
  }
  */
}
#agent-profile-content .offer-agent-item .type {
  color: #fff;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 0.9rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1em;
  padding: 0.9em;
  background: #0EA867;
}
#agent-profile-content .offer-agent-item .title {
  font-weight: 700;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
}
#agent-profile-content .offer-agent-item .date {
  color: #9a9a9a;
}
#agent-profile-content .offer-agent-item .address {
  color: #9a9a9a;
  padding-top: 0.25rem;
}
#agent-profile-content .offer-agent-item .info-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 5rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-end;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
#agent-profile-content .offer-agent-item .info-3 > div {
  display: flex;
  flex-direction: column;
  text-align: left;
}
#agent-profile-content .offer-agent-item .info-3 span {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
#agent-profile-content .offer-agent-item .info-3 .price {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #0EA867;
  padding: 1em 1.4em;
  border-radius: 0.4rem;
  position: relative;
  bottom: -0.5rem;
  right: -0.5rem;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
#agent-profile-content .offer-agent-item .info-3 .price span.price {
  font-size: 3rem;
  line-height: 1em;
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif;
}
#agent-profile-content .offer-agent-item .info-3 .price span.price_2 {
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 600 !important;
  text-align: right;
}
#agent-profile-content .offer-agent-item .tools {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}
#agent-profile-content .offer-agent-item .tools > .btn-basic {
  color: #9a9a9a;
  height: auto;
}
#agent-profile-content .offer-agent-item .tools > .btn-basic:hover {
  color: #222;
}
#agent-profile-content .offer-agent-item .tools .price {
  flex: 1;
  text-align: right;
}
#agent-profile-content .offer-agent-item .tools .price > *:nth-child(1) {
  font-weight: 800;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

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