.mnecir-map-portlet {
  background-color: white;
}

.mnecir-map-portlet .search-input .input-text-wrapper {
  width: 100%;
}

.mnecir-map-portlet .nver-map h1 {
  font-size: var(--font-size-lg);
  font-family: var(--font-family-monospace);
  font-weight: var(--font-weight-bold);
  color: #00427C;
}

.mnecir-map-portlet .nver-map-data {
  display: flex;
  align-items: center;
  justify-content: end;
}

.mnecir-map-portlet .nver-map-icon {
  margin-right: 0.563rem;
}

.mnecir-map-portlet .nver-map-hour {
  margin-right: 0.563rem;
  font-family: var(--font-family-monospace);
  font-weight: var(--font-weight-semi-bold);
  font-size: 12px;
}

.mnecir-map-portlet .nver-map-closed {
  margin-right: 0.563rem;
  font-family: var(--font-family-monospace);
  font-weight: var(--font-weight-semi-bold);
  font-size: 12px;
  padding: 4px;
  border-radius: 4px;
}

.mnecir-map-portlet .nver-map-open {
  margin-right: 0.563rem;
  font-family: var(--font-family-monospace);
  font-weight: var(--font-weight-semi-bold);
  font-size: 12px;
  color: #fff;
  background-color: #54D219;
  padding: 4px;
  border-radius: 4px;
}

.mnecir-map-portlet .nver-content,
.mnecir-map-portlet .nvenr-content {
  background-color: #F3F8FE;
  padding: 12px 11px;
  border-radius: 4px;
  font-family: var(--font-family-monospace);
  font-size: 12px;
  font-weight: var(--font-weight-light);
}

.mnecir-map-portlet .leaflet-container a.leaflet-popup-close-button {
  right: 7px;
  top: 7px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
}

.mnecir-map-portlet .nver-map-details .map-repr,
.mnecir-map-portlet .nver-map-details .map-repr-name,
.mnecir-map-portlet .nvenr-map-details .map-repr,
.mnecir-map-portlet .nvenr-map-details .map-repr-name {
  font-family: var(--font-family-monospace);
  color: var(--primary);
  font-weight: var(--font-weight-semi-bold);
}

.mnecir-map-portlet .nver-map-details .map-repr-adress,
.mnecir-map-portlet .nvenr-map-details .map-repr-adress {
  font-family: var(--font-family-monospace);
  color: var(--primary);
  font-weight: var(--font-weight-light);
}

.mnecir-map-portlet .btn-map-component {
  background-color: white;
  color: #A6A6A6;
  border: 1px solid #A6A6A6;
  border-left: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.mnecir-map-portlet .input-map-component {
  background-color: white;
  border: 1px solid #A6A6A6;
  border-right: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.mnecir-map-portlet .control-label {
  color: #A6A6A6;
}

.mnecir-map-portlet .select-map-component {
  color: #A6A6A6;
  background-color: white;
  border-color: #A6A6A6;
}

.form-control.focus, .form-control:focus-visible, .c-prefers-focus .form-control:focus {
  box-shadow: unset;
  border-color: #A6A6A6;
}

.mnecir-map-portlet .nvenr-content {
  margin-bottom: var(--spacer-3);
}

.mnecir-map-portlet .nvenr-more-btn a {
  border: 1px solid var(--primary);
  padding: 7px 20px;
  border-radius: 4px;
  color: var(--primary);
}

.mnecir-map-portlet .map-size {
  height: 520px;
}

.mnecir-map-portlet .map-repr-btn {
  background-color: var(--primary);
  color: white;
  font-family: var(--font-family-monospace);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-base);
  border-radius: 4px;
  padding: var(--spacer-2);
}

.mnecir-loading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  display: none;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.mnecir-loading.show {
  display: flex;
  align-items: center;
}

#loader {
  width: 40px;
  height: 40px;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid var(--primary);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin-left: 15%;
}

.diplomatic-mission-title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-family-monospace);
  color: var(--primary);
}

.diplomatic-mission-text {
  font-size: 16px;
  font-family: var(--font-family-monospace);
  font-weight: 300;
  color: var(--primary);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.md-pt-title {
  font-size: 16px;
  font-family: var(--font-family-monospace);
  font-weight: 400;
  color: var(--brand-color-4);
}

.pa-pt-hour {
  background-color: #ECECEC;
  color: var(--primary);
  font-family: var(--font-family-monospace);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
}

.pa-pt-weeks {
  font-family: var(--font-family-monospace);
  font-weight: 300;
  color: var(--primary);
  font-size: 14px;
}

.pa-pt-weeks-md {
  background-color: #F3F8FE;
  padding: 10px 15px;
  border-radius: 2px;
}

.pa-pt-weeks-md .pa-pt-hour {
  background-color: transparent;
  font-weight: 300;
}

.md-cv-bt {
  padding: 7px 20px;
  border: 1px solid #A6A6A6;
  border-radius: 4px;
  color: var(--primary);
  font-family: var(--font-family-monospace);
  font-weight: 400;
  margin-bottom: 20px;
}

.md-cv-bt svg {
  margin-left: 15px;
}

.md-cv-info-text {
  font-family: var(--font-family-monospace);
  font-weight: 400;
  color: #241D19;
}

.md-cv-hour {
  font-family: var(--font-family-monospace);
  font-weight: 600;
}

.md-cv-container-weeks {
  background-color: #F3F8FE;
  padding: 10px;
  border-radius: 4px;
}

.md-cv-container-weeks .pa-pt-hour {
  background-color: transparent;
  font-weight: 400;
  color: #241D19;
  min-width: 150px;
}

.content-time {
  display: none;
}

.map-content-data {
  cursor: pointer;
}

.map-link-saiba-mais {
  border-radius: 4px;
  border: 1px solid var(--primary);
  padding: 12px;
  align-self: center;
  margin-top: 20px;
}

.map-link-saiba-mais svg {
  margin-left: 12px;
}

.map-content-data:hover .content-time {
  display: block;
  margin-bottom: 10px;
}

.nver-map:has(.map-content-data:hover) .content-address {
  display: none !important;
}

.mnecir-scroll {
  overflow: scroll;
  overflow-x: hidden;
  height: 520px;
}