:not(:defined) {
  visibility: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Nunito Sans, sans-serif;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  background-color: #f7f7f7;
}

html {
  margin: 0;
}

.page-wrapper {
  
  padding: 20px;
}

.datatable {
  margin-top: 20px;
}

.handsontable.listbox th, .handsontable.listbox td {
  white-space: normal !important;
}

input, select {
  padding: 4px 10px;
  margin-right: 6px;
  margin-left: 6px;
}

.modal input,
.modal select,
.modal textarea {
  border: 1px solid #efefef;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 10px;
  flex-grow: 1;
}

.table-btns-container {
  margin-top: 10px;
}

.table-btns-container button {
  padding: 6px 10px;
  background-color: #007bff;
  color: #fff;
  outline: 0;
  border: 0;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease;
}

.table-btns-container button:hover {
  background-color: #0063cc
}

.modal form {
  margin-bottom: 20px;
}

.eqv-header-wrapper {
  display: flex;
  align-items: center;
}

.eqv-header-wrapper span {
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 1;
  margin-bottom: 6px;
  margin-right: 10px;
}

.eqv-header-wrapper span:hover {
  opacity: 1;
}

.modal form h4 {
  margin-bottom: 6px;
  text-decoration: underline;
  margin-top: 0;
}

.form-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 6px;
  /* align-items: center; */
}

.form-group label {
  grid-column: 1;
  grid-row: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  grid-column: 2;
  grid-row: 1;
  padding: 6px 10px;
}

#company-add-modal .form-group {
  grid-template-columns: 140px 1fr;
}

.buttons-wrapper button {
  font-size: 12px;
}



.autocompleteEditor {
  height: unset !important;
  max-height: 200px;
  overflow: auto;
}

.autocompleteEditor div.ht_master {
  height: 100% !important;
}

.autocompleteEditor div.ht_master div.wtHolder {
  height: 100% !important;
  max-height: 200px !important;
}

.message {
  background-color: #f8d7da;
  border: 1px solid  #f5c6cb;
  color: #721c24;
  position: relative;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

.all-charts-container {
  position: relative;
}

.bar-chart-wrapper {
  height: 20px;
  display: flex;
  position: relative;
}

.single-bar {
  width: 0%;
  height: 100%;
}

.above-max-icon {
  position: absolute;
  right: 15px;
  z-index: 100;
  color: #171f38;
  font-weight: 900;
}

.htCore tbody tr td {
  white-space: unset !important;
}


/* .htCore tbody tr td:nth-of-type(1),
.htCore tbody tr td:nth-of-type(2),
.htCore tbody tr td:nth-of-type(3),
.htCore tbody tr td:nth-of-type(4),
.htCore tbody tr td:nth-of-type(7),
.htCore tbody tr td:nth-of-type(8),
.htCore tbody tr td:nth-of-type(9),
.htCore tbody tr td:nth-of-type(10),
.htCore tbody tr td:nth-of-type(11),
.htCore tbody tr td:nth-of-type(12),
.htCore tbody tr td:nth-of-type(13) {
  white-space: unset !important;
} */

#datatable-companies .htCore tbody tr td:nth-of-type(5),
#datatable-companies .htCore tbody tr td:nth-of-type(7) {
  text-align: center;
}

.loader {
  display: block;
  margin-top: 15px;
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #1d254d;
  width: 40px;
  height: 40px;
  animation: spin 0.5s linear infinite;
}

#datatable-wrapper-news-collection-reports .colHeader {
  font-size: 11px !important;
  letter-spacing: -1px;
}


@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
.loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  top: 0;
  left: 0;
}
.loader-wrapper.show {
  display: flex;
}

.mode-wrapper {
  position: relative;
  display: none;
  padding: 30px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #ebebeb;
  min-height: calc(100vh - 84px);
  width: min-content;
  min-width: 100%;
}


.mode-wrapper.selected {
  display: block;
}

.datatable-wrapper {
  position: relative;
}




/* snackbar */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  border-radius: 2px; /* Rounded borders */
  padding: 10px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 9999; /* Add a z-index if needed */
  top: 10px;
  right: 10px;

}

#snackbar.error {
  background-color: #f8d7da;
  border: 1px solid  #f5c6cb;
  color: #721c24;
}
#snackbar.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
#snackbar.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
#snackbar.info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}


/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 10px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 10px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 10px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 10px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

#snackbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#snackbar-type-icon-wrapper {
  display: flex;
  align-items: center;
}

