.country-region-v2 {
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .country-region-v2 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .country-region-v2 {
    margin-top: 72px;
  }
}
.country-region-v2 .container-general {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .country-region-v2 .container-general {
    flex-direction: row;
    gap: 0;
  }
}
.country-region-v2 .container__img {
  width: 100%;
  max-height: 333px;
  position: relative;
  z-index: -1;
  top: 0;
}
@media (min-width: 768px) {
  .country-region-v2 .container__img {
    width: 48%;
    height: 100%;
    max-height: unset;
    position: absolute;
  }
}
.country-region-v2 .container__img .diagonal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.country-region-v2 .container__text {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .country-region-v2 .container__text {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 768px) {
  .country-region-v2 .container__text {
    width: 100%;
  }
}
.country-region-v2 .container__title {
  position: relative;
  color: #333f48;
  text-align: left;
  display: flex;
  gap: 24px;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .country-region-v2 .container__title {
    width: 50%;
    gap: 32px;
  }
}
.country-region-v2 .container__title .title {
  font-size: 32px;
  line-height: 40px;
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  hyphens: auto;
  word-break: auto-phrase;
  /* white-space: normal;
            word-wrap: break-word; */
}
@media (min-width: 1024px) {
  .country-region-v2 .container__title .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1600px) {
  .country-region-v2 .container__title .title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 768px) {
  .country-region-v2 .container__title .title {
    hyphens: none;
    word-break: normal;
  }
}
.country-region-v2 .container__title .info {
  font-size: 20px;
  line-height: 28px;
  /* 140% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
}

.country-region-v2 .search-wrapper {
  position: relative;
}
.country-region-v2 .search-form {
  display: flex;
  align-items: center;
}
.country-region-v2 .search-form .icon {
  font-size: 20px;
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  color: #da291c;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.country-region-v2 .search-input {
  font-size: 18px;
  line-height: 26px;
  /* 144.444% */
  font-family: 'N27 Medium';
  font-weight: 500;
  font-style: normal;
  color: #333f48;
  background: #ffffff;
  border-radius: 50px;
  border: 1px solid #333f48;
  padding: 15px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 0.2s ease all;
  cursor: pointer;
  /* clears the ‘X’ from Chrome */
  /* clears the 'X' from Internet Explorer */
}
.country-region-v2 .search-input.active,
.country-region-v2 .search-input:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  border: 1px solid #e8e8e8;
}
.country-region-v2 .search-input[type="search"]::-ms-clear {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .search-input[type="search"]::-ms-reveal {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .search-input[type="search"]::-webkit-search-decoration,
.country-region-v2 .search-input[type="search"]::-webkit-search-results-button,
.country-region-v2 .search-input[type="search"]::-webkit-search-cancel-button,
.country-region-v2 .search-input[type="search"]::-webkit-search-results-decoration {
  display: none !important;
}
.country-region-v2 .search-input[type="search"]::-ms-clear,
.country-region-v2 .search-input[type="search"]::-ms-reveal {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .country-search-results-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 1px 5px #abbed1;
  padding: 16px 0;
  width: 100%;
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 4;
}
.country-region-v2 .country-search-results-wrapper--show {
  display: block;
  user-select: none;
}
.country-region-v2 .search-results-list {
  /* 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 */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.country-region-v2 .search-results-list::-webkit-scrollbar {
  width: 12px;
}
.country-region-v2 .search-results-list::-webkit-scrollbar-track {
  background: #fff;
}
.country-region-v2 .search-results-list::-webkit-scrollbar-thumb {
  background-color: #C3C1C2;
  border-radius: 10px;
  border: 3px solid #fff;
}
.country-region-v2 .search-results-list::-webkit-scrollbar-thumb:hover {
  cursor: grab;
}
.country-region-v2 .search-results-list::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.country-region-v2 .search-results-list .hoverOption {
  background-color: #f4f4f4;
}
.country-region-v2 .search-results-list .option {
  font-size: 18px;
  line-height: 26px;
  /* 144.444% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
  border: none;
  padding: 12px 16px 12px 32px;
  width: auto;
  transition: all, 0.3s;
  cursor: pointer;
}
.country-region-v2 .search-results-list .option:hover {
  background-color: #f5f5f5;
}
.country-region-v2 .search-results-list .option::placeholder {
  color: #333f48;
}
.country-region-v2 .search-results-list .match {
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
}
.country-region-v2 .search-results-list .visited {
  color: #4a2187;
}

.country-region-v2 .container-general {
  min-height: 500px;
}
.country-region-v2 .container-general.img-left .container__text {
  justify-content: flex-end;
}
.country-region-v2 .container-general.img-left .container__img {
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
}
@media (min-width: 768px) {
  .country-region-v2 .container-general.img-left .container__img {
    left: 0;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  }
}
@media (min-width: 1600px) {
  .country-region-v2 .container-general.img-left .container__img {
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  }
}
.country-region-v2 .container-general.img-right .container__text {
  align-self: flex-start;
}
.country-region-v2 .container-general.img-right .container__img {
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
}
@media (min-width: 768px) {
  .country-region-v2 .container-general.img-right .container__img {
    right: 0;
    clip-path: polygon(100% 0, 15% 0, 0 100%, 100% 100%);
  }
}
@media (min-width: 1600px) {
  .country-region-v2 .container-general.img-right .container__img {
    clip-path: polygon(100% 0, 10% 0, 0 100%, 100% 100%);
  }
}

.country-region-v2 .grid-cards {
  background-color: #ffffff;
  padding: 32px 0 112px;
  width: 100%;
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  min-height: 100vh;
  height: 100%;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .country-region-v2 .grid-cards {
    padding-top: 96px;
    padding-bottom: 118px;
  }
}
.country-region-v2 .grid-cards--notVisible {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.country-region-v2 .grid-cards.edit-mode {
  min-height: 100%;
}
.country-region-v2 .grid-cards .close-modal {
  font-size: 32px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
}
.country-region-v2 .grid-cards__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
@media (min-width: 1024px) {
  .country-region-v2 .grid-cards__top {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.country-region-v2 .grid-cards__title {
  font-family: 'N27 Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: #333f48;
  max-width: 80%;
}
@media (min-width: 1024px) {
  .country-region-v2 .grid-cards__title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1600px) {
  .country-region-v2 .grid-cards__title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (max-width: 420px) {
  .country-region-v2 .grid-cards__title {
    font-size: 9vw;
    /* Browsers that do not support "MIN () - MAX ()" and "Clamp ()" functions will take this value.*/
    font-size: clamp(24px, 9vw, 40px);
  }
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select {
  /*.icon-select {
        left: unset;
        right: 0; 
        font-size: 24px;
        display: flex;
        justify-content: flex-end;
        width: fit-content;
    }*/
  position: relative;
  cursor: pointer;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .icon--magnifier,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .icon-eye,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-icon {
  position: absolute;
  padding: 18px 20px 18px 0;
  right: 0;
  top: 0;
  cursor: pointer;
  color: #333f48;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .icon--magnifier::before,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .icon-eye::before,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-icon::before {
  font-size: 20px;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form {
  border: 1px solid #C3C1C2;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  -webkit-box-shadow: inset 0 0 0 0 #d3d3d3, 0 0 0px 1000px #fff inset;
  width: 100%;
  margin-bottom: 1.56rem;
  text-overflow: ellipsis;
  cursor: pointer;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form:not(:placeholder-shown) {
  padding: 1.5rem 1.25rem 0.5rem 1.25rem;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[disabled] {
  color: #646468;
  -webkit-box-shadow: inset 0 0 0 0 #EBEBEB, 0 0 0px 1000px #EBEBEB inset;
  border: 1px solid #EBEBEB;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form.ok {
  border: 1px solid #333F48;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form.ko {
  border: 1px solid #BC131C;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form:has(+.icon-eye),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form:has(+*+.icon--magnifier),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form:has(+*+.input-icon) {
  padding: 1.5rem 3rem 0.5rem 1.25rem;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-ms-clear {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-ms-reveal {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-webkit-search-decoration,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-webkit-search-results-button,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-webkit-search-cancel-button,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type="search"]::-webkit-search-results-decoration {
  display: none !important;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type=search]::-ms-clear,
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form[type=search]::-ms-reveal {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: start;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 1rem 1rem 0 1.25rem;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
  transform-origin: 0 0;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has(+*+.icon-eye),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has(+*+.icon--magnifier),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has(+*+.input-icon) {
  padding: 1rem 2.5rem 0 1.25rem;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has( + .input-form:not(:placeholder-shown)),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has(+ .input-form:-webkit-autofill),
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label:has( + .input-form:not(:empty)) {
  font-size: 12px;
  line-height: 18px;
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  display: block;
  top: 0.5rem;
  transition: all 0.1s ease-in-out;
  padding: 0 1.3rem;
}
@media (min-width: 768px) {
  .country-region-v2 .grid-cards__filter-wrapper .input-wrap-select {
    width: 300px;
  }
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input-form {
  margin-bottom: 5px !important;
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  color: #333f48;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .floating-label {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  color: #333f48;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .input {
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  color: #333f48;
}
.country-region-v2 .grid-cards__filter-wrapper .input-wrap-select .select-list li {
  font-size: 16px;
  line-height: 24px;
  /* 150% */
  font-family: 'N27 Regular';
  font-weight: 400;
  font-style: normal;
}
.country-region-v2 .grid-cards__grid {
  display: grid;
  gap: 16px;
  justify-content: center;
  position: relative;
  top: 24px;
}
@media (min-width: 1050px) {
  .country-region-v2 .grid-cards__grid {
    gap: 0;
    grid-template-rows: unset;
    grid-template-columns: repeat(3, 1fr);
  }
}
.country-region-v2 .grid-cards__card {
  border: 1px solid #333f48;
}
.country-region-v2 .grid-cards .view {
  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;
  position: relative;
  top: 56px;
}
@media (min-width: 1024px) {
  .country-region-v2 .grid-cards .view {
    font-size: 24px;
    line-height: 28px;
    /* 125% */
  }
}
@media (min-width: 1600px) {
  .country-region-v2 .grid-cards .view {
    font-size: 24px;
    line-height: 32px;
    /* 125% */
  }
}
.country-region-v2 .grid-cards .view: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;
}
.country-region-v2 .grid-cards .view:hover {
  color: #bc131c;
}
.country-region-v2 .grid-cards .view:hover:after {
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .country-region-v2 .grid-cards .view {
    float: right;
  }
}

