@charset "UTF-8";
/*
Theme Name: Supply Dash - Developer Theme
Description: This is a bare bones theme used for building out custom themes
Author: Adam Bates
Version: 1.0.2
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans: 400,700|Raleway: 400,700&display=swap");
.button {
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  background: #f4f4f4;
  text-decoration: none;
  padding: 9px 25px;
  color: #333;
  border: none;
}
.button .fa {
  margin: 0 7px 0 0;
}
.button :disabled,
.button .disabled {
  cursor: default;
  opacity: 0.5;
}
.button :hover {
  background: #dadada;
  transform: scale(1.04);
}
.button.green {
  background: #50b981;
  color: #fff;
}
.button.green :hover {
  background: #3faa71;
}
.button.blue {
  background: #1e1ca4;
  color: #fff;
}
.button.blue :hover {
  background: #1288b7;
}
.button.grey {
  background: #333;
  color: #fff;
}
.button.grey :hover {
  background: #202020;
}
.button.black {
  background: #000;
  color: #fff;
}
.button.black :hover {
  background: #202020;
}

.form_style_1 {
  position: relative;
}
.form_style_1 .element_wrap {
  width: 100%;
  margin: 0 0 4% 0;
  display: inline-block;
  vertical-align: top;
}
.form_style_1 .element_wrap label {
  display: block;
  font-weight: bold;
  margin: 0 0 4px 0;
  opacity: 0.8;
}
.form_style_1 .element_wrap [type=text],
.form_style_1 .element_wrap [type=password],
.form_style_1 .element_wrap [type=email],
.form_style_1 .element_wrap textarea,
.form_style_1 .element_wrap select {
  width: 100%;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1px solid #b5b5b5;
  box-sizing: border-box;
}
.form_style_1 .element_wrap [type=text].required,
.form_style_1 .element_wrap [type=password].required,
.form_style_1 .element_wrap [type=email].required,
.form_style_1 .element_wrap textarea.required,
.form_style_1 .element_wrap select.required {
  background: #ffe5e5;
  border: 1px solid #ff9393;
}
.form_style_1 .element_wrap select {
  width: 100%;
  padding: 7px 4%;
  border-radius: 3px;
}
.form_style_1 .element_wrap.one_half {
  width: 48.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_third {
  width: 31.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.two_thirds {
  width: 65.5%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_fourth {
  width: 23%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.one_fifth {
  width: 18%;
  margin: 0 0 3% 2%;
}
.form_style_1 .element_wrap.row_first {
  margin: 0 0 3% 0;
}
.form_style_1 .instructions {
  margin: 0 0 6px 0;
  opacity: 0.7;
  font-size: 14px;
}
.form_style_1 .form_loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  background-size: 60px 60px;
  transition: all 0.2s ease;
  display: none;
  z-index: 99;
  text-align: center;
}
.form_style_1 .form_loading svg {
  margin: 20px 0 0 0;
}
.form_style_1 [type=submit] {
  font-size: 16px;
  padding: 8px 30px;
}

.lightbox_blur {
  filter: blur(3px);
}

#vlb_lightbox_mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}

#vlb_lightbox {
  position: fixed;
  top: 10px;
  left: 50%;
  padding: 0px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  transform: rotateY(90deg);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  opacity: 0;
  /* transform: scale(50); 
    */
  filter: blur(0);
  -webkit-transform: translateZ(0);
}
#vlb_lightbox.open {
  opacity: 1;
  transform: rotateY(0deg);
  top: 50px;
  transform: scale(1);
}
#vlb_lightbox .lb_title {
  margin: 0 0 10px 0;
}
#vlb_lightbox #vlb_lightbox_close {
  position: absolute;
  top: -20px;
  right: -13px;
  font-size: 33px;
  transition: all 0.2s ease;
  opacity: 0.7;
  z-index: 99;
  color: #fff;
}
#vlb_lightbox #vlb_lightbox_close :hover {
  opacity: 1;
}

#md_lightbox_mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  display: none;
}

#md_lightbox {
  position: fixed;
  top: 10px;
  left: 50%;
  padding: 20px;
  background: #fff;
  z-index: 99999999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  transform: rotateY(90deg);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  opacity: 0;
  /* transform: scale(50); 
    */
  filter: blur(0);
  -webkit-transform: translateZ(0);
}
#md_lightbox.open {
  opacity: 1;
  transform: rotateY(0deg);
  top: 50px;
  transform: scale(1);
}
#md_lightbox .lb_title {
  margin: 0 0 10px 0;
}
#md_lightbox #lightbox_close {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 25px;
  transition: all 0.2s ease;
  opacity: 0.5;
  z-index: 99;
}
#md_lightbox #lightbox_close :hover {
  opacity: 1;
}
#md_lightbox.lb_message {
  text-align: center;
}
#md_lightbox.lb_message .fas {
  display: block;
  text-align: center;
  font-size: 30px;
  margin: 0 0 10px 0;
}
#md_lightbox.lb_message p {
  font-size: 18px;
  margin: 20px 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  margin: 0;
}