#snackbar-type-icon-wrapper img {
  width: 20px;
}

#snackbar-type {
  margin-left: 6px;
  font-weight: 700;
}

#snackbar-content {
  font-size: 14px;
}

#snackbar-close-btn {
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 1;
}

#snackbar-close-btn:hover {
  opacity: 0.8;
}

.handsontable .table-lightgray {
  background-color: #f5f5f5;
}
.handsontable .table-lightgreen {
  background-color: #d3edd9;
}
.handsontable .table-lightred {
  background-color: #ffeded;
}

#mode-selector-outer-wrapper {
  display: flex;
  justify-content: space-between;
}

.mode-selector-wrapper {
  display: flex;
  box-sizing: border-box;
  background-color: #fff;
}

.mode-selector {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  padding: 10px;
  background-color: #eeeeee;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ddd;
  border-bottom: 0;
  opacity: 0.8;
  z-index: 2;
  line-height: 14px;
}

.mode-selector:not(:last-child) {
  border-right-width: 0;
}

.mode-selector:hover {
  background-color: #ddd;
  opacity: 1;
}


.mode-selector.selected {
  background-color: #fff;
  opacity: 1;
}

.mode-selector.selected::after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  bottom: -1px;
}

.action-btn {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  outline: 1px solid #30A5BF;
  padding: 8px 20px;
  font-weight: bold;
  color: #192342;
  cursor: pointer;
  opacity: 1;
  user-select: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-right: 10px;
  border: 0 !important;
  background-color: #fff;
  font-size: 14px;
}

.action-btn:hover {
  opacity: 0.8;
}

input[type="checkbox"] {
  transform: scale(1.4);
  transform: scale(1.4);
    box-shadow: none;
    flex-grow: 0;
}

#company-add-modal .vsb-menu ul {
  grid-template-columns: 1fr !important;
}

form.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.modal__container .message button.cancel {
  background-color: white;
  border: 0;
  padding: 6px 12px;
  color: #721c24;
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 1;
}

.modal__container .message button.cancel:hover {
  opacity: 0.8;
}

.modal__container .message button.confirm {
  background-color: #721c24;
  border: 0;
  padding: 6px 12px;
  margin-right: 10px;
  color: white;
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 1;
}

.modal__container .message button.confirm:hover {
  opacity: 0.8;
}

.modal-similar-company-warning-container div {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr;
}

.modal-similar-company-warning-container div span:nth-of-type(1) {
  grid-column: 1
}
.modal-similar-company-warning-container div span:nth-of-type(2) {
  grid-column: 2
}

#date-controls {
  display: flex;
  align-items: center;
}

#date-range-picker-wrapper {
  display: flex;
  align-items: center;
}

#date-controls-divider {
  margin-left: 10px;
  margin-right: 10px;
  padding: 0 10px;
  font-weight: bold;
  border-right: 1px solid;
  border-left: 1px solid;
  text-transform: uppercase;
}

option.flagship {
  color: #30A5BF;
  font-weight: bold;
  text-transform: uppercase;
}

.impacted-projects-container ul {
  margin-top: 0;
  font-weight: 400;
}


.page-controls-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: -12px;
}

.row-count-wrapper {
  
  font-size: 14px;
}

.page-controls {
  display: flex;
  margin-left: 10px;
  
}

.page-control-btn {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  border-radius: 2px;
  padding: 2px 4px;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.page-control-btn:disabled {
  pointer-events: none;
}

.page-control-btn:hover {
  opacity: 0.8;
}

#news-table-previous-page {
  border-right: 1px solid rgb(118, 118, 118);
}

.sort-options-wrapper {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sort-option {
  padding: 4px 6px;
  font-size: 12px;
  margin-right: 10px;
  border: 1px solid #30A5BF;
  color: #30A5BF;
  background-color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 1;
  user-select: none;
}

.sort-option.selected {
  color: #fff;
  background-color: #30A5BF;
}

.share-image-container {
  width: 100%;
  max-width: 500px;
  display: none;
  position: relative;
}

.share-image-container div {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: rgba(255,255,255,0.8);
  width: 24px;
  height: 24px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.15s ease;
  text-align: center;
}

.share-image-container div:hover {
  background-color: rgba(255,255,255,1);
}

.share-image-container div::before {
  content: "\2715";
  line-height: 24px;
}

.share-image-container img {
  width: 100%;
}



/* Investor Desk share table */
#investor-deck-table {
  width: 1100px;
  box-sizing: border-box;
}

