@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;400;700');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@200;400;700&family=Open+Sans:wght@200;400;700');



body {
  background-color: #fff;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 0px;
  height: 100%;
  overscroll-behavior: contain;
}


.bodytitle {
  position: relative;
  text-align:left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: normal;
  color: #182e44;
}

.bodytitle_white {
  position: relative;
  text-align:left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: normal;
  color: #fff;
}



.bodytext {
  position: relative;
  text-align:left;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #182e44;
}

.bodytext a:link,
.bodytext a:hover,
.bodytext a:visited,
.bodytext a:active
{
color: #182e44;
text-decoration: none;
word-break: break-all;
}

.bodytext_white {
  position: relative;
  text-align:left;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 20px;
}

.bodytext_white a:link,
.bodytext_white a:hover,
.bodytext_white a:visited,
.bodytext_white a:active
{
color: #fff;
text-decoration: none;
word-break: break-all;
}

.bodytext_dark {
  position: relative;
  text-align:left;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  line-height: 20px;
}

.bodytext_dark a:link,
.bodytext_dark a:hover,
.bodytext_dark a:visited,
.bodytext_dark a:active
{
color: #000;
text-decoration: none;
word-break: break-all;
}



@media screen and (min-width: 601px) {
  .bodytext {
    font-size: 16px;
    line-height: 20px;
  }
  .bodytext_white {
    font-size: 16px;
    line-height: 20px;
  }
  .bodytext_dark {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .bodytext {
    font-size: 14px;
    line-height: 17px;
  }
  .bodytext_white {
    font-size: 14px;
    line-height: 17px;
  }
  .bodytext_dark {
    font-size: 14px;
    line-height: 17px;
  }
}





.textfield_grey {
    border-radius: 0px;
    border: 1px solid #aaa;
    padding: 5px 4px 5px 4px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    outline: none;
    background: #fff;
    box-sizing: border-box;
    margin-top: 2px;
}

.textfield_grey:active,
.textfield_grey:hover,
.textfield_grey:focus {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -moz-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -o-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
    -khtml-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.05) inset !important;
}








/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding: 0px;
  padding-left: 21px;
  top: -4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height: 11px;
  color: #222;
  background-color: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #222;
  background-color: none;
  position: absolute;
  left: 0;
  top: -2px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 5px;
  top: -6px;
  left: 3px;
  border-radius: 0;
  opacity: 1;
  background-color: none;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}







.linkstext {
  position: relative;
  text-align:left;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #333;
  line-height: 20px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}







.custom_button {
  display: inline-block; 
  position: relative; 
  vertical-align: middle; 
  top: 0px;
  padding: 8px 20px 8px 20px;
  text-align: center; 
  color: #ffd42a; 
  font-size: 18px; 
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background: #182e44;
  box-sizing: border-box;
  transition: 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom_button:hover {
  cursor: pointer;
  background: #222200;
}


.custom_button_disabled {
  display: inline-block; 
  position: relative; 
  vertical-align: middle; 
  top: 0px;
  padding: 8px 20px 8px 20px;
  text-align: center; 
  color: #fff; 
  font-size: 18px; 
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background: #888;
  box-sizing: border-box;
  transition: 0.3s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}





.micro_button {
  display: inline-block; 
  position: relative; 
  vertical-align: middle; 
  top: 0px;
  padding: 5px 8px 4px 8px;
  text-align: center; 
  color: #ffd42a; 
  font-size: 13px; 
  line-height: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  background: #182e44;
  box-sizing: border-box;
  transition: 0.3s;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.micro_button:hover {
  cursor: pointer;
  background: #222200;
}









#nav_links_container {
  display: inline-block; 
  position: relative; 
  padding: 18px 20px 10px 20px; 
  text-align: left; 
  color: #fff; 
  font-weight: normal; 
  font-size: 16px;
}
@media screen and (min-width: 701px) {
  #nav_links_container {
    display: inline-block;
  }
}
@media screen and (max-width: 700px) {
  #nav_links_container {
      display: none;
  }
}



#nav_icon_container {
  display: none;
  position: relative;
  padding: 15px 8px 0px 20px;
  text-align: left;
}
@media screen and (min-width: 701px) {
  #nav_icon_container {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #nav_icon_container {
      display: inline-block;
  }
}











  .loader {
    display: inline-block;
    color: #bb0000;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 72px auto;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  }
  @-webkit-keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @keyframes load6 {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  @-webkit-keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes round {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }







.menu_item {
  display: block;
  position: relative;
  text-align: left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  padding: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #000;
  background: #fff;
  border-bottom: 1px solid #ccc;
  white-space: no-wrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu_item:hover {
  color: #015;
  background: #ccc;
  cursor: pointer;
}



#menu_links_container {
  display: block;
  position: absolute; 
  font-size: 18px; 
  top: 20px; 
  right: 20px; 
  text-align: right;
  white-space: nowrap;
}

#menu_icon_container {
  display: none; 
  position: absolute; 
  right: 25px; 
  top: 15px; 
  height: 20px;
}

@media screen and (min-width: 701px) {
  #menu_links_container { 
      display: block; 
  }
  #menu_icon_container {
      display: none;
  }
}
@media screen and (max-width: 700px) {
  #menu_links_container { 
      display: none;
  }
  #menu_icon_container {
      display: block;
  }
}