.content_wrap {
  position: relative;
}

.clear {
  clear: both;
}

.alignleft {
  float: left;
  margin: 15px 15px 15px 0;
}

.alignright {
  float: right;
  margin: 15px 0 15px 15px;
}

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #4e4e4e;
}

.md-loading-mask {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 99;
}

.md-loading-spinner {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #333;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  animation: spin 1s linear infinite;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.theme_sn a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
}
.theme_sn a:hover {
  transform: scale(1.2);
}
.theme_sn a .sr_text {
  display: none;
}

body {
  background: #fff;
}

#main_header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to left, #28a5f5, #1e87f0);
  z-index: 999;
}
#main_header .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #main_header .content_wrap {
    justify-content: center;
  }
}

#logo img {
  height: clamp(30px, 5vw,50px);
  width: auto;
  margin-left: 1rem;
}

#main_nav {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1000;
}
#main_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
#main_nav ul li {
  display: inline-block;
  position: relative;
}
#main_nav ul li:last-of-type {
  margin-right: 1rem;
}
#main_nav ul li a {
  display: inline-block;
  position: relative;
  line-height: 30px;
  padding: 0 0.75vw;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: bold;
  color: #fff;
}
#main_nav ul li a:hover {
  color: #052545;
}
#main_nav ul li:hover .sub-menu {
  display: block;
}
#main_nav ul li.current-menu-item a {
  background: #efefef;
}
#main_nav ul li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 8px;
  vertical-align: top;
  transition: all 0.2s ease;
  opacity: 0.5;
}
#main_nav ul li.menu-item-has-children.submenu_open > a:after {
  transform: rotate(180deg);
}
#main_nav ul li.submenu_open > ul.sub-menu {
  max-height: 500px;
  transition: all 0.2s ease-in;
  opacity: 1;
  transform: scale(1);
  z-index: 9999;
  display: block;
  overflow: visible;
}
#main_nav ul.sub-menu {
  position: absolute;
  left: 0;
  top: 30px;
  background: #efefef;
  min-width: 150px;
  transition: all 0.2s ease-out;
  text-align: left;
  max-height: 0;
  opacity: 0;
  transform: scale(0.5);
  overflow: hidden;
}
#main_nav ul.sub-menu li {
  display: block;
}
#main_nav ul.sub-menu li a {
  line-height: 30px;
  display: block;
  white-space: nowrap;
  background: none;
  color: #333;
  font-weight: normal;
}
#main_nav ul.sub-menu li a:hover {
  background: #dadada;
}
#main_nav ul.sub-menu li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  font-size: 8px;
  vertical-align: top;
  font-weight: 700;
}
#main_nav ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0;
}

#mobile_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px;
  margin: 0 0 0 -261px;
  background: #fff;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  z-index: 9999999;
  display: none;
}
#mobile_nav.open {
  box-shadow: 0 0 5px 0 #dadada;
  margin: 0;
}
#mobile_nav #menu_scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 260px;
  background: #fff;
  text-align: center;
  overflow-y: scroll;
  direction: rtl;
}
#mobile_nav #nav_button {
  position: absolute;
  top: 0;
  left: 100%;
  width: 56px;
  height: 52px;
  line-height: 52px;
  font-size: 30px;
  text-align: center;
  color: #333333;
  transition: all 0.1s ease;
  cursor: pointer;
  z-index: 9999999;
}
#mobile_nav #nav_button #icon_holder:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  transition: all 0.2s ease;
  font-weight: 700;
}
#mobile_nav #nav_button i {
  margin: 0 7px 0 0;
}
#mobile_nav.open #nav_button {
  background: #333333;
  color: #fff;
}
#mobile_nav.open #nav_button #icon_holder:before {
  content: "";
}
#mobile_nav li {
  position: relative;
}
#mobile_nav li a {
  display: block;
  padding: 10px 5px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  transition: all 0.1s ease;
  direction: ltr;
}
#mobile_nav li a:hover {
  background: #f1f1f1;
}
#mobile_nav li .submenu_toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 11px;
  transition: all 0.2s ease;
  display: block;
  border-left: 1px solid #f1f1f1;
  background: #f9f9f9;
}
#mobile_nav li .submenu_toggle i {
  transition: all 0.2s ease;
}
#mobile_nav li .submenu_toggle.open i {
  transform: rotate(180deg);
}
#mobile_nav li .sub-menu {
  display: none;
}
#mobile_nav li .sub-menu a {
  display: block;
  padding: 10px 5px;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  background: none;
  border-bottom: 1px solid #f2f2f2;
  margin: 0;
  transition: all 0.1s ease;
  background: #f9f9f9;
}
#mobile_nav li .sub-menu a:hover {
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  #mobile_nav {
    display: block;
  }
}