#investor-deck-table-header {
  display: flex;
  background-color: #EDEEF4;
  border-radius: 4px;
  border: 1px solid #F3F3F3;
  margin-bottom: 2px;
}

.social-posts-single-row {
  display: flex;
  margin-top: 3px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #F3F3F3;
  box-sizing: border-box;
  align-items: stretch;
}

.col, .header {
  box-sizing: border-box;
  padding: 10px;
  border-right: 1px solid #F3F3F3;
}



.header {
  font-weight: bold;
}


.col-controls {
  background-color: #EDEEF4;
  border-radius: 4px 0 0 4px;
}

.col-controls img {
  height: 18px;
  margin-bottom: 4px;
  cursor: pointer;
  opacity: 0.7;
}

.col-controls img:hover {
  opacity: 1;
}

.col-controls .tooltip {
  position: absolute;
  left: 25px;
  top: -3px;
  background: white;
  border: 1px solid #30A5BF;
  padding: 2px 4px;
  box-sizing: border-box;
  z-index: 1000;
  color: #30A5BF;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}

.tooltip-container:hover .tooltip {
  display: block;
}

#header-controls, .col-controls {
  width: 36px;
}

#header-date, .col-date {
  width: 150px;
}
#header-type, .col-type {
  width: 150px;
}


#header-title, .col-title {
  width: 350px;
}
#header-link, .col-link {
  width: 350px;
  word-break: break-all;
}

#header-image, .col-img {
  width: 304px;
  max-height: 200px;
  overflow: hidden;
}

.col-img img {
  width: 100%;
}

.col-date {
  font-size: 14px;
}

.add-btn {
  cursor: pointer;
  margin-top: 6px;
  color: #9296AD; 
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 22px;
  padding-left: 20px;
  box-sizing: border-box;
  width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center; 
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.add-btn:hover {
  opacity: 1;
}


.add-btn:hover img {
  opacity: 1;
}

.add-btn img {
  width: 24px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

#share-investor-deck-modal textarea {
  width: 100%;
  min-height: 100px;
  box-sizing: border-box;
  color: rgba(0,0,0,.8);
}

#share-link-copy-btn {
  text-align: right;
  margin-top: 10px;
}

#share-link-copy-btn span {
  padding: 4px 8px;
  border: 1px solid #30A5BF;
  color: #fff;
  background-color: #30A5BF;
  cursor: pointer;
  box-sizing: border-box;
}

#share-warning-text {
  color: red;
  display: none;
  margin-bottom: 10px;
}




/* Filter / Search Controls */
/* Filter selectors */
.filter-controls-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#filter-control-buttons-wrapper {
  display: flex;
  align-items: center;
}

#search-and-sort-wrapper {
  display: flex;
  margin-right: 10px;
}

.filter-selector {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  box-shadow: 0px 0rem 4px 2px rgb(0 0 0 / 15%);
  padding: 8px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #192342;
  cursor: pointer;
  opacity: 1;
  user-select: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  margin-right: 10px;
  border: 0 !important;
}

.filter-selector a {
  text-decoration: none;
  color: #192342;
}

#sort-settings-wrapper {
  height: 38px;
  width: 38px;
  padding: 0;
  display: block;
  flex-grow: 0;
}

#sort-settings-wrapper img {
  margin-top: 11px;
  margin-left: 10px;
  height: 16px;
}

.filter-selector:last-of-type {
  margin-right: 0;
}

.filter-selector.open {
  box-shadow: 0px 0rem 4px 3px rgb(0 0 0 / 20%);
}

.filter-selector:hover {
  box-shadow: 0px 0rem 4px 3px rgb(0 0 0 / 20%);
}




.filter-selector-label {
  font-size: 16px;
  white-space: nowrap;
  color: #192342;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none; /* Chrome/Safari */ 
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  -o-user-select: none;
  user-select: none;
}

.filter-selector select {
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 4px;
}

.filter-selector-header {
  position: absolute;
  top: 5px;
  right: 5px;
}

/* .filter-selector:last-of-type .filter-selector-content {
  left: unset;
  right: 0;
} */

.filter-selector-content {
  position: absolute;
  background-color: #fff;
  padding: 26px 0 10px 0;
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%), 0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
  left: 0;
  width: max-content;
  border-radius: 4px;
  display: none;
  z-index: 1999;
  animation: growOut 200ms ease-in-out forwards;
  transform-origin: top center;
  top: 50px !important;
}

