
#export-wrapper p {
  line-height: 1.4;
}

#exporter-results-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

#sidebar-exporter .active::after {
  content: "" !important;
}

#exporter-results-table th {
  text-align: left;
  background-color: #f1f1f1;
  padding: 8px;
  line-height: 1;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #ececec;
  border-right: 1px solid white;
}

#exporter-results-table th:last-child {
  border-right: 1px solid #ececec;
}

#exporter-results-table td {
  padding: 10px 8px;
  line-height: 1;
  border: 1px solid #ececec;
}

#exporter-results-table tr th:nth-child(1), 
#exporter-results-table tr td:nth-child(1) {
  width: 60%;
}

#exporter-results-table tr th:nth-child(2), 
#exporter-results-table tr td:nth-child(2) {
  width: calc(40% - 30px);
}

#exporter-results-table tr th:nth-child(3), 
#exporter-results-table tr td:nth-child(3) {
  width: 30px;
}

.exporter-download-btn {
  cursor: pointer;
}

#exporter-results-table svg {
  width: 16px;
  opacity: 0.7;
  transition: opacity 150ms ease;
}

#exporter-results-table svg:hover {
  opacity: 1;
}

#export-wrapper .icon-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgb(194 194 194 / 30%);
  border-radius: 50%;
  border-top-color: #192342;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

#export-wrapper .sign-in-button {
  border: 0;
  padding: 6px 12px;
  background-color: #30a5bf;
  color: white;
  cursor: pointer;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: opacity 200ms ease;
}

#exporter-non-user-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

#export-wrapper .sign-in-button:hover {
  opacity: 0.8;
}

.feature-count-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

#export-wrapper .tippy-box {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}

.exporter-action-button {
  padding: 6px 12px;
  background-color: white;
  cursor: pointer;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 10px;
  transition: box-shadow 200ms ease;
  opacity: 1;
  border: 0;
  flex-grow: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 -1px 0px rgba(0,0,0,0.01);
  color: #333;
}

.exporter-action-button:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}

.exporter-action-button.active {
  background-color: #30a5bf;
  color: white;
  opacity: 1 !important;
}

#exporter-message {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  text-align: center;
  z-index: 9999;
  justify-content: center;
}

#exporter-message > div {
  padding: 10px 20px;
  border-radius: 1000px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
  cursor: pointer;
}

#export-wrapper .inline-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #333;
  justify-content: center;
  align-items: center;
}

#export-wrapper .inline-icon > svg {
  height: 10px;
}

#export-wrapper .inline-icon > svg > path {
  fill: white;
}

.leaflet-tooltip.interactive {
  pointer-events: all !important;
  cursor: pointer !important;
}

.leaflet-tooltip.interactive:hover {
  opacity: 1 !important;
}

.pulsing-dot-container {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.pulsing-dot-circle {
  width: 12px;
  height: 12px;
  background-color: #30a5bf;
  border-radius: 50%;
  position: absolute;
}

.pulsing-dot-ring {
  border: 3px solid #30a5bf;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  position: absolute;

  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite; 
  opacity: 0.0
}

.exporter-section {
  margin-bottom: 10px;
  padding: 6px;
  background-color: #ececec;
  border-radius: 0.2rem;
}

.exporter-section-title {
  font-weight: 700;
  line-height: 14px;
  margin-bottom: 6px;
}

#exporter-usage-section-news,  #exporter-usage-section-projects {
  display: none;
  
}

#export-usage-text-wrapper-news,  #export-usage-text-wrapper-projects {
  display: flex;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 4px;
}

#export-usage-bar-chart-wrapper-news, #export-usage-bar-chart-wrapper-projects {
  width: 100%;
  position: relative;
  height: 14px;
  background-color: white;
  border-radius: 1000px;
  margin-bottom: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
}

#export-usage-bar-chart-inner-news, #export-usage-bar-chart-inner-projects {
  width: 0%;
  position: absolute;
  height: 14px;
  left: 0;
  top: 0;
  transition: width 50ms ease-in-out;
  background-color: #30a5bf;
  border-radius: 1000px;
}

#export-usage-bar-chart-inner-news.out-of-quota, #export-usage-bar-chart-inner-projects.out-of-quota {
  background-color: #e87171 !important;
}

#export-usage-message {
  font-size: 12px;
}

#export-usage-message a {
  text-decoration: underline;
}

#export-usage-message a:hover {
  text-decoration: none;
}

#exporter-exceeded-quotas-modal {
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
  outline: 0;
  border: 0;
  color: #333;
  margin-top: 100px;
  border-radius: 0.2rem;
  width: 580px;
  line-height: 20px;
}

#exporter-exceeded-quotas-modal::backdrop {
  background-color: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

#exporter-exceeded-quotas-modal a {
  color: #333;
}

#exporter-exceeded-quotas-modal button {
  padding: 6px 12px;
  background-color: #6d6d6d;
  cursor: pointer;
  border-radius: 2px;
  font-size: 12px;
  transition: box-shadow 200ms ease;
  border: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 -1px 0px rgba(0,0,0,0.02);
  color: white;
}


@keyframes pulsate {
  0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
  50% {opacity: 1.0;}
  100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}