@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.material-icons {
  vertical-align: top;
  margin-right: 10px;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
  align-items: left;
  background-image: linear-gradient(to left, #9edae8, #1b7890);
  padding: 20px 5%;
}

.logo {
  text-align: left;
}

.logo a {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(240, 240, 240);
  text-decoration: none;
}

.menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
  align-items: left;
}

.menu a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
}

.menu li {
  display: block;
  text-align: left;
}

.name {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  padding: 0 20px;
}

.drop_menu a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5);
  padding: 5px 0;
  display: block;
}

.drop_button {
  padding-right: 20px;
}

.drop_menu {
  display: none;
  background-color: rgba(240, 240, 240, 0.5);
  padding: 10px 20px;
  margin-left: -150px;
  margin-top: 5px;
  position: fixed;
}

.drop_button:hover .drop_menu {
  display: block;
} */

.drop_menu a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5);
  padding: 5px 0;
  display: block;
}


.drop_button {
  padding-right: 20px;
  position: relative;  /* Added so that the dropdown is positioned relative to this button */
}

.drop_button span {
  color: #1b7890;
  cursor: pointer;
}

.drop_menu {
  display: none;
  background-color: rgba(240, 240, 240, 0.5);
  padding: 10px 20px;
  position: absolute;  /* Changed from fixed to absolute for proper positioning */
  right: 0;            /* Aligns the dropdown to the right edge of the drop_button */
  top: 100%;           /* Positions the dropdown right below the drop_button */
  z-index: 1000;       /* Ensures the dropdown appears on top */
  width: 250px;        /* Optional: You can set a width for your dropdown menu */
}

.data {
  background-image: linear-gradient(to right, #1b7890, #9edae8);
  padding: 20px 5%;
}

.data h2 {
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #fdba48;
  margin: 30px 0;
}

.data h4 {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  margin-bottom: 30px;
  color: #1b7890;
  color: rgb(240, 240, 240);
}

.note {
  margin-top: 20px;
}

.functions {
  margin-right: 10px;
  padding: 20px 0;
}

.options {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  margin: 30px 0;
}

.options form#search {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  font-size: 14px;
}

.options form#search input {
  width: 200px;
}

.options form#show {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  font-size: 14px;
  padding: 15px 0;
}

.options select {
  font-size: 20px;
  border: 0.5 solid #1b7890;
}

.data span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 16px;
  color: #1b7890;
  padding: 10px 20px;
}

.data #legend {
  color: rgb(240, 240, 240);
  padding: 0;
}

.data #red {
  background-color: rgb(214, 163, 163);
}

.data #red:hover {
  background-color: rgba(214, 163, 163, 0.5);
}

.data #green {
  background-color: rgb(149, 195, 149);
}

.data #green:hover {
  background-color: rgba(149, 195, 149, 0.5);
}

.data #yellow {
  background-color: rgb(227, 227, 177);
}

.data #yellow:hover {
  background-color: rgba(227, 227, 177, 0.5);
}

.data #blue {
  background-color: rgb(44, 195, 255);
}

.data #blue:hover {
  background-color: rgba(44, 195, 255, 0.5);
}

.data #white {
  background-color: #9edae8;
}

.data #white:hover {
  background-color: rgba(158, 218, 232, 0.3);
}

.data #grey {
  background-color: rgb(167, 167, 167);
}

.data #grey:hover {
  background-color: rgba(167, 167, 167, 0.5);
}

form {
  text-align: center;
  margin: 10px 0;
}

form#comment input {
  width: 70%;
  height: 30px;
  margin: 0 20px;
}
.salesforce {
  text-align: center;
  margin: 10px 0;
}

.salesforce button {
  cursor: pointer;
  border: 2px solid rgb(240, 240, 240);
  padding: 8px 20px;
  background-color: rgba(214, 163, 163, 0.5);
  font-size: 14px;
  color: rgb(240, 240, 240);
  margin: 10px 0;
}

footer {
  background-color: #1b7890;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding: 20px 5%;
  height: 300px;
}

.info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: left;
  align-items: left;
}

.logo-descr {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 16px;
  color: rgb(240, 240, 240);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: left;
  text-align: left;
  align-items: left;
  width: 300px;
  display: inline-block;
}

.footer-nav li {
  display: block;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5);
  padding: 10px;
  transition: 1s;
}

.footer-nav li:hover {
  background-color: rgba(240, 240, 240, 0.5);
}