.filter-selector.open .filter-selector-content {
  display: block;
}

.filter-selector-options {
  max-height: 300px;
  overflow-y: auto;
  padding: 0 30px;
}

.filter-selector-options::-webkit-scrollbar {
  width: 10px;
}

.filter-selector-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1000px;
  border-right: 2px solid #fff;
}

.filter-selector-options::-webkit-scrollbar-thumb {
  background: rgb(212, 212, 212);
  border-radius: 1000px;
  border-right: 2px solid #fff;
}

.filter-selector-options::-webkit-scrollbar-thumb:hover {
  background: rgb(158, 158, 158);
}

.filter-option {
  margin-bottom: 10px;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  transform: scale(1.2);
  margin-right: 10px;
}

.filter-option:last-of-type {
  margin-bottom: 0;
}

.filter-selector-footer {
  display: flex;
  padding: 20px 26px 0 26px;
  margin-top: 10px;
  border-top: 1px solid rgb(212, 212, 212);
  justify-content: space-between;
}

.filter-selector-footer button {
  cursor: pointer;
  border-radius: 0;
  outline: 0;
  border: 2px solid #30a5bf;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
}

.filter-btn-clear {
  background-color: #fff;
  color: #30a5bf;
  margin-right: 10px;
}

.filter-btn-clear.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.filter-btn-search {
  color: #fff;
  background-color: #30a5bf;
}


#date-range-picker {
  display: none;
}

.custom-date-wrapper {
  position: relative;
}

#date-range-picker input {
  padding: 6px 8px 6px 34px;
  width: 130px;
  border: 1px solid;
  border-radius: 4px;
  margin-left: 0;
  box-sizing: border-box;
}

#date-range-picker input:first-of-type {
  margin-right: 10px;
}

.calendar-icon-wrapper {
  position: absolute;
  left: 0;
  width: 33px;
  height: 29px;
  bottom: 0;
  padding: 10px;
  box-sizing: border-box;
  background-color: #192342;
  border-radius: 4px 0 0 4px;
}

.calendar-icon-wrapper img {
  filter: invert(1);
  transform: translateY(-3px);
}

.input-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}

#search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 300px;
}

#search {
  width: 100%;
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0px 0rem 4px 2px rgb(0 0 0 / 15%);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  padding-left: 2.375rem;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 10px;
  outline: 0;
}

#search:focus, #search:hover {
  box-shadow: 0px 0rem 4px 3px rgb(0 0 0 / 20%);
}

.fa-search {
  display: inline-block !important;
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem !important;
  text-align: center;
  pointer-events: none;
  color: #192342;
}

.fa-search:before {
  content: "\f002";
}


.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  display: none;
}

/* search bar autocomplete */
.autocomplete {
  position: relative;
}
.autocomplete-options {
  cursor: pointer;
  z-index: 1000;
  display: none;
  position: absolute;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%), 0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
  border-radius: 4px;
  font-size: 11px;
  animation: growOut 150ms ease-in-out forwards;
  transform-origin: top center;
  margin-top: 6px;
  border-radius: 4px;
}
.search-option {
  font-size: 14px;
  min-height: 1.4em;
  padding: 0.2em 2em 0.2em 1em;
}

.search-option:hover {
  background-color: rgb(245, 245, 245)
}

@keyframes growOut {
  0% {
    transform: scale(0);
 }
 80% {
    transform: scale(1.05)
 }
 100% {
    transform: scale(1)
 }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



#crm-search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 400px;
}

#crm-search {
  width: 100%;
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0px 0rem 4px 2px rgb(0 0 0 / 15%);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  padding-left: 2.375rem;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 10px;
  outline: 0;
  padding-right: 7rem;
}

#crm-search:focus, #crm-search:hover {
  box-shadow: 0px 0rem 4px 3px rgb(0 0 0 / 20%);
}

.search-controls-wrapper {
  display: flex;
  align-items: center;
}

#crm-search-type {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  text-align: right;
  border: 0;
  outline: 0;
  font-size: 12px;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  padding-right: 6px;
  cursor: pointer;
  opacity: 0.8;
  border-left: 1px solid #e9e9e9;
}

#crm-search-type:hover {
  opacity: 1;
}

#datatable-crm hr {
  margin-top: 0px;
  margin-bottom: -2px;
  background-color: #e1e1e1;
  height: 1px;
  border: 0;
}

#crm-controls-wrapper {
  display: flex;
}