.client_tab {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ddd;
  text-align: center;
  padding: 0px;
  padding-bottom: 3px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.client_tab:hover {
  color: #000;
  border-bottom: 1px solid #000;
} 

.client_tab_active {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  text-align: center;
  padding: 0px;
  padding-bottom: 3px;
  border-bottom: 3px solid #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.admin_tile {
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  background: #efefef;
  border-radius: 4px;
  flex-flow: row wrap;
  gap: 8px;
  justify-content: center;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  margin-bottom: 14px;
}





.adrianflux_box {
  content: url(pics/image005.gif);
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 18px;
  margin-top: 4px;
  box-sizing: border-box;
  padding: 0px;
  cursor: pointer;
}

@media screen and (min-width: 401px) {
  .adrianflux_box { 
      content: url(pics/image005.gif);
  }
}
@media screen and (max-width: 400px) {
  .adrianflux_box { 
      content: url(pics/image002.gif);
  }
}






.user_tile {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0px; 
  padding-bottom: 8px;
}


.user_tile_inner {
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 12px; 
  background: #eee;
  border-radius: 3px;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #555;
  line-height: 15px;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 12px;
  break-inside: avoid;
}


.user_tile_title {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  height: 19px;
  text-align: left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #222;
  line-height: 16px;
  text-wrap: nowrap;
  text-overflow: ellipsis; 
  overflow: hidden;
}


.user_tile_text {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  height: 16px;
  text-wrap: nowrap;
  text-overflow: ellipsis; 
  overflow: hidden;
}


.user_tile_comment {
  width: 100%;
  box-sizing: border-box;
  padding: 0px;
  padding-left: 10px;
  margin-top: 3px; 
  margin-bottom: 3px;
  color: #777;
}



#user_columns {
  display: block;
  position: relative;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  text-align: left;
  column-count: 4; 
  column-gap: 20px;
  column-fill: balance;
}

@media screen and (min-width: 1201px) {
  #user_columns { 
      column-count: 4; 
  }
}
@media screen and (min-width: 851px) and (max-width: 1200px) {
  #user_columns { 
      column-count: 3; 
  }
}
@media screen and (min-width: 501px) and (max-width: 850px) {
  #user_columns { 
      column-count: 2; 
  }
}
@media screen and (max-width: 500px) {
  #user_columns { 
      column-count: 1;
  }
}



.mini_map_container {
  display: inline-block; 
  position: relative; 
  flex-grow: 1; 
  text-align: right; 
  padding: 0px; 
  box-sizing: border-box;
}

@media screen and (min-width: 621px) {
  .mini_map_container { 
      text-align: right;
  }
}
@media screen and (max-width: 620px) {
  .mini_map_container { 
      text-align: left;
      width: 100%;
  }
}




#footer_links {
  display: inline-block; 
  position: relative; 
  padding: 0px; 
  box-sizing: border-box; 
  text-align: right; 
  flex-grow: 1;
}

@media screen and (min-width: 501px) {
  #footer_links { 
      width: initial; 
      text-align: right;
  }
}
@media screen and (max-width: 500px) {
  #footer_links { 
      width: 100%;
      text-align: left;
  }
}




.form_flex_box_quarter {
  display: inline-block; 
  position: relative; 
  width: calc(35% - 10px); 
  text-align: left;
  padding: 0px;
  box-sizing: border-box;
}

.form_flex_box_half {
  display: inline-block; 
  position: relative; 
  width: calc(50% - 10px); 
  text-align: left;
  padding: 0px;
  box-sizing: border-box;
}

.form_flex_box_three_quarter {
  display: inline-block; 
  position: relative; 
  width: calc(65% - 10px); 
  text-align: left;
  padding: 0px;
  box-sizing: border-box;
}

.form_flex_box_full {
  display: inline-block; 
  position: relative; 
  width: 100%; 
  text-align: left;
  padding: 0px;
  box-sizing: border-box;
}

@media screen and (min-width: 701px) {
  .form_flex_box_half { 
      width: calc(50% - 10px);
  }
  .form_flex_box_quarter { 
      width: calc(35% - 10px);
  }
  .form_flex_box_three_quarter { 
      width: calc(65% - 10px);
  }
}
@media screen and (max-width: 700px) {
  .form_flex_box_half { 
      width: 100%;
  }
  .form_flex_box_quarter { 
      width: 100%;
  }
  .form_flex_box_three_quarter { 
      width: 100%;
  }
}






.listing_upload_photo {
  display: inline-block;
  position: relative;
  width: 134px;
  height: 112px;
  font-size: 10px;
  color: #00b;
  padding: 0px;
  box-sizing: border-box;
  text-align: left;
}