.footer-nav a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  font-size: 14px;
}

table {
  margin: 20px auto;
  background-color: rgba(240, 240, 240, 0.5);
  align-items: center;
  border: none;
  width: 100%;
  border-collapse: collapse;
}

.tbl-content {
  overflow-x: auto;
  margin: 20px 0;
}

th {
  padding: 10px 5px;
  background-color: #1b7890;
  text-align: left;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: rgb(240, 240, 240);
}

td {
  background-color: rgba(240, 240, 240, 0.5);
  padding: 10px 5px;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid 1px rgba(240, 240, 240, 0.5);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: #1b7890;
}

td a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: #1b7890;
  text-decoration: underline;
}

tr:hover {
  background-color: white;
}

select {
  font-size: 14px;
  padding: 1px 23px 0px 2px;
  width: 100px;
}

img#status {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

button.light-btn {
  display: block;
  border: 3px solid #1b7890;
  border-radius: 2px;
  background-color: rgb(240, 240, 240);
  padding: 10px 20px;
  margin: 20px 0;
  color: #1b7890;
  font-size: 18px;
  cursor: pointer;
}

button.light-btn:hover {
  outline-offset: -4px;
  outline: 4px solid #1b7890;
}

button.dark-btn {
  display: block;
  background-color: #1b7890;
  border: 2px solid rgb(240, 240, 240);
  padding: 10px 20px 10px 10px;
  font-size: 22px;
  margin: 20px 0;
  color: rgb(240, 240, 240);
  cursor: pointer;
  text-decoration: none;
}

button.dark-btn:hover {
  background-color: #9edae8;
}

button.highlight-btn {
  background-color: #fdba48;
  border: 2px solid #fdba48;
  padding: 20px 40px 20px 20px;
  font-size: 22px;
  color: #1b7890;
  cursor: pointer;
}

button.highlight-btn:hover {
  background-color: #9edae8;
  border: 2px solid #9edae8;
}

button.add {
  background-color: #fdba48;
  border: 2px solid #fdba48;
  padding: 10px 20px;
  font-size: 18px;
  color: #1b7890;
  cursor: pointer;
}

button.move {
  background-color: rgb(240, 240, 240);
  border: 2px solid rgb(240, 240, 240);
  padding: 10px 20px;
  font-size: 18px;
  margin: 30px 0;
  color: rgb(90, 90, 90);
  cursor: pointer;
}

form button {
  cursor: pointer;
  border: 2px solid rgb(240, 240, 240);
  padding: 8px 20px;
  background-color: rgba(214, 163, 163, 0.5);
  font-size: 14px;
  color: rgb(240, 240, 240);
  margin: 10px 0;
}

.banner {
  background-image: linear-gradient(to left, #9edae8, #1b7890);
  padding: 100px 5%;
}

.banner h1 {
  font-size: 72px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #fdba48;
}

.banner h3 {
  font-size: 52px;
  font-style: bold;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  color: rgb(240, 240, 240);
}

.banner p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
}

.banner button {
  margin: 50px 0;
}

.paginator {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 50px 0;
}

.paginator a {
  padding: 20px;
  font-size: 52px;
  font-style: bold;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  color: rgb(240, 240, 240);
  font-size: 18px;
}

.paginator a.active {
  background-color: #fdba48;
}

.paginator a.visited {
  background-color: rgba(158, 218, 232, 0.3);
}

.paginator a.nonactive, .paginator a.previous, .paginator a.next {
  background-color: rgba(33, 147, 176, 0.3);
}

.navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  text-align: left;
  align-items: left;
}

.navigation a#main {
  background-color: #1b7890;
  padding: 5px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  font-size: 12px;
}

.navigation a#active {
  padding: 5px 10px;
  border-bottom: 2px solid rgb(240, 240, 240);
  margin: 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  font-size: 12px;
}

.log-reg {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
  align-items: left;
  background-image: linear-gradient(to left, #9edae8, #1b7890);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  padding: 50px 5%;
}

form label {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
}

form.login,
form.registration {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: left;
  text-align: left;
  align-items: left;
  margin: 20px 0;
  padding: 50px;
  background-color: #9edae8;
}

form.login h4,
form.registration h4 {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  margin-bottom: 30px;
  color: #1b7890;
}

form input {
  width: 320px;
  height: 35px;
  border: 0.5px solid #1b7890;
  padding-left: 10px;
  margin: 10px 0;
  color: #1b7890;
  font-size: 16px;
}

form input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.openid {
  background-color: rgb(240, 240, 240);
  color: #1b7890;
  text-align: center;
  padding: 10px 0;
  margin: 10px 0;
}

.openid:hover {
  background-color: #1b7890;
  color: rgb(240, 240, 240);
}

form a,
#rememberme {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
  text-align: center;
  font-size: 18px;
}