.copy-btn {
  font-size: 14px;
  display: inline-block;
  border-radius: 6px;
  color: #00449e;
  cursor: pointer;
  user-select: none;
  margin-top: 6px;
}

.copy-btn:hover {
  text-decoration: underline;
}

.post-preview {
  width: 100%;
}

.share-preview {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #bfbebe;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: 80px;
  position: relative;
  max-width: 420px;
}

.share-preview .share-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.share-preview .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  padding: 6px;
}

.share-preview-og-url,
.share-preview-og-description {
  color: #74818b;
  line-height: 14px;
}

.share-preview-title {
  margin: 2px 0;
}

.has-og-already {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  padding: 10px;
  border-radius: 2px;
  width: 100%;
  display: none;
  font-size: 12px;
}

.full-page-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  display: none;
  background-color: #fff;
  padding: 1rem;
}

.modal-input,
.modal-select,
.modal-textarea {
  border: 1px solid #efefef;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 10px;
  flex-grow: 1;
}

#news-image-creator-frame {
  background-color: #e6e6e6;
  position: relative;
  width: 100%;
  height: 100%;
}

#loaderWrapper-news-post {
  flex-direction: column;
}

#loaderWrapper-news-post .progress-bar {
  display: none;
  position: relative;
  height: 24px;
  width: 400px;
  background-color: #ababab;
  margin-top: 10px;
}

#loaderWrapper-news-post .progress-bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  background-color: #1e2e64;
  transition: width 150ms ease;
  height: 100%;
}



#news-image-creator-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  margin-top: 10px;
  position: relative;
  background-color: #f9f9f9;
  width: min-content;
  border: 1px solid #e6e6e6;
}

#item-selection-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  grid-row: 1;
  grid-column: 2;
  font-size: 12px;
}

#item-selection-toolbar input {
  max-width: 60px;
}

#news-image-creator-frame {
  grid-row: 2;
  grid-column: 2;
}

#news-image-creator-wrapper.og-image-standard #news-image-creator-frame {
  width: 1200px;
  height: 628px;
}
#news-image-creator-wrapper.insta-portrait #news-image-creator-frame {
  height: 800px;
  width: 640px;
}
#news-image-creator-wrapper.insta-square #news-image-creator-frame {
  height: 800px;
  width: 800px;
}

#news-image-creator-toolbar {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
  position: relative;
  grid-column: 1;
  grid-row: 2;
}


.news-image-creator-toolbtn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
}

.news-image-creator-toolbtn svg {
  height: 24px;

}

.news-image-creator-toolbtn div {
  height: 18px;
  width: 24px;
}

.news-image-creator-toolbtn.multi::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 3px solid #000;
  transform: rotate(135deg);
}

.news-image-creator-toolbtn:hover {
  background-color: #cdd8ff;
}

.news-image-creator-toolbtn.active {
  background-color: #cdd8ff;
}

#map-background-container {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  user-select: none;
  /* pointer-events: none; */
}

#news-image-creator-top-bar, #news-image-creator-bottom-bar {
  width: 100%;
  height: 75px;
  background-color: rgba(180,180,180,0.7);
  z-index: 2;
  position: absolute;
  left: 0;
}

#news-image-creator-top-bar {
  top: 0;
}

#news-image-creator-bottom-bar {
  bottom: 0;
}

#news-image-creator-logo {
  width: 200px;
  height: 200px;
  z-index: 3;
  position: absolute;
  left: 20px;
  top: 20px;
  border: 0px solid;
}

.news-image-creator-img {
  width: 100%;
}

.is-not-interactable {
  pointer-events: none;
}


#news-image-creator-topright-text-wrapper,
#news-image-creator-bottomleft-text-wrapper {
  position: absolute;
  background-color: #1e2e64;
  color: #fff;
  z-index: 4;
  padding: 15px 40px;
  border: 0px solid #fff;
}

#news-image-creator-frame .text-element.font-small {
  font-size: 24px;
  line-height: 24px;
}
#news-image-creator-frame .text-element.font-large {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
}

.new-text-element {
  border: 0px solid #000;
}

.new-text-element.font-small {
  font-size: 24px;
  line-height: 24px;
}
.new-text-element.font-large {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
}

#news-image-creator-topright-text-wrapper {
  top: 20px;
  left: calc(100% - 359px);
  text-align: right;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 90px 100%);
  padding-left: 100px;
  width: max-content;
}

