.contact-form {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contact-form {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.contact-form .cmp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.contact-form .cmp-contact-form__title {
  font-size: 40px;
  line-height: 48px;
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #333f48;
  hyphens: auto;
  word-break: auto-phrase;
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form__title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1600px) {
  .contact-form .cmp-contact-form__title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form__title {
    hyphens: none;
    word-break: normal;
  }
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form__text-block {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form__text-block {
    width: 41%;
  }
}
.contact-form .cmp-contact-form__image-block {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form__image-block {
    width: 50%;
  }
}
.contact-form .cmp-contact-form__image-block img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  max-height: 228px;
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form__image-block img {
    max-height: 430px;
  }
}
.contact-form .cmp-contact-form__richtext {
  margin-top: 40px;
}

.contact-form .logged p {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  margin-top: 16px;
  margin-bottom: 48px;
}

.contact-form .not-logged p {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  margin-bottom: 16px;
  margin-top: 16px;
}
.contact-form .not-logged .link {
  all: unset;
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  /* 133.333% */
  text-transform: uppercase;
  color: #d52b1e;
  cursor: pointer;
  text-wrap: balance;
  text-wrap: pretty;
}
@media (min-width: 1024px) {
  .contact-form .not-logged .link {
    font-size: 24px;
    line-height: 28px;
    /* 125% */
  }
}
@media (min-width: 1600px) {
  .contact-form .not-logged .link {
    font-size: 24px;
    line-height: 32px;
    /* 125% */
  }
}
.contact-form .not-logged .link:after {
  display: inline-block;
  font-family: "icomoon" !important;
  content: "\e902";
  font-weight: 400;
  position: relative;
  top: 1px;
  font-size: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}
.contact-form .not-logged .link:hover {
  color: #bc131c;
}
.contact-form .not-logged .link:hover:after {
  transform: rotate(45deg);
}

.contact-form .cmp-contact-form .container_modal {
  display: none;
  place-items: center;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4);
}
.contact-form .cmp-contact-form .container_modal--active {
  display: grid;
}
.contact-form .cmp-contact-form .container_modal.edit-mode {
  height: 100%;
}
.contact-form .cmp-contact-form .container_modal .container__box {
  background-color: #ffffff;
  padding: 16px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  align-content: center;
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form .container_modal .container__box {
    padding: 24px 48px 48px 48px;
    max-width: 705px;
    height: auto;
  }
}
.contact-form .cmp-contact-form .container_modal .container__close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
}
.contact-form .cmp-contact-form .container_modal .container__close-icon .icon--close {
  font-size: 32px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form .container_modal .container__close-icon {
    position: relative;
    top: -7px;
    right: -31px;
  }
}
.contact-form .cmp-contact-form .container_modal .container__icon {
  text-align: center;
  margin-top: 24px;
}
.contact-form .cmp-contact-form .container_modal .container__icon__send {
  width: 56px;
  height: 56px;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 56px;
  background-color: #008458;
}
.contact-form .cmp-contact-form .container_modal .container__icon__send i {
  color: #ffffff;
  font-size: 24px;
  text-align: center;
}
.contact-form .cmp-contact-form .container_modal .container__title {
  color: #333f48;
  text-align: center;
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  /* 133.333% */
  margin: 8px 0;
  width: 80%;
}
@media (min-width: 1024px) {
  .contact-form .cmp-contact-form .container_modal .container__title {
    font-size: 24px;
    line-height: 28px;
    /* 125% */
  }
}
@media (min-width: 1600px) {
  .contact-form .cmp-contact-form .container_modal .container__title {
    font-size: 24px;
    line-height: 32px;
    /* 125% */
  }
}
.contact-form .cmp-contact-form .container_modal .container__text {
  color: #333f48;
  text-align: center;
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  margin: 0;
}
.contact-form .cmp-contact-form .container_modal .container__buttons {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form .container_modal .container__buttons {
    flex-flow: row;
  }
}
.contact-form .cmp-contact-form .container_modal .container__buttons .button {
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form .cmp-contact-form .container_modal .container__buttons .button {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .contact-form .cmp-contact-form .container_modal .container__box {
    padding: 40px 16px;
  }
  .contact-form .cmp-contact-form .container_modal .container__title {
    width: 100%;
  }
  .contact-form .cmp-contact-form .container_modal .container__icon {
    margin-bottom: 24px;
  }
  .contact-form .cmp-contact-form .container_modal .container__text {
    font-size: 16px;
    line-height: 24px;
    /* 150% */
    font-family: 'N27 Regular';
    font-weight: 400;
    font-style: normal;
  }
  .contact-form .cmp-contact-form .container_modal .container__buttons {
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    /* 144.444% */
    font-family: 'N27 Bold';
    font-weight: 700;
    font-style: normal;
  }
}

.web-to-case label {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
  margin-bottom: 8px;
  display: block;
}
.web-to-case input[name="subject"],
.web-to-case textarea[name="description"] {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
  border: 1px solid #c3c1c2;
  border-radius: 4px;
  background: #ffffff;
  text-overflow: ellipsis;
  display: flex;
  width: 100%;
  padding: 16px 20px;
  flex-direction: column;
  align-items: flex-start;
}
.web-to-case textarea[name="description"] {
  margin: 24px 0;
  gap: 8px;
  resize: vertical;
  min-height: 135px;
  /* Firefox */
  scrollbar-width: auto;
  -ms-overflow-style: auto;
  /* IE and Edge */
  -webkit-overflow-scrolling: touch;
  /* Suaviza el scroll en iOS */
  overflow-x: auto;
  /* Asegura que la barra de desplazamiento aparezca */
  /* Chrome, Edge, and Safari */
}
.web-to-case textarea[name="description"]::-webkit-scrollbar {
  width: 12px;
}
.web-to-case textarea[name="description"]::-webkit-scrollbar-track {
  background: #fff;
}
.web-to-case textarea[name="description"]::-webkit-scrollbar-thumb {
  background-color: #C3C1C2;
  border-radius: 10px;
  border: 3px solid #fff;
}
.web-to-case textarea[name="description"]::-webkit-scrollbar-thumb:hover {
  cursor: grab;
}
.web-to-case textarea[name="description"]::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.web-to-case .current-max {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: flex-end;
  padding-right: 14px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 24px !important;
}
.web-to-case input[name="submit"] {
  margin-top: 40px;
  width: 100%;
}
.web-to-case select {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
  position: relative;
  border: 1px solid #c3c1c2;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  width: 100%;
  padding: 16px 20px;
  flex-direction: column;
  align-items: flex-start;
}
.web-to-case .hideElement {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden !important;
  border: none;
}
.web-to-case .input-wrap-select .container-form__input-text {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  border: 1px solid #c3c1c2;
  border-radius: 4px;
  padding: 16px 20px;
  color: #646468;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}
.web-to-case .input-wrap-select .select-list {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
}
.web-to-case .input-wrap-select .select-icon {
  bottom: 18px;
  right: 18px !important;
  top: unset !important;
}
.web-to-case .input-wrap-select .active {
  display: block;
}