form.login input:required,
form.registration input:required {
  border: 1px solid #fdba48;
}

.whylog {
  margin: 50px;
  width: 500px;
}

.whylog h3 {
  margin: 30px 0;
  font-size: 52px;
  font-style: bold;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
}

.whylog p {
  margin: 10px 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
}

.whylog li {
  padding-left: 10px;
}

.error {
  background-color: #9edae8;
  border: 3px solid #1b7890;
  margin: 10px;
  padding: 20px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  width: 300px;
}

.error2 {
  padding: 0 10px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: red;
  width: 300px;
}

ul.errorlist{
  margin: 0px;
}
ul.errorlist li{
  color: red;
  list-style: none;
  font-size: 14px;

}

.dashboard {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: left;
  align-items: left;
}

.profile {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: left;
  text-align: left;
  align-items: left;
  background-color: #9edae8;
  padding: 20px;
  margin: 50px 0;
}

.profile p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: #1b7890;
}

.profile h4 {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  margin-bottom: 30px;
  color: #1b7890;
  color: #1b7890;
}

.profile h5 {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  color: #1b7890;
}

.profile a {
  text-decoration: none;
}

.profile form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: left;
  text-align: left;
  align-items: left;
  font-size: 12px;
  margin: 20px 0;
}

.profile form p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-size: 14px;
  color: #1b7890;
}

#shortinput {
  width: 150px;
}

.access {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  text-align: center;
  align-items: left;
  margin: 50px;
}

.access a {
  background-color: #fdba48;
  color: #1b7890;
  padding: 20px 40px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
}

#autopop1 ul, #autopop2 ul {
  margin: 0;
}

#OfficeValue {
  width: 200px;
}

#office-filters-list p, #naics-filters-list p {
  width: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.naics-to-value {
  width: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

#NaicsFromValue, #NaicsToValue {
  width: 100px;
}

.filters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.filters label {
  color: rgb(240, 240, 240);
}

.filters select {
  height: 35px;
  line-height: 30px;
  border: 1px solid #1b7890;
  border-radius: 0px;
}

.order_by {
  width: 200px;
}

.export {
  margin: 30px 0;
  background-color: #9edae8;
  border: 2px solid #9edae8;
  padding: 10px 20px;
  font-size: 18px;
  color: #1b7890;
  cursor: pointer;
  transition: 1s;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
}

.export:hover {
  background-color: #fdba48;
  border: 2px solid #fdba48;
  color: rgb(240, 240, 240);
}

.bds {
  width: 100%;
}

.bds h5 {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  margin-bottom: 30px;
  color: #1b7890;
  color: rgb(240, 240, 240);
}

.bds form {
  text-align: left;
}

.bds form label {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: rgb(240, 240, 240);
}

.bds form input {
  width: 100%;
}

.bds select {
  height: 35px;
  width: 100%;
  line-height: 30px;
  border: 1px solid #1b7890;
  border-radius: 0px;
  display: block;
  margin: 10px 0;
}

.bds textarea {
  width: 100%;
  border: 1px solid #1b7890;
  display: block;
  margin: 10px 0;
}

.article {
  background-color: rgb(240, 240, 240);
  padding: 20px 5%;
}

.article h1 {
  font-size: 72px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #fdba48;
  margin: 30px 0;
}

.article h2 {
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  margin: 20px 0;
}

.article h3 {
  font-size: 52px;
  font-style: bold;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  color: #1b7890;
  margin: 20px 0;
}

.article h4 {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  margin-bottom: 30px;
  color: #1b7890;
  color: #9edae8;
  margin: 20px 0;
}

.article h5 {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #1b7890;
  color: #9edae8;
  margin: 20px 0;
}

.article ol, ul {
  margin: 20px 50px;
}

.article p, li {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
}

.article a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  text-decoration: underline;
}

.article span {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  color: #1b7890;
  font-style: italic;
}

.article table {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
}

.article img {
  margin: 20px 0;
}/*# sourceMappingURL=main.css.map */