/* [project]/app/photographer/[slug]/components/PhotographerHeader/PhotographerHeader.module.css [app-client] (css) */
.PhotographerHeader-module__b-4qFa__photographerHeader {
  height: 315px;
  font-family: var(--font-dm-sans);
  background-color: #fafafa;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 25px 50px;
  display: flex;
}

.PhotographerHeader-module__b-4qFa__photographerHeader > div {
  flex-direction: column;
  justify-content: center;
  width: 33%;
  display: flex;
}

.PhotographerHeader-module__b-4qFa__photographerPresentation {
  gap: 20px;
  height: 100%;
  align-items: flex-start !important;
}

.PhotographerHeader-module__b-4qFa__photographerName {
  color: #d3573c;
  margin: 0;
  font-size: 64px;
  font-weight: normal;
}

.PhotographerHeader-module__b-4qFa__photographerLocation {
  color: #901c1c;
  margin: 0;
  font-size: 36px;
  font-weight: normal;
}

.PhotographerHeader-module__b-4qFa__photographerTagline {
  color: #525252;
  margin: 0;
  font-size: 24px;
}

.PhotographerHeader-module__b-4qFa__contactButton {
  color: #fff;
  width: 200px;
  font-size: 24px;
  font-family: var(--font-dm-sans);
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 5px;
  padding: 20px 10px;
}

.PhotographerHeader-module__b-4qFa__contactButtonWrapper {
  align-items: center !important;
}

.PhotographerHeader-module__b-4qFa__photographerPortrait {
  object-fit: cover;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.PhotographerHeader-module__b-4qFa__portraitWrapper {
  align-items: flex-end !important;
}

/* [project]/app/photographer/[slug]/components/ContactForm/ContactForm.module.css [app-client] (css) */
.ContactForm-module__AGd1Rq__modalWrapper {
  z-index: 50;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  animation: .15s ease-in-out ContactForm-module__AGd1Rq__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
  width: 100vw !important;
}

.ContactForm-module__AGd1Rq__modal {
  color: #000;
  background-color: #db8876;
  border-radius: 8px;
  width: 40%;
  padding: 30px;
  position: relative;
  box-shadow: 0 4px 20px #0000004d;
}

.ContactForm-module__AGd1Rq__close {
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 25px;
  right: 25px;
}

.ContactForm-module__AGd1Rq__contactTitle {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
}

.ContactForm-module__AGd1Rq__form {
  flex-direction: column;
  gap: 3px;
  margin-top: 15px;
  display: flex;
}

.ContactForm-module__AGd1Rq__form label {
  color: #312e2e;
  font-size: 32px;
  font-weight: 400;
}

.ContactForm-module__AGd1Rq__form input, .ContactForm-module__AGd1Rq__form textarea {
  color: #312e2e;
  border: none;
  border-radius: 4px;
  min-height: 30px;
  padding: 10px;
  font-size: 28px;
  font-weight: 400;
}

.ContactForm-module__AGd1Rq__submitButton {
  color: #fff;
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 10px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
}

.ContactForm-module__AGd1Rq__submitButton:hover {
  background-color: #b02020;
}

@keyframes ContactForm-module__AGd1Rq__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* [project]/app/photographer/[slug]/components/PhotographerMedias/PhotographerMedias.module.css [app-client] (css) */
.PhotographerMedias-module__wDPCaG__tags {
  font-size: 20px;
  font-family: var(--font-dm-sans);
  font-weight: 700;
}

.PhotographerMedias-module__wDPCaG__tagsSelect {
  cursor: pointer;
  color: #fff;
  background-color: #901c1c;
  border: none;
  margin-left: 15px;
  padding: 10px;
  font-size: 18px;
}

.PhotographerMedias-module__wDPCaG__tagsSelect option {
  background-color: #901c1c;
  position: absolute;
}

.PhotographerMedias-module__wDPCaG__mediasGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 100px;
  margin-top: 60px;
  display: grid;
}

.PhotographerMedias-module__wDPCaG__mediaPicture {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 500px;
}

