@media (max-width: 1350px) {
  .map-section iframe {
    width: 100% !important;
  }
}

/* Start Nav Submenu */
.navbar .navbar-nav .dropdown .dropdown-menu a{
  color: var(--medium-gray);
}

.navbar .navbar-nav .dropdown .dropdown-menu a:hover {
    color: var(--dark-gray);
}
/* End Nav Submenu */

/*Start Tab Map section */
.tab-map .gas.active,
.tab-map .gas:hover {
  background-color: #f6921e !important;
  color: #ffff !important;
}

.tab-map .power.active,
.tab-map .power:hover {
  background-color: #006838 !important;
  color: #ffff !important;
}

.tab-map .water.active,
.tab-map .water:hover {
  background-color: #1b75bb !important;
  color: #ffff !important;
}

.tab-map .renewable.active,
.tab-map .renewable:hover {
  background-color: #bb1e2c !important;
  color: #ffff !important;
}
/*End Tab Map section */

input[type="file"]::file-selector-button {
  margin-right: 20px;
  border: none;
  background-image: linear-gradient(to right, #d18215, #3797a1);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

input[type="file"]::file-selector-button:hover {
  background: #1c1b1b;
}

.hyphens-auto {
  /*hyphens: auto;*/
  text-align: justify;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 75px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgb(0,0,0); */
  background-color: rgba(0, 0, 0, 0.4);
}

.mt-n45 {
  margin-top: -45px;
}


/* Table Section */

.wp-block-table {
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  width: 100%;
}

table td,
table th {
  text-align: left;
  padding: 5px 20px;
  font-size: var(--font-16);
}

.wp-block-table table td {
  padding: 12px !important;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: 0.5em;
}

table td:first-child,
table th:first-child {
  padding-left: 0;
}

table tr td:nth-child(2) {
    width: 25%;
}

.loader {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            width: 50px;
            height: 50px;
            border: 5px solid #ccc;
            border-top-color: #28a745;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 9999;
            transform: translate(-50%, -50%);
        }

        @keyframes spin {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

@media (max-width: 767px) {
  tr {
    float: left;
    width: 100% !important;
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
  }

  table td,
  table th {
    float: left;
    width: 100% !important;
    padding: 0 !important;
  }
}