#news-image-creator-bottomleft-text-wrapper {
  top: calc(100% - 100px);
  left: 0;
  text-align: left;
  clip-path: polygon(0 0, calc(100% - 90px) 0%, 100% 100%, 0 100%);
  padding-right: 100px;
  width: max-content;
}

.news-image-creator-text-element {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
}

#news-image-creator-bottomright-text-wrapper {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  right: 40px;
  font-size: 24px;
  color: #fff;
  border: 0px solid #000;
}

#news-image-creator-title-block {
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  top: calc(50% - 70px);
  color: #fff;
  border: 0px solid #000;
  background-color: rgba(30, 46, 100, 0.5);
  padding: 20px 100px;
  
}

#news-image-creator-article-title {
  font-size: 36px;
  line-height: 40px;
  position: relative;
  font-weight: bold;
  text-align: center;
}

.interact {
  box-sizing: border-box;
}

.is-interactable {
  box-sizing: border-box;
  border: none;
}

#shape-preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  fill: #c6a144;
  stroke: #c6a144;
  z-index: 5;
  pointer-events: none;
}

.news-image-creator-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  fill: #c6a144;
  stroke: #c6a144;
  z-index: 5;
}

.news-image-creator-shape svg {
  pointer-events: none;
}

/* .news-image-creator-shape.selected {
  border: 2px dotted yellow;
}

.is-interactable.selected {
  border: 2px dotted yellow;
} */

/* .text-element {
  pointer-events: none;
} */

#map-iframe {
  pointer-events: none;
}


.tool-options {
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 1001;
  right: 0;
  transform: translateX(100%);
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}

.tool-options.show {
  display: flex;
}

.tool-options-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  cursor: pointer;
  padding: 4px;
  font-size: 12px;
  align-items: center;
  user-select: none;
}

.tool-options-line:hover {
  background-color: #e6e6e6;
}

.tool-options-line.selected {
  color:#1e51ff;
  background-color: #e6e6e6;
}

.tool-options-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-options-icon svg,
.tool-options-icon.circle, 
.tool-options-icon.rectangle {
    width: 18px;
}


.item-selection-tool-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e6e6e6;
  padding: 4px;
  border-radius: 4px;
  background-color: #fff;
  transition: opacity 0.15s ease-in;
  pointer-events: none;
  opacity: 0.6;
}

.item-selection-tool-wrapper.enabled {
  pointer-events: auto;
  opacity: 1;
}

.item-selection-tool-wrapper label {
  width: 30px;
  line-height: 10px;
  font-size: 10px;
}

.item-selection-tool-wrapper input {
  margin: 0 2px;
}

.item-selection-tool-wrapper input[type="color"] {
  width: 30px;
  padding: 1px;
}

.item-selection-tool-wrapper input[type="number"] {
  padding: 2px;
}

.rectangle {
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background-color: rgba(255,255,255,1);
  box-sizing: border-box;
}

.circle {
  width: 100%;
  height: 100%;
  border: 2px solid black;
  background-color: rgba(255,255,255,0);
  box-sizing: border-box;
  border-radius: 50%;
}

.selectionHandles {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 9999;
  border: 1px dotted yellow;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

#news-image-creator-image-sidebar {
  position: absolute;
  right: -300px;
  top: 0;
  height: 100%;
  width: 300px;
  transition: opacity 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10000;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 10px 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}

#news-image-creator-image-sidebar.active {
  opacity: 1;
  pointer-events: auto;
}

#image-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
}

#image-sidebar-header svg {
  width: 14px;
  cursor: pointer;
}

#image-sidebar-content {
  padding-top: 10px;
}

#image-sidebar-content input,
#image-sidebar-content select {
  width: 100%;
}

.image-sidebar-input-group {
  margin-bottom: 10px;
}

.image-container {
  width: 200px;
  z-index: 10;
  position: absolute;
  border: 0px solid;
}


#unmatched-news-provider-select, #news-reports-provider-select, #news-reports-errors-select {
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0px 0rem 4px 2px rgb(0 0 0 / 15%);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 10px;
  outline: 0;
}

#news-reports-errors-select-wrapper {
  position: relative;
}


#news-reports-errors-select-wrapper.show-placeholder:before {
  content: 'Select error type...';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding-left: 20px;
  opacity: 0.8;
}

#news-reports-errors-select-wrapper:before {
  content: '';
}