.PhotographerMedias-module__wDPCaG__mediaContent {
  color: #901c1c;
  width: 100%;
  height: 50px;
  font-family: var(--font-dm-sans);
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  display: flex;
}

.PhotographerMedias-module__wDPCaG__mediaContent p {
  margin: 0;
  padding: 0;
}

.PhotographerMedias-module__wDPCaG__mediaLikes {
  background-color: #0000;
  border: none;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.PhotographerMedias-module__wDPCaG__liked {
  color: #901c1c;
}

.PhotographerMedias-module__wDPCaG__heartIcon {
  width: 22.5px;
  height: 22.5px;
}

/* [project]/app/photographer/[slug]/components/DropdownTags/DropdownTags.module.css [app-client] (css) */
.DropdownTags-module__nR2y7q__label {
  font-family: var(--font-dm-sans);
  margin-right: 30px;
  font-size: 22px;
  font-weight: 700;
}

.DropdownTags-module__nR2y7q__dropdown {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.DropdownTags-module__nR2y7q__selected {
  font-family: var(--font-dm-sans);
  color: #fff;
  cursor: pointer;
  background-color: #901c1c;
  border: none;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  padding: 12.5px 18px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color .2s;
  display: flex;
}

.DropdownTags-module__nR2y7q__icon {
  z-index: 3;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: transform .3s;
  display: flex;
}

.DropdownTags-module__nR2y7q__icon.DropdownTags-module__nR2y7q__open {
  transform: rotate(180deg);
}

.DropdownTags-module__nR2y7q__menu {
  z-index: 2;
  background-color: #901c1c;
  border-radius: 5px;
  width: 100%;
  padding: 0;
  list-style: none;
  animation: .15s ease-in-out DropdownTags-module__nR2y7q__fadeIn;
  position: absolute;
  top: -35%;
  left: 0%;
}

.DropdownTags-module__nR2y7q__menu li {
  color: #fff;
  cursor: pointer;
  border-bottom: 1.5px solid #fff;
  width: 80%;
  margin: 0 auto;
  padding: 12.5px 0;
}

.DropdownTags-module__nR2y7q__menu li:last-child {
  border-bottom: none;
}

@keyframes DropdownTags-module__nR2y7q__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* [project]/app/photographer/[slug]/components/BottomAside/BottomAside.module.css [app-client] (css) */
.BottomAside-module___9N0Ua__sideInfos {
  color: #000;
  width: 330px;
  height: 80px;
  font-family: var(--font-dm-sans);
  background-color: #db8876;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  position: fixed;
  bottom: -5px;
  right: 50px;
}

.BottomAside-module___9N0Ua__mediaLikes {
  background-color: #0000;
  border: none;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
}

.BottomAside-module___9N0Ua__heartIcon {
  width: 22.5px;
  height: 22.5px;
}

/* [project]/app/photographer/[slug]/components/MediaModal/MediaModal.module.css [app-client] (css) */
.MediaModal-module__3_7R8G__overlay {
  z-index: 100;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  animation: .15s ease-in-out MediaModal-module__3_7R8G__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.MediaModal-module__3_7R8G__modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  max-height: 90%;
  display: flex;
  position: relative;
}

.MediaModal-module__3_7R8G__media {
  object-fit: contain;
  border-radius: 5px;
  max-width: 100%;
  max-height: 80vh;
}

.MediaModal-module__3_7R8G__title {
  font-size: 26px;
  font-family: var(--font-dm-sans);
  color: #901c1c;
  align-self: flex-start;
  margin-top: 10px;
  font-weight: 400;
}

.MediaModal-module__3_7R8G__close {
  cursor: pointer;
  width: 80px;
  height: 40px;
  position: absolute;
  top: 0;
  right: -80px;
}

.MediaModal-module__3_7R8G__chevron {
  cursor: pointer;
  width: 80px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.MediaModal-module__3_7R8G__chevron.MediaModal-module__3_7R8G__left {
  left: -80px;
}

.MediaModal-module__3_7R8G__chevron.MediaModal-module__3_7R8G__right {
  right: -80px;
}

@keyframes MediaModal-module__3_7R8G__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=app_photographer_%5Bslug%5D_components_9eab331a._.css.map*/