.admin-bar #main_header {
  top: 32px;
}
.admin-bar #mobile_nav {
  top: 46px;
}
@media screen and (max-width: 782px) {
  .admin-bar #main_header {
    top: 46px;
  }
}

#container {
  min-height: 350px;
  margin: 0px auto 0;
  padding: 40px 20px 40px 20px;
  max-width: 768px;
}

.fl-builder #container {
  margin: 0;
  padding: 0;
}

.entry-title {
  margin: 0 0 15px 0;
  font-family: var(--header_font);
  color: var(--header_font_color);
  font-size: 23px;
}

#content {
  float: left;
}

#sidebar {
  width: 25%;
  float: right;
}
#sidebar ul.sid {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidebar .widget-container {
  background: #f6f6f6;
  margin: 0 0 20px 0;
  padding: 20px 30px;
}
#sidebar .widget-title {
  margin: 0 0 10px 0;
  color: #3b3b3b;
  font-size: 17px;
}

.category .post {
  border-bottom: 1px solid #dadada;
  padding: 20px 0;
}
.category .post .entry-title {
  font-size: 20px !important;
  margin: 0 0 10px 0 !important;
}
.category .post .entry-meta {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  margin: 0 0 10px 0;
}
.category .post .thumbnail {
  float: left;
  height: 90px;
  width: 140px;
  margin: 5px 20px 20px 0;
}
.category .post p {
  margin: 0 0 10px 0;
}

.single .entry-meta {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  margin: 0 0 15px 0;
}

#main_footer {
  text-align: center;
  background: #f9f9f9;
  padding: 20px 0;
}
#main_footer p {
  margin: 0;
}
#main_footer a {
  color: #dadada;
}
#main_footer #footer_nav {
  margin: 0 0 20px 0;
}
#main_footer #footer_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#main_footer #footer_nav ul li {
  display: inline-block;
}
#main_footer #footer_nav ul li a {
  display: inline-block;
  padding: 5px 15px;
  color: #333;
  text-decoration: none;
}
#main_footer #footer_content {
  margin: 0 0 20px 0;
}

#wp-toolbar > ul > li {
  display: block !important;
}

a {
  color: #1e87f0;
}
a.address {
  color: #333;
  text-decoration: underline;
  text-decoration-color: #1e87f0;
}

h1 small {
  display: block;
  font-size: 70%;
  color: #808080;
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 0.05rem solid #1e87f0;
  border-radius: 0.1rem;
  color: #1e87f0;
  cursor: pointer;
  display: inline-block;
  outline: 0;
  padding: 0.25rem 0.4rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s, color 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
.btn.primary {
  background: #1e87f0;
  border-color: #1e87f0;
  color: #fff;
}
.btn.fullwidth {
  width: 100%;
  text-align: center;
}
.btn.update-project {
  margin-top: 2rem;
}

i {
  margin-right: 0.6rem;
}
i.fa-map-marker {
  color: #E32A29;
}

#project-notes {
  font-size: 20px;
  line-height: 1.3;
  color: #222;
  font-weight: 300;
}

hr {
  border: 0;
  border-top: 1px solid #EAECF0;
}

#main_nav ul {
  display: flex;
  justify-content: space-around;
}
#main_nav ul li a {
  font-size: 1.05rem;
}

#driver-dashboard {
  margin-top: 2rem;
}
#driver-dashboard h2 a {
  display: flex;
  justify-content: space-between;
}

.project-status {
  display: inline-block;
  padding: 0 10px;
  background: #9ec35b;
  line-height: 1.5;
  font-size: 15px;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
  text-transform: uppercase;
}
.project-status.project-due {
  max-height: 2rem;
  background: #f0506e;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acf-form-submit input {
  width: 100%;
}

#message.updated {
  color: #00b300;
}

.ui-datepicker-current {
  background: #82BE36 !important;
  color: #fff !important;
  font-weight: bold !important;
  opacity: 1 !important;
  border-color: #639029 !important;
}
.ui-datepicker-current:hover {
  background: #639029 !important;
}

#list-of-finished-projects .entry-title {
  font-size: 16px;
  font-weight: normal;
}
#list-of-finished-projects .entry-title .project-status {
  display: none;
}
#list-of-finished-projects a {
  pointer-events: none;
  color: #555;
}

/*# sourceMappingURL=style.css.map */