#unmatched-news-search-type {
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100% - 2px);
  text-align: right;
  border: 0;
  outline: 0;
  font-size: 12px;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  padding-right: 6px;
  cursor: pointer;
  opacity: 0.8;
  border-left: 1px solid #e9e9e9;
}

#run-unmatched-news-search {
  background-color: #30a5bf;
  color: white;
}




#companies-search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 400px;
}

#unmatched-news-search-wrapper {
  position: relative;
  margin-right: 10px;
  width: 400px;
}

/* #companies-search, #unmatched-news-search {
  width: 100%;
  border: 1px solid transparent;
  background-color: #fff;
  box-shadow: 0px 0rem 4px 2px rgb(0 0 0 / 15%);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  padding-left: 2.375rem;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 10px;
  outline: 0;
  padding-right: 7rem;
} */

#companies-search:focus, #companies-search:hover,
#unmatched-news-search:focus, #unmatched-news-search:hover {
  box-shadow: 0px 0rem 4px 3px rgb(0 0 0 / 20%);
}

.search-controls-wrapper {
  display: flex;
  align-items: center;
}

#companies-search-type {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  text-align: right;
  border: 0;
  outline: 0;
  font-size: 12px;
  padding: 0;
  margin: 0;
  margin-right: 10px;
  padding-right: 6px;
  cursor: pointer;
  opacity: 0.8;
  border-left: 1px solid #e9e9e9;
}

#companies-search-type:hover,  #unmatched-news-search-type:hover{
  opacity: 1;
}

#news-image-creator-company-name,
#news-image-creator-project-name,
#news-image-creator-project-location {
  white-space: nowrap;
}

#investor-deck-iframe {
  width: 100%;
  border: 0;
  height: 600px;
}

.single-financing-wrapper {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid lightgray;
}

.financing-wrapper-header, .tranche-wrapper-header {
  display: flex;
  align-items: center;
}

.financing-wrapper-header span, .tranche-wrapper-header span {
  margin-right: 10px;
  font-size: 18px;
  transform: translateY(-2px);
  user-select: none;
  cursor: pointer;
}

#financing-modal .input-line {
  display:  flex;
  align-items: center;
  margin-bottom: 10px;
}


#financing-modal .unsaved-changes-text {
  width: 100%;
  box-sizing: border-box;
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  border-radius: 2px;
  padding: 10px;
  margin: 10px 0;
  font-size: 14px;
  display:none;
}


#financing-modal[data-is_dirty = "true"] .unsaved-changes-text {
  display: block;
}

#financing-modal .input-line label {
  font-size: 12px;
  color: gray;
  text-transform: uppercase;
  margin-right: 6px;
  letter-spacing: -0.5px;
  width: 120px;
}

.all-tranches-header {
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}

.single-tranche-wrapper {
  padding-left: 20px;
}

.tranche-wrapper-header h4 {
  font-size: 14px;
}

.two-columns {
  display: flex;
  align-items: center;
  width: 100%;
}

.two-columns {
  display: flex;
  align-items: center;
}

.two-columns  label {
  width: unset !important;
}

.two-columns .input-line {
  flex-grow: 1;
}

.tranches-wrapper {
  background-color: #ededed;
  padding: 6px;
  display: block;
}

.tranches-wrapper:empty {
  display: none;
}

.tranches-wrapper label {
  width: 92px;
}

.table-single-financing-wrapper {
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(240, 240, 240);
  font-size: 12px;
}

.table-single-financing-wrapper:last-of-type {
  border-bottom: 0;
}

.table-single-financing-header {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 4px;
  text-transform: capitalize;
  justify-content: space-between;
}

.tranche-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 10px;
  justify-content: space-between;
}

#logout {
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
}

#logout:hover {
  text-decoration: underline;
}

#logout .loader {
  margin: 0;
  margin-left: 4px;
  width: 16px;
  height: 16px;
}


#add-news-article-modal {
  z-index: 1001;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255,255,255,0.8);
  display: none;
  justify-content: center;
  align-items: flex-start;
}

#add-news-article-modal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0px 3px 3px -2px rgb(0 0 0 / 20%), 0px 3px 4px 0px rgb(0 0 0 / 14%), 0px 1px 8px 0px rgb(0 0 0 / 12%);
  border: 1px solid #e8e8e8;
  min-width: 600px;
  max-width: 600px;
  margin-top: 50px;
}

#add-news-article-modal-header {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#add-news-article-modal-close-btn {
  cursor: pointer;
}

#add-news-article-modal label {
  width: 100%;
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
}