.listing_upload_photo_inner {
  display: block;
  position: relative;
  width: 100%;
  height: 102px;
  background: #efefef;
  padding: 0px;
  box-sizing: border-box;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}









.zoomer {
  -webkit-animation-name: zoom1; /* Chrome, Safari, Opera */
  animation-name: zoom1;
  -webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
  animation-duration: 1s;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: scale(1);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-transform: scale(1);
}

/* Chrome, Safari, Opera */
@-webkit-keyframes zoom1 {
  0% {transform: scale(0.01); visibility: visible; }
  100% {transform: scale(1); visibility: visible; }
}

@keyframes zoom1 {
  0% {transform: scale(0.01); visibility: visible; }
  100% {transform: scale(1); visibility: visible; }
}



.zoomer_spin {
  -webkit-animation-name: zoomspin1; /* Chrome, Safari, Opera */
  animation-name: zoomspin1;
  -webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
  animation-duration: 1s;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: scale(1);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-transform: scale(1);
}

/* Chrome, Safari, Opera */
@-webkit-keyframes zoomspin1 {
  0% {transform: rotate(260deg) scale(0.01);  opacity: 0.0; filter: alpha(opacity=0); visibility: visible; }
  100% {transform: rotate(0deg) scale(1);  opacity: 1.0; filter: alpha(opacity=100); visibility: visible; }
}

@keyframes zoomspin1 {
  0% {transform: rotate(260deg) scale(0.01);  opacity: 0.0; filter: alpha(opacity=0); visibility: visible; }
  100% {transform: rotate(0deg) scale(1);  opacity: 1.0; filter: alpha(opacity=100); visibility: visible; }
}







.terms_container {
  display: inline-block;
  position: relative;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #182e44;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  text-align: left;
  text-align: justify;
  column-count: 2; 
  column-gap: 20px;
  column-rule: 1px solid #182e44;
  box-sizing: border-box;
  padding: 0px;
}

@media screen and (min-width: 651px) {
  .terms_container { 
  column-count: 2;
  font-size: 14px;
  line-height: 16px;
  }
}
@media screen and (min-width: 401px) and (max-width: 650px) {
  .terms_container { 
  column-count: 1;
  font-size: 13px;
  line-height: 15px;
  }
}
@media screen and (max-width: 400px) {
  .terms_container { 
  column-count: 1;
  font-size: 11px;
  line-height: 13px;
  }
}





.info_body_collapsed {
  display: inline-block;
  position: relative;
  font-size: 15px;
  line-height: 23px;
  padding: 0px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  text-align: left;
  height: 55px;
  margin-bottom: 10px;
  overflow-y: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.info_body_collapsed:after {
  content: "\A [Read more]      ";
  white-space: pre;
  position: absolute;
  text-align: center;
  font-size: 13px;
  line-height: 24px;
  color: rgba(0,0,200,0.6);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-image: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,1));
}

.info_body_expanded {
  display: inline-block;
  position: relative;
  font-size: 15px;
  line-height: 23px;
  padding: 0px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  text-align: left;
  margin-bottom: 10px;
  overflow-y: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.h_rule {
  display: block;
  position: relative;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}








#menu_container {
    display: none; 
    position: absolute; 
    top: calc(100% + 4px); 
    right: 0px; 
    background: #fff; 
    border: 1px solid #000; 
    padding: 0px; 
    box-sizing: border-box; 
    z-index: 999999;
}


.menu_item {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    background: #fff;
    border-bottom: 1px solid #aaa;
    padding: 5px 24px 3px 16px;
    box-sizing: border-box;
    text-align: left;
    transition: 0.3;
    margin: 0px;
    color: #444;
    white-space: nowrap;
    cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu_item:hover {
    color: #000;
}



.new_text_link {
  display: inline-block;
  position: relative;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
  color: #ffd42a;
  box-sizing: border-box;
  padding: 0px;
  margin-left: 20px;
  transition: 0.3;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.new_text_link:hover {
  color: #fff;
}



#nav_text_links_container {
  display: inline-flex; 
  position: relative; 
  height: 30px; 
  padding: 0px; 
  flex-grow: 1; 
  align-items: center; 
  align-content: center; 
  color: #fff; 
  justify-content: flex-end;
}

#nav_menu_icon {
    display: none; 
    position: absolute; 
    right: 0px; 
    top: 10px; 
    bottom: 10px; 
    width: 28px; 
    box-sizing: border-box; 
    padding: 0px; 
    cursor: pointer; 
    flex-flow: row wrap; 
    gap: 6px; 
    align-content: center; 
    align-items: center;
}

@media screen and (min-width: 626px) {
  #nav_text_links_container { 
    display: inline-flex;
  }
  #nav_menu_icon {
    display: none;
  }
}
@media screen and (max-width: 625px) {
  #nav_text_links_container { 
      display: none;
  }
  #nav_menu_icon {
      display: inline-flex;
  }
}