#add-news-article-modal input, #add-news-article-modal select, #add-news-article-modal textarea {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
}

#add-news-article-modal .form-item {
  margin-top: 10px;
}

#add-news-article-modal-footer-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}

#add-news-article-modal-footer-buttons > div {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 100ms ease-in;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.button-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}

#add-news-article-modal-save-btn {
  background-color: #007bff;
  border-color: #007bff;
}

#add-news-article-modal-save-btn:hover {
  background-color: #3669b3;
}

#add-news-article-modal-company {
  padding-right: 22px;
}

#add-news-article-modal-company-clear-btn {
  position: absolute;
  right: 8px;
  top: 23px;
  opacity: 0.8;
  display: none;
  cursor: pointer;
}

#add-news-article-modal-company-clear-btn:hover {
  opacity: 1;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  margin: 3px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#add-new-news-article-btn {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 100ms ease-in;
  color: #fff;
  cursor: pointer;
  position: relative;
  background-color: #007bff;
  border-color: #007bff;
  margin-right: 10px;
}

#add-new-news-article-btn:hover {
  background-color: #3669b3;
}

#btn-group-add-news-article-modal-tags .vsb-js-search-zone input {
  height: 36px !important;
}

#btn-group-add-news-article-modal-tags .vsb-menu ul {
  grid-template-columns: 1fr !important;
}
#btn-group-add-news-article-modal-tags > div > ul > p {
  grid-column: unset !important;
}

#btn-group-add-news-article-modal-tags {
  width: 100%;
}

#add-news-article-modal-html-input {
  min-height: 300px;
}

.fa-circle-o-notch:before {
  content: "\f1ce" !important;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#custom-maps-table-wrapper {
  max-width: 1200px;
}

.custom-maps-table-header {
  display: flex;
  background-color: #EDEEF4;
  border-radius: 4px;
  border: 1px solid #F3F3F3;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.custom-maps-table-row {
  display: flex;
  align-items: center;
  margin-top: 1px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #F3F3F3;
  box-sizing: border-box;
  padding: 0 10px;

}

#custom-maps-table-no-data {
  padding: 10px;
  margin-top: 1px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #F3F3F3;
  box-sizing: border-box;
  font-size: 13px;
  color: gray;
}


.custom-maps-table-tools-cell {
  display: flex;
  align-items: center;
  gap: 4px;
}

.custom-maps-table-single-header {
  padding: 10px 6px;
  box-sizing: border-box;
  font-weight: bold;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 12px;
  position: relative;
  padding-right: 24px;
  display: flex;
  align-items: center;
  line-height: 13px;
}

.custom-maps-table-single-header:last-of-type {
  border-right: 0;
}

.custom-maps-table-single-cell {
  padding: 10px 6px;
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 13px;
  border-right: 1px solid lightgray;
}

.custom-maps-table-single-cell:last-of-type {
   border-right: 0;
}

.custom-maps-table-single-cell a {
  text-decoration: none;
  border-bottom: 0;
  cursor: pointer;
  color: var(--main-color-192342);
  font-weight: bold;
  
}


.custom-maps-table-single-cell a:hover {
  text-decoration: underline;
}

.custom-maps-table-single-header:nth-child(1), .custom-maps-table-single-cell:nth-child(1) {
  width: 100px;
}

.custom-maps-table-single-header:nth-child(2), .custom-maps-table-single-cell:nth-child(2) {
  width: 200px;
  flex-grow: 1;
}

.custom-maps-table-single-header:nth-child(3), .custom-maps-table-single-cell:nth-child(3) {
  width: 100px;
}

.custom-maps-table-single-header:nth-child(4), .custom-maps-table-single-cell:nth-child(4) {
  width: 250px;
  flex-grow: 1;
}

.custom-maps-table-single-header:nth-child(5), .custom-maps-table-single-cell:nth-child(5) {
  width: 150px;
}


#custom-maps-add-new-btn {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 100ms ease-in;
  color: #fff;
  cursor: pointer;
  position: relative;
  background-color: #007bff;
  border-color: #007bff;
  display: inline-block;
}

#custom-maps-add-new-btn:hover {
  background-color: #0063cc
}

#custom-maps-refresh-table-btn {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 100ms ease-in;
  color: #fff;
  cursor: pointer;
  position: relative;
  background-color: #969696;
  border-color: #969696;
  display: inline-block;
}

#custom-maps-refresh-table-btn:hover {
  background-color: #a3a3a3
}
