/*====================
======================
BASE CSS
======================
====================*/
/*---------- COLORS ----------*/
/*-----
GREY
-----*/
/*-----
END GREY
-----*/
/*-----
ORANGE
-----*/
/*-----
END ORANGE
-----*/
/*-----
BLUE
-----*/
/*-----
END BLUE
-----*/
/*-----
GREEN
-----*/
/*-----
END GREEN
-----*/
/*-----
PURPLE
-----*/
/*-----
END PURPLE
-----*/
/*-----
RED
-----*/
/*-----
END RED
-----*/
/*-----
WARNING LEVELS
-----*/
/*-----
END WARNING LEVELS
-----*/
/*---------- END COLORS ----------*/
/*---------- FONTS ----------*/
/*-----
PRIMARY FONT
-----*/
/*-----
END PRIMARY FONT
-----*/
/*-----
SECONDARY FONT
-----*/
/*-----
END SECONDARY FONT
-----*/
/*-----
TERTIARY FONT
-----*/
/*-----
END TERTIARY FONT
uses: h2, h3
-----*/
/*---------- END FONTS ----------*/
/*---------- HEADER HEIGHTS ----------*/
/*---------- END HEADER HEIGHTS ----------*/
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #555555;
  line-height: 1em;
  background: #f9f9f9;
}
@media only screen and (min-width: 992px) {
  body.active-user {
    padding-bottom: 54px;
  }
}
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 10px;
}
a {
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
a,
input,
textarea {
  outline: none !important;
}
hr {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-color: #757575;
  border-width: 1px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='url'],
input[type='number'],
textarea {
  box-shadow: none;
  -webkit-appearance: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  font-style: italic;
  opacity: 1;
}
::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  font-style: italic;
  opacity: 1;
}
:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  font-style: italic;
  opacity: 1;
}
:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  font-style: italic;
  opacity: 1;
}
::placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  font-style: italic;
  opacity: 1;
}
body {
  letter-spacing: 0.01em;
}
body #drawer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
body.open-nav #header-wrapper {
  background: transparent;
}
body.open-nav #header-wrapper #header {
  width: calc(100% - 320px);
}
body.open-nav #drawer-wrapper {
  width: 320px;
}
body.open-nav #content-main {
  padding-left: 320px;
}
body.open-nav #content-main .actions-wrapper {
  width: calc(100% - 320px);
}
/*========== HEADER ==========*/
#header-wrapper {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background: #f9f9f9;
  -webkit-transition: background 250ms linear;
  -moz-transition: background 250ms linear;
  -o-transition: background 250ms linear;
  -ms-transition: background 250ms linear;
  transition: background 250ms linear;
}
#header-wrapper #logo-wrapper {
  float: left;
  padding: 24px 0;
}
#header-wrapper #logo-wrapper #logo {
  width: 180px;
}
#header-wrapper #header {
  position: relative;
  float: right;
  width: 100%;
  width: calc(100% - 210px);
  padding: 24px 0;
  background: #f9f9f9;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#header-wrapper #header .icons {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#header-wrapper #header .icons .hamburger {
  float: left;
  width: 19px;
  margin-top: 2px;
  cursor: pointer;
}
#header-wrapper #header .icons .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  background-color: #313131;
  border-radius: 2px;
}
#header-wrapper #header .icons .hamburger span.last {
  width: 60%;
  margin-bottom: 0;
}
#header-wrapper #header .icons .hamburger span.first,
#header-wrapper #header .icons .hamburger span.second,
#header-wrapper #header .icons .hamburger span.third {
  transition: all 0.35s linear;
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}
#header-wrapper #header .icons .hamburger.open span {
  height: 3px;
}
#header-wrapper #header .icons .hamburger.open span.first,
#header-wrapper #header .icons .hamburger.open span.third {
  width: 20px;
  margin-left: 2px;
}
#header-wrapper #header .icons .hamburger.open span.first {
  margin-bottom: 5px;
  transform: rotate(44deg);
}
#header-wrapper #header .icons .hamburger.open span.second {
  width: 0;
}
#header-wrapper #header .icons .hamburger.open span.third {
  transform: rotate(-44deg);
}
#header-wrapper #header .icons .search-icon {
  float: left;
  font-size: 22px;
  line-height: 14px;
}
.user-greeting {
  font-size: 12px;
}
/*========== END HEADER ==========*/
#content-main {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  float: right;
  background-color: #f9f9f9;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#content-main .actions-wrapper {
  position: fixed;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 24px;
  background: #f9f9f9;
  -webkit-transition: width 250ms linear;
  -moz-transition: width 250ms linear;
  -o-transition: width 250ms linear;
  -ms-transition: width 250ms linear;
  transition: width 250ms linear;
}
#content-main .actions-wrapper button {
  margin: 0;
}
#content-gutter {
  height: 250px;
}
/*---------- FOOTER ----------*/
#footer-wrapper {
  padding: 100px 0;
}
#footer-wrapper #footer .footer-logo {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer .footer-logo {
    width: 200px;
    margin-bottom: 20px;
    padding: 0;
  }
}
#footer-wrapper #footer .footer-content {
  width: 100%;
}
#footer-wrapper #footer .footer-address {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  clear: both;
  line-height: 32px;
  text-align: right;
}
#footer-wrapper #footer .footer-address a {
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer .footer-address {
    text-align: left;
  }
}
#footer-wrapper #footer .footer-block {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer .footer-block {
    margin-bottom: 40px;
  }
}
#footer-wrapper #footer h1,
#footer-wrapper #footer h2,
#footer-wrapper #footer h3,
#footer-wrapper #footer h4,
#footer-wrapper #footer h5,
#footer-wrapper #footer p,
#footer-wrapper #footer ul li {
  color: #FFFFFF !important;
}
#footer-wrapper #footer h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2em;
  margin: 0 0 15px 0;
}
#footer-wrapper #footer h2.lg {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 106px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1em;
}
#footer-wrapper #footer h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1em;
  margin: 0 0 10px 0;
}
#footer-wrapper #footer h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1em;
  margin: 0 0 15px 0;
}
#footer-wrapper #footer h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #AAAAAA;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin: 0;
}
#footer-wrapper #footer p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.8em;
  margin-bottom: 20px;
}
#footer-wrapper #footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer-wrapper #footer ul li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFF;
  line-height: 32px;
}
#footer-wrapper #footer .social-links {
  float: right;
  list-style: none;
}
#footer-wrapper #footer .social-links li {
  display: inline-block;
  margin-left: 20px;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer .social-links li {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer .social-links {
    float: left;
  }
}
#footer-wrapper #footer #foot-notes {
  margin-top: 20px;
}
#footer-wrapper #footer #foot-notes .copyright {
  margin-top: 10px;
}
#footer-wrapper #footer #foot-notes .copyright span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #757575;
  line-height: 1.4em;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer #foot-notes .copyright span {
    margin-bottom: 20px;
  }
}
#footer-wrapper #footer #foot-notes .copyright span a {
  color: #757575;
}
#footer-wrapper #footer #foot-notes .links ul li {
  float: right;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
}
#footer-wrapper #footer #foot-notes .links ul li.break {
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper #footer #foot-notes .links ul li {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  #footer-wrapper {
    padding: 60px 0 40px 0;
  }
}
@media only screen and (min-width: 992px) {
  #active-user #footer-wrapper {
    margin-bottom: 50px;
  }
}
/*---------- END FOOTER ----------*/
/*====================
======================
END BASE CSS
======================
====================*/
/*====================
======================
COMMON CSS
======================
====================*/
.white {
  color: #FFFFFF !important;
}
.white-bg {
  background-color: #FFFFFF !important;
}
.orange {
  color: #f77836 !important;
}
.orange-bg {
  background-color: #f77836 !important;
}
.blue {
  color: #0570B8 !important;
}
.blue-bg {
  background-color: #0570B8 !important;
}
.purple {
  color: #9b3aac !important;
}
.purple-bg {
  background-color: #9b3aac !important;
}
.dark-grey {
  color: #555555 !important;
}
.dark-grey-bg {
  background-color: #555555 !important;
}
.grey {
  color: #757575 !important;
}
.grey-bg {
  background-color: #757575 !important;
}
.row {
  margin: 0 -24px;
}
.italic {
  font-style: italic;
}
.wrapper {
  float: left;
  clear: both;
  width: 100%;
}
.relative-row {
  position: relative;
}
.header-buffer {
  float: left;
  clear: both;
  width: 100%;
  height: 90px;
}
.v-speed-dial.v-speed-dial--direction-left .v-btn--floating {
  margin-left: 10px;
}
.v-speed-dial.v-speed-dial--direction-bottom .v-btn--floating {
  margin-bottom: 10px;
}
span.mdi {
  cursor: pointer;
}
span.mdi:before {
  font-size: 24px;
}
.v-btn {
  box-shadow: none !important;
}
.v-btn.w--icon .mdi {
  margin-right: 5px;
}
.v-btn.w--icon .mdi::before {
  font-size: 21px;
}
.v-btn.transparent {
  background-color: transparent;
}
.v-btn.lg-text .material-icons {
  font-size: 23px !important;
}
.v-btn.v-btn--round .v-btn__content {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.v-btn.v-btn--round.small .v-btn__content {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
}
.v-btn.opp-repair-list {
  background-color: #f9f9f9 !important;
  color: #757575 !important;
  border: 2px solid #757575 !important;
}
.sub-repair {
  margin-top: -84px !important;
  border-top: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.card-expand {
  background-color: #f9f9f9 !important;
  color: red !important;
  border: 1px solid red !important;
}
.card-expand.v-btn--icon {
  width: 15px !important;
  height: 15px !important;
}
.btn {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.8em;
  padding: 20px 70px;
  background: #008feb;
  border: 1px solid #008feb;
  border-radius: 30px;
  white-space: nowrap;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
.btn:active {
  box-shadow: none;
}
.btn.small {
  font-size: 14px !important;
  padding: 15px 30px;
}
.btn.rnd {
  color: #757575 !important;
  padding: 15px;
  border: 1px solid #757575;
  border-radius: 50%;
  background: transparent;
}
.btn.rnd:hover {
  color: #FFFFFF !important;
  background: #0070b8;
  border-color: #0070b8;
}
.btn.rnd .material-icons {
  margin: 0 !important;
}
.btn:hover {
  color: #FFFFFF;
  background: #0070b8;
}
.btn.light-grey {
  border: 1px solid #AAAAAA;
  background: #AAAAAA;
}
.btn.light-grey:hover {
  background: #919191;
}
.btn.dark-grey {
  border: 1px solid #555555;
  background: #555555;
}
.btn.dark-grey:hover {
  background: #3b3b3b;
}
.btn.grey {
  border: 1px solid #757575;
  background: #757575;
}
.btn.grey:hover {
  background: #3b3b3b;
}
.btn.blue {
  border: 1px solid #0570B8;
  background: #0570B8;
}
.btn.blue:hover {
  background: #045286;
}
.btn.transparent {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #555555 !important;
  text-transform: lowercase;
  letter-spacing: normal;
  background: transparent;
  border: none;
  cursor: default;
}
.btn.transparent:hover {
  background: transparent;
}
.btn.caution {
  color: #cd9c00 !important;
  background: #FFF3CD;
  border: 1px solid #ffdb67;
}
.btn.success {
  color: #ffffff !important;
  background: #008feb;
  border: 1px solid #008feb;
}
.btn.error {
  color: #b11f2c !important;
  background: #F8D7DA;
  border: 1px solid #e9808a;
}
.btn.disabled {
  background: #D3D3D3;
  border: 1px solid #D3D3D3;
}
.btn .material-icons {
  vertical-align: middle;
  margin-right: 10px;
}
.border-btn {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  text-transform: uppercase;
  line-height: 1em;
  padding: 15px 25px;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  border-radius: 0;
  white-space: nowrap;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
.border-btn:hover {
  text-decoration: none;
  border-color: #f0590a !important;
  background: #f0590a;
}
.border-btn.disabled {
  background: #555555;
}
@media only screen and (max-width: 767px) {
  .border-btn {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
.link {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #f77836;
  text-transform: uppercase;
  cursor: pointer;
}
.link:hover {
  color: #f0590a !important;
}
.clear-both {
  clear: both !important;
  height: 0;
  overflow: hidden;
}
.break-word {
  word-wrap: break-word;
}
.buttons-right {
  float: left;
  clear: both;
  width: 100%;
}
.buttons-right .btn {
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .buttons-right .btn {
    margin-bottom: 10px;
  }
}
.buttons-left {
  float: left;
  clear: both;
  width: 100%;
}
.buttons-left .btn {
  margin-right: 25px;
}
@media only screen and (max-width: 767px) {
  .buttons-left .btn {
    margin-bottom: 10px;
  }
}
.alert {
  background-image: none !important;
}
.alert p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
  line-height: 1.3em !important;
  margin: 0 !important;
}
.alert ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.alert ul li {
  line-height: 1.3em !important;
}
.alert.alert-success p,
.alert.alert-success ul li {
  color: #3C763D !important;
}
.alert.alert-info p,
.alert.alert-info ul li {
  color: #31708F !important;
}
.alert.alert-danger p,
.alert.alert-danger ul li {
  color: #A94442 !important;
}
.alert.alert-danger p {
  text-align: left;
}
.divider {
  float: left;
  clear: both;
  width: 100%;
  height: 2px;
  background: #D7D7D7;
}
.pointer {
  cursor: pointer;
}
.center-block {
  -webkit-transform: translate(50%, 0);
  -moz-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(50%, 0);
}
.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right !important;
}
.bottom-gutter {
  margin-bottom: 100px;
}
.bottom-gutter.small {
  margin-bottom: 40px;
}
.no-text-transform {
  text-transform: none !important;
}
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 60px;
  overflow: hidden;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
span.red {
  color: #f77836 !important;
}
.context-parent {
  position: relative;
}
.context-parent:hover .context-menu {
  visibility: visible;
  opacity: 1;
}
.context-parent ul {
  list-style: none;
}
.context-parent .context-menu {
  top: 100%;
}
.context-parent .context-menu.center {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.context-parent .context-menu.center .arrow-border {
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.context-parent .context-menu.right {
  right: 0;
}
.context-parent .context-menu.left {
  left: 0;
}
.context-parent .context-menu.left .arrow-border {
  right: auto;
  left: 20px;
}
.context-parent .sub-context-menu {
  top: -10px;
}
.context-parent .sub-context-menu.right {
  left: 100%;
  left: calc(100% - 5px);
}
.context-parent .sub-context-menu.left {
  right: 100%;
  right: calc(100% - 5px);
}
.context-parent .context-menu,
.context-parent .sub-context-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 100;
  min-width: 170px;
  list-style: none;
  margin: 0 !important;
  padding: 10px 0 !important;
  background: #FFFFFF;
  border: 1px solid #555555;
  border-radius: 5px;
  -webkit-transition: opacity 250ms linear;
  -moz-transition: opacity 250ms linear;
  -o-transition: opacity 250ms linear;
  -ms-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
}
.context-parent .context-menu .arrow-border,
.context-parent .sub-context-menu .arrow-border {
  display: block;
  position: absolute;
  top: -9px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #555555;
}
.context-parent .context-menu .arrow-border .arrow,
.context-parent .sub-context-menu .arrow-border .arrow {
  display: block;
  position: absolute;
  top: 1px;
  left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
}
.context-parent .context-menu li,
.context-parent .sub-context-menu li {
  width: 100%;
  height: auto !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #757575 !important;
  text-transform: none !important;
  text-align: left;
  white-space: nowrap;
  margin: 0;
  cursor: pointer;
}
.context-parent .context-menu li.sub-level.last a,
.context-parent .sub-context-menu li.sub-level.last a,
.context-parent .context-menu li.sub-level.last span,
.context-parent .sub-context-menu li.sub-level.last span {
  border-bottom: 0;
}
.context-parent .context-menu li.tert-level.last,
.context-parent .sub-context-menu li.tert-level.last {
  margin-bottom: 5px;
}
.context-parent .context-menu li.sub-menu,
.context-parent .sub-context-menu li.sub-menu {
  position: relative;
}
.context-parent .context-menu li.sub-menu:hover .sub-context-menu,
.context-parent .sub-context-menu li.sub-menu:hover .sub-context-menu {
  visibility: visible;
  opacity: 1;
}
.context-parent .context-menu li a,
.context-parent .sub-context-menu li a {
  display: block;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #555555 !important;
  padding: 0 10px;
}
.context-parent .context-menu li a:hover,
.context-parent .sub-context-menu li a:hover {
  text-decoration: none;
  background: #008feb;
}
.context-parent .context-menu li a.active,
.context-parent .sub-context-menu li a.active {
  color: #757575 !important;
  cursor: text;
}
.context-parent .context-menu li a.active:hover,
.context-parent .sub-context-menu li a.active:hover {
  background: #FFFFFF;
}
.context-parent .context-menu li a span,
.context-parent .sub-context-menu li a span {
  display: block;
  width: 100%;
  padding: 5px 10px;
  border-bottom: 1px solid #AAAAAA;
}
.context-parent .context-menu li ul.tert-level,
.context-parent .sub-context-menu li ul.tert-level {
  margin: 0;
  padding: 0;
}
.context-parent .context-menu li ul.tert-level a,
.context-parent .sub-context-menu li ul.tert-level a {
  padding: 0 10px 0 20px;
}
@media only screen and (max-width: 991px) {
  #sections .context-parent .context-menu {
    width: 100%;
    left: 0;
    right: auto;
  }
  #sections .context-parent .arrow-border {
    display: none;
  }
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper {
  margin-top: 40px;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row {
  float: left;
  clear: both;
  width: 100%;
  padding: 30px 15px;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row.table-header {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
  padding: 15px;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row.odd {
  background-color: #008feb;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row .center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row .align-right-mobile {
    text-align: right;
  }
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #313131;
  margin-bottom: 0 !important;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row h4 {
  margin-top: 7px;
  margin-bottom: 0;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
  line-height: 1.2em;
  margin: 0;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row a {
  color: #0570B8;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#content-wrapper #sections .section-wrapper .striped-table-wrapper .table-row ul li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #555555;
  margin: 0;
}
.grid {
  float: left;
  clear: both;
  width: 100%;
}
.grid .span {
  float: left;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #AAAAAA;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid #757575;
}
.grid .span.top {
  padding-top: 0;
}
.grid .span.half {
  width: 50%;
}
.grid .span.half.left {
  border-right: 1px solid #757575;
}
.grid .span h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 40px !important;
  font-weight: 300 !important;
  color: #757575 !important;
  text-transform: none !important;
  margin: 0 !important;
}
.grid .span h4 span {
  font-size: 20px;
  text-transform: uppercase;
}
.grid .span h4 img {
  vertical-align: inherit;
  margin-right: 5px;
}
.grid .span h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #555555 !important;
}
.grid .span h5 span {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.grid .span ul {
  display: inline-block;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.grid .span ul li {
  float: left;
  margin-right: 20px !important;
}
.grid .span a {
  color: #f77836;
}
.grid .span a:hover {
  text-decoration: none;
  color: #f99967;
}
.grid .span .btn {
  width: 90% !important;
}
.grid .span .material-icons {
  vertical-align: middle;
}
.mt-30 {
  margin-top: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.flexslider {
  margin-bottom: 20px;
}
.form-errors {
  border-color: #A81313 !important;
}
.required-field:after {
  color: #A81313;
  margin-left: 5px;
  content: " *";
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 1;
}
#toast-container .toast-message {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}
body #app .v-dialog {
  border-radius: 8px;
}
body #app .v-dialog .v-card {
  text-align: center;
}
body #app .v-dialog .v-card .v-card__title {
  text-align: center;
  background: none;
  margin: 0 0 20px 0;
  padding: 0;
}
body #app .v-dialog .v-card .v-card__title h2 {
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #313131 !important;
}
body #app .v-dialog .v-card .v-card__text p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #313131 !important;
  line-height: 1.5em;
}
body #app .v-dialog .v-card .v-card__actions {
  text-align: center;
}
body #app .v-dialog .v-card .v-card__actions.center-btn button {
  margin: 0 auto;
}
.repair-list-quick-edit {
  margin-top: 20px !important;
  margin-left: -7px;
}
.repair-list-quick-edit span {
  margin-right: 10px;
}
.repair-list-quick-edit span:last-child {
  margin-left: -20px;
}
.repair-list-quick-edit .v-btn {
  margin: 0;
  padding: 0;
  background-color: #f9f9f9 !important;
}
.repair-list-quick-edit .v-btn__content {
  font-size: 12px;
}
/*====================
======================
END COMMON CSS 
======================
====================*/
/*====================
======================
FONTS CSS
======================
====================*/
/*========== UNIVERS ==========*/
@font-face {
  font-family: 'Univers';
  src: url('/static/fonts/univers/bold/univers.eot');
  src: url('/static/fonts/univers/bold/univers.eot?#iefix') format('embedded-opentype'), url('/static/fonts/univers/bold/univers.woff2') format('woff2'), url('/static/fonts/univers/bold/univers.woff') format('woff'), url('/static/fonts/univers/bold/univers.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Univers';
  src: url('/static/fonts/univers/regular/univers.eot');
  src: url('/static/fonts/univers/regular/univers.eot?#iefix') format('embedded-opentype'), url('/static/fonts/univers/regular/univers.woff2') format('woff2'), url('/static/fonts/univers/regular/univers.woff') format('woff'), url('/static/fonts/univers/regular/univers.svg#webfont') format('svg');
  font-weight: 400;
  font-style: normal;
}
/*========== END UNIVERS ==========*/
/*========== PTSANS ==========*/
@font-face {
  font-family: 'PTSans';
  src: url('/static/fonts/ptsans/regular/ptsans.eot');
  src: url('/static/fonts/ptsans/regular/ptsans.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ptsans/regular/ptsans.woff2') format('woff2'), url('/static/fonts/ptsans/regular/ptsans.woff') format('woff'), url('/static/fonts/ptsans/regular/ptsans.svg#webfont') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'PTSans';
  src: url('/static/fonts/ptsans/bold/ptsans.eot');
  src: url('/static/fonts/ptsans/bold/ptsans.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ptsans/bold/ptsans.woff2') format('woff2'), url('/static/fonts/ptsans/bold/ptsans.woff') format('woff'), url('/static/fonts/ptsans/bold/ptsans.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
/*========== END PTSANS ==========*/
/*====================
======================
END FONTS CSS
======================
====================*/
/*====================
======================
DIALOG CSS
======================
====================*/
/*---------- DIALOG BOX ----------*/
#overlay {
  position: fixed;
  z-index: 2000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222222;
  opacity: 0.5;
  display: none;
}
#dialog-box {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 980px;
  max-height: 100%;
  padding: 70px ;
  background-color: #FFFFFF;
  border-radius: 5px;
  -webkit-transition: height 250ms linear;
  -moz-transition: height 250ms linear;
  -o-transition: height 250ms linear;
  -ms-transition: height 250ms linear;
  transition: height 250ms linear;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  #dialog-box {
    padding: 35px 30px;
  }
}
#dialog-box .close-wrapper {
  position: absolute;
  z-index: 3100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #FFFFFF;
}
#dialog-box .close-wrapper img {
  float: right;
  cursor: pointer;
}
#dialog-box .dialog-content {
  position: relative;
  width: 100%;
}
#dialog-box .dialog-content h2 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #313131;
  line-height: 1.2em;
  margin: 0 0 20px;
}
#dialog-box .dialog-content h2.title {
  font-size: 36px;
  margin-bottom: 40px;
}
#dialog-box .dialog-content h5 {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #313131;
  line-height: 1em;
  margin: 0 10px 20px 0;
}
#dialog-box .dialog-content p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #555555;
  line-height: 1.4em;
  margin-bottom: 30px;
}
#dialog-box .dialog-content .dialog-block {
  display: none;
}
#dialog-box .dialog-content .dialog-block #quick-view {
  position: relative;
}
@media only screen and (min-width: 992px) {
  #dialog-box .dialog-content .dialog-block #quick-view {
    margin: 0 -40px;
    padding-bottom: 65px;
  }
  #dialog-box .dialog-content .dialog-block #quick-view .column {
    padding: 0 40px;
  }
}
#dialog-box .dialog-content .dialog-block #quick-view .column {
  position: static;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #dialog-box .dialog-content .dialog-block #quick-view .column.top {
    margin-bottom: 40px;
  }
}
#dialog-box .dialog-content .dialog-block #quick-view .column .flexslider {
  border: none;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .price-wrapper {
  margin-bottom: 20px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .price-wrapper h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper {
  margin-bottom: 40px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .option {
  float: left;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .option label {
  float: left;
  clear: both;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
  margin: 5px 0 0 0;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper input[type='number'] {
  width: 100%;
  height: 45px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #555555 !important;
  padding: 0 30px;
  background-color: #f9f9f9;
  border-radius: 0px;
  border: 1px solid #757575;
  border-bottom: 1px solid #b5b5b5;
  outline: none !important;
  box-shadow: none;
  width: 65px;
  height: 44px;
  margin-right: 20px;
  padding: 0 15px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .color-list {
  display: inline-block;
  height: 44px;
  list-style: none;
  margin: 0;
  padding: 6px 0 0 0;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .color-list li {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 20px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .color-list li.active {
  border-color: #757575;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .options-wrapper .color-list li span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .description {
  max-height: 145px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .more-link {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0570B8;
  margin-bottom: 20px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .out-of-stock-message {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #DD3863;
  width: 100%;
  padding: 20px 0 25px 0;
  border-bottom: 1px solid #757575;
  margin-bottom: 30px;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .product-details-inner {
  position: relative;
}
#dialog-box .dialog-content .dialog-block #quick-view .column .product-details-inner .out-of-stock-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
  background-color: #FFFFFF;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel {
  width: 100%;
  margin: 0;
  padding: 0 30px;
}
@media only screen and (min-width: 992px) {
  #dialog-box .dialog-content .dialog-block #quick-view .carousel {
    position: absolute;
    bottom: 0;
    z-index: 10;
    width: 50%;
    width: calc(50% - 80px);
  }
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel li {
  margin-right: 20px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel li img {
  cursor: pointer;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-prev,
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-next {
  display: block;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 12px;
  height: 20px;
  margin: 0;
  background-size: 100%;
  opacity: 1;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-prev::before,
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-next::before {
  display: none;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-prev {
  left: 0 !important;
  background: url('/static/images/icons/arrow_left.png') center no-repeat;
}
#dialog-box .dialog-content .dialog-block #quick-view .carousel .flex-direction-nav a.flex-next {
  right: 0 !important;
  background: url('/static/images/icons/arrow_right.png') center no-repeat;
}
#dialog-box .dialog-content .dialog-block #quick-view .btn {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #dialog-box .dialog-content .dialog-block #quick-view .btn {
    position: absolute;
    bottom: 7px;
    width: 50%;
    width: calc(50% - 80px);
  }
}
@media only screen and (max-width: 767px) {
  #dialog-box {
    width: 100%;
  }
}
/*---------- END DIALOG BOX ----------*/
/*====================
======================
END DIALOG CSS
======================
====================*/
/*====================
======================
NAV DRAWER CSS
======================
====================*/
#drawer-wrapper {
  background-color: #FFFFFF;
  z-index: 1;
  overflow: hidden;
}
#drawer-wrapper .drawer-scroll-buffer {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  padding-top: 90px;
  border: none;
  overflow: auto;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 24px;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block .drawer-header {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #AAAAAA;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu {
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li {
  float: left;
  clear: both;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #757575;
  margin-bottom: 15px;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li:hover {
  color: #008feb;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li.active a {
  color: #008feb;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li a {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  color: #757575;
  padding-right: 15px;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li a:hover {
  text-decoration: none;
  color: #008feb;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block {
  position: absolute;
  z-index: 2000;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  pointer-events: none;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block.open .drop-arrow {
  width: 12px;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block.open .drop-arrow span {
  width: 16px;
  background-color: #FFFFFF;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block .drop-arrow {
  float: right;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 7px;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block .drop-arrow span {
  display: block;
  position: absolute;
  left: 0;
  width: 6px;
  height: 2px;
  background-color: #777777;
  border-radius: 2px;
  transition: all 0.35s ease-out;
  transform: rotate(0deg);
  transform-origin: 0% 50%;
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block .drop-arrow span.right {
  bottom: -3px;
  transform: rotate(-45deg);
}
#drawer-wrapper .drawer-scroll-buffer .drawer-block #drawer-menu li .arrow-block .drop-arrow span.left {
  top: 0;
  transform: rotate(45deg);
}
/*====================
======================
END NAV DRAWER CSS
======================
====================*/
/*====================
======================
DETAIL CSS
======================
====================*/
/*---------- HEADER OVERRIDES ----------*/
.detail-body #header-wrapper {
  position: absolute;
  height: 100px;
  background: transparent !important;
}
@media only screen and (max-width: 767px) {
  .detail-body #header-wrapper {
    height: 80px;
  }
}
.detail-body #header-wrapper #header .container #logo {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.detail-body #header-wrapper #header .container #logo a img {
  max-height: 100%;
}
.detail-body #footer-wrapper {
  display: block;
  position: absolute;
  z-index: 2000;
  bottom: 0;
  left: 50%;
  padding: 35px 0;
  background-color: transparent;
  transform: translate(-50%, 0%);
}
/*---------- END HEADER OVERRIDES ----------*/
/*---------- CONTENT WRAPPER OVERRIDES ----------*/
.detail-body {
  background-color: #dcdbca;
}
.detail-body.background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
.detail-body #content-gutter {
  background-color: transparent;
}
.detail-body #content-wrapper {
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .detail-body #content-wrapper #sections .section-wrapper {
    padding: 20px 0;
  }
}
.detail-body #content-wrapper #sections .section-wrapper h1,
.detail-body #content-wrapper #sections .section-wrapper h2,
.detail-body #content-wrapper #sections .section-wrapper h3,
.detail-body #content-wrapper #sections .section-wrapper h4,
.detail-body #content-wrapper #sections .section-wrapper h5,
.detail-body #content-wrapper #sections .section-wrapper p,
.detail-body #content-wrapper #sections .section-wrapper ul li,
.detail-body #content-wrapper #sections .section-wrapper span {
  color: #757575;
}
.detail-body #content-wrapper #sections .section-wrapper h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  margin-bottom: 10px;
}
.detail-body #content-wrapper #sections .section-wrapper h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 22px;
  margin-bottom: 10px;
}
.detail-body #content-wrapper #sections .section-wrapper p {
  line-height: 1.3em;
}
@media only screen and (max-width: 767px) {
  .detail-body #content-wrapper #sections .section-wrapper p {
    margin-bottom: 20px;
  }
}
.detail-body #content-wrapper #sections .section-wrapper a {
  color: #008feb;
}
.detail-body #content-wrapper #sections .alert-danger {
  background-color: #f2f0de;
  border: none;
}
.detail-body #content-wrapper #sections .alert-danger p {
  text-align: left;
}
/*---------- END CONTENT WRAPPER OVERRIDES ----------*/
/*---------- MAP LABEL OVERRIDE ----------*/
.map-label {
  text-align: center;
  display: flex;
  position: absolute !important;
  max-height: 80px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  color: #555555;
}
.map-label .innerLabel {
  margin: auto;
  overflow: hidden;
  padding: 5px;
}
.close-button {
  margin-top: 0px;
  margin-right: 0px;
  z-index: 999999;
  cursor: pointer;
  background: url("../images/map_icons/remove_overlay.png");
  width: 20px;
  height: 20px;
  position: absolute !important;
  color: white;
  top: -10px;
  right: -10px;
}
/*====================
======================
END DETAIL CSS
======================
====================*/
/*====================
======================
SECTIONS CSS
======================
====================*/
/*---------- CONTENT ----------*/
#content-gutter {
  float: left;
  clear: both;
  width: 100%;
}
.editable #content-wrapper #sections .section-wrapper:hover .new-section-action {
  display: block !important;
}
.editable #content-wrapper #sections .section-wrapper.unpublished {
  display: block;
}
.section-wrapper.unpublished {
  display: none;
}
#content-wrapper {
  float: left;
  clear: both;
  width: 100%;
  padding: 0 24px;
  /*==========
	DIALOG
	===========*/
}
#content-wrapper #sections {
  position: relative;
  z-index: 20;
  float: left;
  clear: both;
  width: 100%;
}
#content-wrapper #sections a {
  color: #f77836;
}
#content-wrapper #sections .section-wrapper {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  padding: 20px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f9f9f9;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}
#content-wrapper #sections .section-wrapper.compact {
  padding: 20px 0;
}
#content-wrapper #sections .section-wrapper.invert-text h2,
#content-wrapper #sections .section-wrapper.invert-text h3,
#content-wrapper #sections .section-wrapper.invert-text h4,
#content-wrapper #sections .section-wrapper.invert-text h5,
#content-wrapper #sections .section-wrapper.invert-text label,
#content-wrapper #sections .section-wrapper.invert-text p,
#content-wrapper #sections .section-wrapper.invert-text ul li {
  color: #FFFFFF !important;
}
#content-wrapper #sections .section-wrapper.DG {
  background-color: #555555;
}
#content-wrapper #sections .section-wrapper.DG h2 {
  color: #AAAAAA;
}
#content-wrapper #sections .section-wrapper.DG.pitch-status .column-row .column h5 {
  color: #D7D7D7;
}
#content-wrapper #sections .section-wrapper.LG {
  background-color: #EEEEEE;
}
#content-wrapper #sections .section-wrapper.R {
  background-color: #f77836;
}
#content-wrapper #sections .section-wrapper.R h2.red {
  color: #FFFFFF !important;
}
#content-wrapper #sections .section-wrapper.R .btn {
  color: #f77836 !important;
  background-color: #AAAAAA;
}
#content-wrapper #sections .section-wrapper.R .btn:hover {
  color: #FFFFFF !important;
  background-color: #f0590a;
}
#content-wrapper #sections .section-wrapper.split-image {
  position: relative;
  padding: 0;
}
#content-wrapper #sections .section-wrapper.split-image .container {
  position: absolute;
  z-index: 500;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#content-wrapper #sections .section-wrapper.split-image .section-content {
  padding-top: 95px;
  padding-bottom: 60px;
  background: #555555;
  background-size: cover !important;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper.split-image .section-content {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
#content-wrapper #sections .section-wrapper.split-image .section-content.L {
  float: left;
  padding-right: 35px;
}
#content-wrapper #sections .section-wrapper.split-image .section-content.R {
  float: right;
  padding-left: 35px;
}
#content-wrapper #sections .section-wrapper.split-image .section-image {
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#content-wrapper #sections .section-wrapper.split-image .section-image.R {
  right: 0;
}
#content-wrapper #sections .section-wrapper.split-image .section-image.L {
  left: 0;
}
#content-wrapper #sections .section-wrapper.billboard {
  padding-top: 260px;
  padding-bottom: 260px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper.billboard {
    padding-top: 125px;
    padding-bottom: 125px;
  }
}
#content-wrapper #sections .section-wrapper.billboard .new-section-action {
  top: -150px;
}
#content-wrapper #sections .section-wrapper.billboard .shade {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  height: 200px;
  background-color: #333333;
  opacity: 0.7;
}
#content-wrapper #sections .section-wrapper.billboard .billboard-content {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 875px;
  max-width: 100%;
  text-align: center;
  margin: 20px 0 !important;
}
#content-wrapper #sections .section-wrapper.billboard .billboard-content h2 {
  font-size: 72px;
  margin: 0 0 10px 0;
}
#content-wrapper #sections .section-wrapper.billboard .billboard-content p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper.billboard .billboard-content {
    padding: 0 20px;
  }
  #content-wrapper #sections .section-wrapper.billboard .billboard-content h2 {
    font-size: 38px;
  }
}
#content-wrapper #sections .section-wrapper .container {
  position: relative;
}
#content-wrapper #sections .section-wrapper .mceNonEditable {
  display: block;
  height: 0;
  overflow: hidden;
}
#content-wrapper #sections .section-wrapper .new-section-action {
  display: none;
  position: absolute;
  z-index: 100;
  top: -45px;
  right: 0;
}
#content-wrapper #sections .section-wrapper .new-section-action .context-parent {
  display: inline-block;
}
#content-wrapper #sections .section-wrapper .new-section-action .btn {
  font-size: 11px !important;
  margin: 0 0 0 10px;
  padding: 12px 20px !important;
  border-radius: 20px;
  outline: none !important;
}
#content-wrapper #sections .section-wrapper .new-section-action .btn.icon {
  padding: 7px !important;
  border-radius: 50%;
}
#content-wrapper #sections .section-wrapper .new-section-action .btn .material-icons {
  font-size: 17px;
  margin: 0;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .button-container {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .button-container a {
    position: static;
  }
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .button-container a button {
    width: 90%;
    padding: 15px 25px;
  }
}
#content-wrapper #sections .section-wrapper .section-button {
  position: absolute;
  z-index: 10;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
}
#content-wrapper #sections .section-wrapper .section-button button {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  border-radius: 30px;
  border: none;
  padding: 15px 40px;
}
#content-wrapper #sections .section-wrapper .no-container {
  padding-left: 15px;
  padding-right: 15px;
}
#content-wrapper #sections .section-wrapper .title-row {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  #content-wrapper #sections .section-wrapper .title-row {
    padding-bottom: 20px;
    border-bottom: 1px solid #AAAAAA;
  }
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .title-row {
    margin-bottom: 30px;
  }
}
#content-wrapper #sections .section-wrapper .title-row h1,
#content-wrapper #sections .section-wrapper .title-row h2 {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .title-row h1,
  #content-wrapper #sections .section-wrapper .title-row h2 {
    font-size: 26px !important;
  }
}
#content-wrapper #sections .section-wrapper .title-row h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  text-transform: none !important;
  margin-bottom: 5px;
}
#content-wrapper #sections .section-wrapper .title-row h4 a,
#content-wrapper #sections .section-wrapper .title-row h4 span {
  display: inline-block;
  color: inherit;
  white-space: nowrap;
  margin-top: 3px;
}
#content-wrapper #sections .section-wrapper .title-row hr {
  margin-top: 15px;
  margin-bottom: 30px;
  border-color: #AAAAAA;
}
@media only screen and (min-width: 768px) {
  #content-wrapper #sections .section-wrapper .title-row #browse-filter {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    vertical-align: bottom;
  }
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter .context-parent {
  display: inline-block;
  padding-bottom: 8px;
  padding-left: 2px;
}
@media only screen and (max-width: 991px) {
  #content-wrapper #sections .section-wrapper .title-row #browse-filter .context-parent {
    margin-top: 5px;
  }
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter .context-parent .context-menu {
  top: 30px;
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #555555 !important;
  margin: 0 !important;
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter p .filter-amount {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #555555 !important;
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter p .filter-type {
  color: #f77836;
  cursor: pointer;
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter .filter-button {
  float: right;
  padding: 8px 10px;
  border: 1px solid #757575;
  border-radius: 5px;
}
#content-wrapper #sections .section-wrapper .title-row #browse-filter .filter-button img {
  float: left;
  width: 25px;
}
#content-wrapper #sections .section-wrapper .title-row #filter-header {
  display: none;
}
#content-wrapper #sections .section-wrapper .title-row #filter-header h5 {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  text-transform: none;
}
#content-wrapper #sections .section-wrapper .title-row #filter-header .filter-button {
  float: right;
  padding: 8px 15px;
}
#content-wrapper #sections .section-wrapper .title-row #filter-header .filter-button img {
  float: left;
}
#content-wrapper #sections .section-wrapper .title-row #filter-header hr {
  margin: 15px 0 0 0;
}
#content-wrapper #sections .section-wrapper h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  color: #313131 !important;
  line-height: 1.2em;
  margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper h1 {
    margin-bottom: 40px;
  }
}
#content-wrapper #sections .section-wrapper h1.red {
  color: #f77836 !important;
}
#content-wrapper #sections .section-wrapper h1.lg {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 106px;
  font-weight: 500;
  color: #313131;
  line-height: 1em;
}
#content-wrapper #sections .section-wrapper h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 300;
  color: #757575;
  line-height: 1em;
  margin: 0 0 20px;
}
#content-wrapper #sections .section-wrapper h2.lg {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #555555;
}
#content-wrapper #sections .section-wrapper h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #555555;
  line-height: 1em;
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
#content-wrapper #sections .section-wrapper h3.red {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #f77836 !important;
}
#content-wrapper #sections .section-wrapper h3.lg {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 106px;
  font-weight: 400;
  color: #313131;
  line-height: 1em;
}
#content-wrapper #sections .section-wrapper h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
  line-height: 1.1em;
  margin: 0 0 15px;
}
#content-wrapper #sections .section-wrapper h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #AAAAAA;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin: 0;
}
#content-wrapper #sections .section-wrapper p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper p {
    font-size: 18px;
  }
}
#content-wrapper #sections .section-wrapper p.small {
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper p.small {
    font-weight: 300;
  }
}
#content-wrapper #sections .section-wrapper p.italic {
  font-style: italic;
}
#content-wrapper #sections .section-wrapper ul {
  margin-bottom: 20px;
  margin-left: 30px;
  padding-left: 18px;
}
#content-wrapper #sections .section-wrapper ul li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6em;
  margin-bottom: 5px;
}
#content-wrapper #sections .section-wrapper ul li.last {
  margin-bottom: 0;
}
#content-wrapper #sections .section-wrapper ul li.icon {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}
#content-wrapper #sections .section-wrapper ul li.icon .material-icons {
  vertical-align: bottom;
}
#content-wrapper #sections .section-wrapper ul.no-bullets {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs {
  display: block;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.first {
  display: none;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.first {
    display: inline-block;
    opacity: 0;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.last {
  display: none;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.last {
    display: inline-block;
    opacity: 0;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.left {
  display: none;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs .material-icons.left {
    display: inline-block;
    color: #f77836;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs li {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 25px;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs li {
    display: none;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs li.last {
  margin-right: 0;
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs li span {
  float: left;
  margin-right: 25px;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs li span {
    margin-left: 20px;
    margin-right: 20px;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs li i {
  float: left;
  font-size: 20px;
  font-weight: bold;
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs li.active {
  color: #f77836;
  display: inline-block;
}
@media (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.bread-crumbs li.active {
    margin-right: 0;
  }
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs a {
  color: #333333 !important;
}
#content-wrapper #sections .section-wrapper ul.bread-crumbs a.active {
  color: #b02026 !important;
  cursor: pointer;
}
#content-wrapper #sections .section-wrapper ul.in-page-nav {
  text-align: center;
  margin: 40px 0 0;
  padding: 20px 0;
  border-top: 1px solid #757575;
  border-bottom: 1px solid #757575;
}
#content-wrapper #sections .section-wrapper ul.in-page-nav li {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  margin-right: 65px;
}
#content-wrapper #sections .section-wrapper ul.in-page-nav li.last {
  margin-right: 0;
}
#content-wrapper #sections .section-wrapper ul.in-page-nav li a {
  color: #555555;
}
#content-wrapper #sections .section-wrapper ul.in-page-nav li a.active,
#content-wrapper #sections .section-wrapper ul.in-page-nav li a:hover {
  text-decoration: none;
  color: #f77836;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper ul.in-page-nav li {
    display: block;
    margin-right: 0;
  }
}
#content-wrapper #sections .section-wrapper .login-logo img {
  max-width: 30%;
  height: auto;
}
#content-wrapper #sections .section-wrapper img {
  max-width: 100%;
  height: 100%;
}
#content-wrapper #sections .section-wrapper .three-col-row {
  margin-left: -38px;
  margin-right: -38px;
}
#content-wrapper #sections .section-wrapper .three-col-row .three-col {
  padding-left: 38px;
  padding-right: 38px;
  border-right: 1px solid #AAAAAA;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper .three-col-row .three-col {
    margin-bottom: 40px;
  }
  #content-wrapper #sections .section-wrapper .three-col-row .three-col.last {
    margin-bottom: 0;
  }
}
#content-wrapper #sections .section-wrapper .three-col-row .three-col.last {
  border: none;
}
#content-wrapper #sections .section-wrapper hr.search-separator {
  margin: 10px 0;
  height: 1px;
  border: none;
  background-color: #757575;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #sections .section-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #content-wrapper #sections .section-wrapper .column {
    margin-bottom: 40px;
  }
  #content-wrapper #sections .section-wrapper .column.last {
    margin-bottom: 0;
  }
  #content-wrapper #sections .section-wrapper .left-col {
    margin-bottom: 40px;
  }
  #content-wrapper #sections .section-wrapper hr.search-separator {
    margin: 30px 0 10px 0;
  }
}
#content-wrapper #sections hr.dark {
  height: 1px;
  border: none;
  background-color: #757575;
}
#content-wrapper #sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 180px 45px 180px 45px;
  background-color: #f9f9f9;
  opacity: 0.98;
}
#content-wrapper #sidebar .public-logo {
  margin-bottom: 50px;
}
#content-wrapper #sidebar .public-logo img {
  margin-bottom: 15px;
  width: 45%;
}
#content-wrapper #sidebar .form-extra-info {
  text-align: left;
  font-size: 13px;
}
#content-wrapper #sidebar .form-extra-info.sub-logo {
  margin-top: 10px;
  margin-bottom: 70px;
}
#content-wrapper #sidebar .form-extra-info a {
  color: #f8884f;
  text-decoration: underline;
}
#content-wrapper #sidebar #plugin-content {
  text-align: center;
}
#content-wrapper #sidebar #plugin-content .btn {
  width: 100%;
}
#content-wrapper #sidebar #plugin-content input {
  margin-bottom: 15px;
}
#content-wrapper #sidebar #plugin-content .extra-links a {
  color: #757575;
  font-size: 14px;
}
#content-wrapper .dialog-mask {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background-color: #ccc;
  opacity: 0.95;
}
#content-wrapper .dialog-wrapper {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: -100%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  border-radius: 0;
  overflow: auto;
}
#content-wrapper .dialog-wrapper .dialog-content {
  display: none;
  padding: 20px 0;
}
#content-wrapper .dialog-wrapper .dialog-content .responsive-video {
  margin-bottom: 20px;
}
#content-wrapper .dialog-wrapper .dialog-content h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #333333;
}
#content-wrapper .dialog-wrapper .dialog-content h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
}
#content-wrapper .dialog-wrapper .dialog-content p {
  line-height: 1.4em !important;
  margin-bottom: 20px;
}
#content-wrapper .dialog-wrapper .dialog-content ul {
  margin: 0 0 20px 18px;
}
#content-wrapper .dialog-wrapper .dialog-content ul li {
  margin-bottom: 10px;
}
#content-wrapper .dialog-wrapper .dialog-content .btn {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper .dialog-wrapper {
    width: 100%;
  }
}
#content-wrapper #override-content .container {
  width: 100%;
  padding: 0;
}
#content-wrapper #override-content .right-col-overrides {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  #content-wrapper #override-content .right-col-overrides {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
/*---------- END CONTENT ----------*/
/*====================
======================
END SECTIONS CSS
======================
====================*/
/*====================
======================
FORM CSS
======================
====================*/
#sections .styled-form hr,
#dialog-box .styled-form hr,
#hero .styled-form hr {
  float: left;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  border-width: 1px;
  border-color: #AAAAAA;
}
@media only screen and (max-width: 767px) {
  #sections .styled-form,
  #dialog-box .styled-form,
  #hero .styled-form {
    padding-left: 0;
    padding-right: 0;
  }
}
#sections .input-wrapper,
#dialog-box .input-wrapper,
#hero .input-wrapper {
  margin-bottom: 20px;
}
#sections .input-wrapper select,
#dialog-box .input-wrapper select,
#hero .input-wrapper select {
  width: 100%;
  margin-bottom: 20px;
}
#sections .input-wrapper.parallel-button,
#dialog-box .input-wrapper.parallel-button,
#hero .input-wrapper.parallel-button {
  float: left;
}
#sections .input-wrapper.parallel-button.small-btn input[type='email'],
#dialog-box .input-wrapper.parallel-button.small-btn input[type='email'],
#hero .input-wrapper.parallel-button.small-btn input[type='email'],
#sections .input-wrapper.parallel-button.small-btn input[type='number'],
#dialog-box .input-wrapper.parallel-button.small-btn input[type='number'],
#hero .input-wrapper.parallel-button.small-btn input[type='number'],
#sections .input-wrapper.parallel-button.small-btn input[type='password'],
#dialog-box .input-wrapper.parallel-button.small-btn input[type='password'],
#hero .input-wrapper.parallel-button.small-btn input[type='password'],
#sections .input-wrapper.parallel-button.small-btn input[type='text'],
#dialog-box .input-wrapper.parallel-button.small-btn input[type='text'],
#hero .input-wrapper.parallel-button.small-btn input[type='text'],
#sections .input-wrapper.parallel-button.small-btn input[type='url'],
#dialog-box .input-wrapper.parallel-button.small-btn input[type='url'],
#hero .input-wrapper.parallel-button.small-btn input[type='url'],
#sections .input-wrapper.parallel-button.small-btn textarea,
#dialog-box .input-wrapper.parallel-button.small-btn textarea,
#hero .input-wrapper.parallel-button.small-btn textarea {
  width: calc(100% - 130px) !important;
  margin: 0 25px 0 0;
}
#sections .input-wrapper.parallel-button.small-btn .btn,
#dialog-box .input-wrapper.parallel-button.small-btn .btn,
#hero .input-wrapper.parallel-button.small-btn .btn {
  width: 105px;
}
@media only screen and (max-width: 767px) {
  #sections .input-wrapper.parallel-button.small-btn input[type='email'],
  #dialog-box .input-wrapper.parallel-button.small-btn input[type='email'],
  #hero .input-wrapper.parallel-button.small-btn input[type='email'],
  #sections .input-wrapper.parallel-button.small-btn input[type='number'],
  #dialog-box .input-wrapper.parallel-button.small-btn input[type='number'],
  #hero .input-wrapper.parallel-button.small-btn input[type='number'],
  #sections .input-wrapper.parallel-button.small-btn input[type='password'],
  #dialog-box .input-wrapper.parallel-button.small-btn input[type='password'],
  #hero .input-wrapper.parallel-button.small-btn input[type='password'],
  #sections .input-wrapper.parallel-button.small-btn input[type='text'],
  #dialog-box .input-wrapper.parallel-button.small-btn input[type='text'],
  #hero .input-wrapper.parallel-button.small-btn input[type='text'],
  #sections .input-wrapper.parallel-button.small-btn input[type='url'],
  #dialog-box .input-wrapper.parallel-button.small-btn input[type='url'],
  #hero .input-wrapper.parallel-button.small-btn input[type='url'],
  #sections .input-wrapper.parallel-button.small-btn textarea,
  #dialog-box .input-wrapper.parallel-button.small-btn textarea,
  #hero .input-wrapper.parallel-button.small-btn textarea {
    width: 100% !important;
    margin: 0 0 20px 0;
  }
}
#sections .input-wrapper.parallel-button input[type='email'],
#dialog-box .input-wrapper.parallel-button input[type='email'],
#hero .input-wrapper.parallel-button input[type='email'],
#sections .input-wrapper.parallel-button input[type='number'],
#dialog-box .input-wrapper.parallel-button input[type='number'],
#hero .input-wrapper.parallel-button input[type='number'],
#sections .input-wrapper.parallel-button input[type='password'],
#dialog-box .input-wrapper.parallel-button input[type='password'],
#hero .input-wrapper.parallel-button input[type='password'],
#sections .input-wrapper.parallel-button input[type='text'],
#dialog-box .input-wrapper.parallel-button input[type='text'],
#hero .input-wrapper.parallel-button input[type='text'],
#sections .input-wrapper.parallel-button input[type='url'],
#dialog-box .input-wrapper.parallel-button input[type='url'],
#hero .input-wrapper.parallel-button input[type='url'],
#sections .input-wrapper.parallel-button .chosen-container,
#dialog-box .input-wrapper.parallel-button .chosen-container,
#hero .input-wrapper.parallel-button .chosen-container,
#sections .input-wrapper.parallel-button textarea,
#dialog-box .input-wrapper.parallel-button textarea,
#hero .input-wrapper.parallel-button textarea {
  float: left;
  width: calc(100% - 185px) !important;
  margin-right: 30px;
}
#sections .input-wrapper.parallel-button input[type='email'].filled,
#dialog-box .input-wrapper.parallel-button input[type='email'].filled,
#hero .input-wrapper.parallel-button input[type='email'].filled,
#sections .input-wrapper.parallel-button input[type='number'].filled,
#dialog-box .input-wrapper.parallel-button input[type='number'].filled,
#hero .input-wrapper.parallel-button input[type='number'].filled,
#sections .input-wrapper.parallel-button input[type='password'].filled,
#dialog-box .input-wrapper.parallel-button input[type='password'].filled,
#hero .input-wrapper.parallel-button input[type='password'].filled,
#sections .input-wrapper.parallel-button input[type='text'].filled,
#dialog-box .input-wrapper.parallel-button input[type='text'].filled,
#hero .input-wrapper.parallel-button input[type='text'].filled,
#sections .input-wrapper.parallel-button input[type='url'].filled,
#dialog-box .input-wrapper.parallel-button input[type='url'].filled,
#hero .input-wrapper.parallel-button input[type='url'].filled,
#sections .input-wrapper.parallel-button .chosen-container.filled,
#dialog-box .input-wrapper.parallel-button .chosen-container.filled,
#hero .input-wrapper.parallel-button .chosen-container.filled,
#sections .input-wrapper.parallel-button textarea.filled,
#dialog-box .input-wrapper.parallel-button textarea.filled,
#hero .input-wrapper.parallel-button textarea.filled {
  width: calc(100% - 230px);
}
#sections .input-wrapper.parallel-button select,
#dialog-box .input-wrapper.parallel-button select,
#hero .input-wrapper.parallel-button select {
  width: 100%;
  margin-bottom: 20px;
}
#sections .input-wrapper.parallel-button .btn,
#dialog-box .input-wrapper.parallel-button .btn,
#hero .input-wrapper.parallel-button .btn {
  float: right;
  width: 165px;
  padding-right: 0;
  padding-left: 0;
  border-radius: 5px;
}
@media (max-width: 767px) {
  #sections .input-wrapper.parallel-button .btn,
  #dialog-box .input-wrapper.parallel-button .btn,
  #hero .input-wrapper.parallel-button .btn {
    width: 100% !important;
  }
}
#sections .input-wrapper.parallel-button .btn.filled,
#dialog-box .input-wrapper.parallel-button .btn.filled,
#hero .input-wrapper.parallel-button .btn.filled {
  width: 100px !important;
}
#sections .input-wrapper.parallel-button .btn.filled.red,
#dialog-box .input-wrapper.parallel-button .btn.filled.red,
#hero .input-wrapper.parallel-button .btn.filled.red {
  margin-right: 10px;
}
#sections .input-wrapper.parallel-button .chosen-container input,
#dialog-box .input-wrapper.parallel-button .chosen-container input,
#hero .input-wrapper.parallel-button .chosen-container input {
  width: 100% !important;
  margin: 0;
}
#sections .input-wrapper.parallel-button .chosen-container .chosen-results,
#dialog-box .input-wrapper.parallel-button .chosen-container .chosen-results,
#hero .input-wrapper.parallel-button .chosen-container .chosen-results {
  width: 100%;
}
#sections .input-wrapper.parallel-links input[type='email'],
#dialog-box .input-wrapper.parallel-links input[type='email'],
#hero .input-wrapper.parallel-links input[type='email'],
#sections .input-wrapper.parallel-links input[type='number'],
#dialog-box .input-wrapper.parallel-links input[type='number'],
#hero .input-wrapper.parallel-links input[type='number'],
#sections .input-wrapper.parallel-links input[type='password'],
#dialog-box .input-wrapper.parallel-links input[type='password'],
#hero .input-wrapper.parallel-links input[type='password'],
#sections .input-wrapper.parallel-links input[type='text'],
#dialog-box .input-wrapper.parallel-links input[type='text'],
#hero .input-wrapper.parallel-links input[type='text'],
#sections .input-wrapper.parallel-links input[type='url'],
#dialog-box .input-wrapper.parallel-links input[type='url'],
#hero .input-wrapper.parallel-links input[type='url'],
#sections .input-wrapper.parallel-links .chosen-container,
#dialog-box .input-wrapper.parallel-links .chosen-container,
#hero .input-wrapper.parallel-links .chosen-container,
#sections .input-wrapper.parallel-links textarea,
#dialog-box .input-wrapper.parallel-links textarea,
#hero .input-wrapper.parallel-links textarea {
  float: left;
  width: calc(100% - 95px) !important;
}
#sections .input-wrapper.parallel-links .link-wrapper,
#dialog-box .input-wrapper.parallel-links .link-wrapper,
#hero .input-wrapper.parallel-links .link-wrapper {
  float: right;
  width: 75px;
  text-align: center;
}
#sections .input-wrapper.parallel-links .link-wrapper a,
#dialog-box .input-wrapper.parallel-links .link-wrapper a,
#hero .input-wrapper.parallel-links .link-wrapper a {
  display: inline-block;
  width: 100%;
}
#sections .input-wrapper.parallel-links .link-wrapper a.last,
#dialog-box .input-wrapper.parallel-links .link-wrapper a.last,
#hero .input-wrapper.parallel-links .link-wrapper a.last {
  border-bottom: 0;
}
#sections .input-wrapper.parallel-links .link-wrapper span,
#dialog-box .input-wrapper.parallel-links .link-wrapper span,
#hero .input-wrapper.parallel-links .link-wrapper span {
  float: left;
  clear: both;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  border-bottom: 1px solid #f77836;
}
#sections .input-wrapper.double-parallel-button,
#dialog-box .input-wrapper.double-parallel-button,
#hero .input-wrapper.double-parallel-button {
  float: left;
}
#sections .input-wrapper.double-parallel-button input[type='email'],
#dialog-box .input-wrapper.double-parallel-button input[type='email'],
#hero .input-wrapper.double-parallel-button input[type='email'],
#sections .input-wrapper.double-parallel-button input[type='number'],
#dialog-box .input-wrapper.double-parallel-button input[type='number'],
#hero .input-wrapper.double-parallel-button input[type='number'],
#sections .input-wrapper.double-parallel-button input[type='password'],
#dialog-box .input-wrapper.double-parallel-button input[type='password'],
#hero .input-wrapper.double-parallel-button input[type='password'],
#sections .input-wrapper.double-parallel-button input[type='text'],
#dialog-box .input-wrapper.double-parallel-button input[type='text'],
#hero .input-wrapper.double-parallel-button input[type='text'],
#sections .input-wrapper.double-parallel-button input[type='url'],
#dialog-box .input-wrapper.double-parallel-button input[type='url'],
#hero .input-wrapper.double-parallel-button input[type='url'],
#sections .input-wrapper.double-parallel-button .chosen-container,
#dialog-box .input-wrapper.double-parallel-button .chosen-container,
#hero .input-wrapper.double-parallel-button .chosen-container,
#sections .input-wrapper.double-parallel-button textarea,
#dialog-box .input-wrapper.double-parallel-button textarea,
#hero .input-wrapper.double-parallel-button textarea {
  float: left;
  width: calc(100% - 300px) !important;
}
#sections .input-wrapper.double-parallel-button .btn,
#dialog-box .input-wrapper.double-parallel-button .btn,
#hero .input-wrapper.double-parallel-button .btn {
  float: right;
  width: 130px;
  margin-left: 10px;
  padding-right: 0;
  padding-left: 0;
  border-radius: 5px;
}
#sections .input-wrapper.double-parallel-button .chosen-container input,
#dialog-box .input-wrapper.double-parallel-button .chosen-container input,
#hero .input-wrapper.double-parallel-button .chosen-container input {
  width: 100% !important;
  margin: 0;
}
#sections .input-wrapper.double-parallel-button .chosen-container .chosen-results,
#dialog-box .input-wrapper.double-parallel-button .chosen-container .chosen-results,
#hero .input-wrapper.double-parallel-button .chosen-container .chosen-results {
  width: 100%;
}
#sections .input-wrapper.icon input[type='text'],
#dialog-box .input-wrapper.icon input[type='text'],
#hero .input-wrapper.icon input[type='text'],
#sections .input-wrapper.icon input[type='password'],
#dialog-box .input-wrapper.icon input[type='password'],
#hero .input-wrapper.icon input[type='password'],
#sections .input-wrapper.icon input[type='email'],
#dialog-box .input-wrapper.icon input[type='email'],
#hero .input-wrapper.icon input[type='email'],
#sections .input-wrapper.icon input[type='url'],
#dialog-box .input-wrapper.icon input[type='url'],
#hero .input-wrapper.icon input[type='url'],
#sections .input-wrapper.icon input[type='number'],
#dialog-box .input-wrapper.icon input[type='number'],
#hero .input-wrapper.icon input[type='number'] {
  padding-left: 0px;
}
#sections .input-wrapper.icon.person input[type='text'],
#dialog-box .input-wrapper.icon.person input[type='text'],
#hero .input-wrapper.icon.person input[type='text'],
#sections .input-wrapper.icon.person input[type='password'],
#dialog-box .input-wrapper.icon.person input[type='password'],
#hero .input-wrapper.icon.person input[type='password'],
#sections .input-wrapper.icon.person input[type='email'],
#dialog-box .input-wrapper.icon.person input[type='email'],
#hero .input-wrapper.icon.person input[type='email'],
#sections .input-wrapper.icon.person input[type='url'],
#dialog-box .input-wrapper.icon.person input[type='url'],
#hero .input-wrapper.icon.person input[type='url'],
#sections .input-wrapper.icon.person input[type='number'],
#dialog-box .input-wrapper.icon.person input[type='number'],
#hero .input-wrapper.icon.person input[type='number'] {
  background: url('/static/images/icons/person.png') 18px center no-repeat;
}
#sections .input-wrapper.error input[type='text'],
#dialog-box .input-wrapper.error input[type='text'],
#hero .input-wrapper.error input[type='text'],
#sections .input-wrapper.error input[type='password'],
#dialog-box .input-wrapper.error input[type='password'],
#hero .input-wrapper.error input[type='password'],
#sections .input-wrapper.error input[type='email'],
#dialog-box .input-wrapper.error input[type='email'],
#hero .input-wrapper.error input[type='email'],
#sections .input-wrapper.error input[type='url'],
#dialog-box .input-wrapper.error input[type='url'],
#hero .input-wrapper.error input[type='url'],
#sections .input-wrapper.error input[type='number'],
#dialog-box .input-wrapper.error input[type='number'],
#hero .input-wrapper.error input[type='number'],
#sections .input-wrapper.error textarea,
#dialog-box .input-wrapper.error textarea,
#hero .input-wrapper.error textarea,
#sections .input-wrapper.error .mce-tinymce,
#dialog-box .input-wrapper.error .mce-tinymce,
#hero .input-wrapper.error .mce-tinymce {
  border-color: #A81313;
}
#sections .input-wrapper label,
#dialog-box .input-wrapper label,
#hero .input-wrapper label {
  float: left;
  clear: both;
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #787878;
  text-transform: lowercase;
  font-style: italic;
  margin-bottom: 5px;
}
#sections .input-wrapper label a,
#dialog-box .input-wrapper label a,
#hero .input-wrapper label a {
  float: right;
}
#sections .input-wrapper input[type='text'],
#dialog-box .input-wrapper input[type='text'],
#hero .input-wrapper input[type='text'],
#sections .input-wrapper input[type='password'],
#dialog-box .input-wrapper input[type='password'],
#hero .input-wrapper input[type='password'],
#sections .input-wrapper input[type='email'],
#dialog-box .input-wrapper input[type='email'],
#hero .input-wrapper input[type='email'],
#sections .input-wrapper input[type='url'],
#dialog-box .input-wrapper input[type='url'],
#hero .input-wrapper input[type='url'],
#sections .input-wrapper input[type='number'],
#dialog-box .input-wrapper input[type='number'],
#hero .input-wrapper input[type='number'],
#sections .input-wrapper textarea,
#dialog-box .input-wrapper textarea,
#hero .input-wrapper textarea {
  width: 100%;
  height: 45px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #555555 !important;
  padding: 0 30px;
  background-color: #f9f9f9;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  outline: none !important;
  box-shadow: none;
}
#sections .input-wrapper input[type='text'].bordered,
#dialog-box .input-wrapper input[type='text'].bordered,
#hero .input-wrapper input[type='text'].bordered,
#sections .input-wrapper input[type='password'].bordered,
#dialog-box .input-wrapper input[type='password'].bordered,
#hero .input-wrapper input[type='password'].bordered,
#sections .input-wrapper input[type='email'].bordered,
#dialog-box .input-wrapper input[type='email'].bordered,
#hero .input-wrapper input[type='email'].bordered,
#sections .input-wrapper input[type='url'].bordered,
#dialog-box .input-wrapper input[type='url'].bordered,
#hero .input-wrapper input[type='url'].bordered,
#sections .input-wrapper input[type='number'].bordered,
#dialog-box .input-wrapper input[type='number'].bordered,
#hero .input-wrapper input[type='number'].bordered,
#sections .input-wrapper textarea.bordered,
#dialog-box .input-wrapper textarea.bordered,
#hero .input-wrapper textarea.bordered {
  background-color: #FFFFFF;
  border: 1px solid #757575;
}
#sections .input-wrapper input[type='text']:disabled,
#dialog-box .input-wrapper input[type='text']:disabled,
#hero .input-wrapper input[type='text']:disabled,
#sections .input-wrapper input[type='password']:disabled,
#dialog-box .input-wrapper input[type='password']:disabled,
#hero .input-wrapper input[type='password']:disabled,
#sections .input-wrapper input[type='email']:disabled,
#dialog-box .input-wrapper input[type='email']:disabled,
#hero .input-wrapper input[type='email']:disabled,
#sections .input-wrapper input[type='url']:disabled,
#dialog-box .input-wrapper input[type='url']:disabled,
#hero .input-wrapper input[type='url']:disabled,
#sections .input-wrapper input[type='number']:disabled,
#dialog-box .input-wrapper input[type='number']:disabled,
#hero .input-wrapper input[type='number']:disabled,
#sections .input-wrapper textarea:disabled,
#dialog-box .input-wrapper textarea:disabled,
#hero .input-wrapper textarea:disabled {
  background-color: transparent;
}
#sections .input-wrapper textarea,
#dialog-box .input-wrapper textarea,
#hero .input-wrapper textarea {
  height: 300px;
  resize: none;
  padding: 15px;
}
#sections .input-wrapper #id_photo,
#dialog-box .input-wrapper #id_photo,
#hero .input-wrapper #id_photo {
  display: none;
}
#sections .input-wrapper br,
#dialog-box .input-wrapper br,
#hero .input-wrapper br {
  float: left;
  clear: both;
  width: 100%;
  height: 2px;
  margin-bottom: 10px;
}
#sections .input-wrapper.error input[type='email'],
#dialog-box .input-wrapper.error input[type='email'],
#hero .input-wrapper.error input[type='email'],
#sections .input-wrapper .error input[type='email'],
#dialog-box .input-wrapper .error input[type='email'],
#hero .input-wrapper .error input[type='email'],
#sections .input-wrapper.error input[type='number'],
#dialog-box .input-wrapper.error input[type='number'],
#hero .input-wrapper.error input[type='number'],
#sections .input-wrapper .error input[type='number'],
#dialog-box .input-wrapper .error input[type='number'],
#hero .input-wrapper .error input[type='number'],
#sections .input-wrapper.error input[type='password'],
#dialog-box .input-wrapper.error input[type='password'],
#hero .input-wrapper.error input[type='password'],
#sections .input-wrapper .error input[type='password'],
#dialog-box .input-wrapper .error input[type='password'],
#hero .input-wrapper .error input[type='password'],
#sections .input-wrapper.error input[type='text'],
#dialog-box .input-wrapper.error input[type='text'],
#hero .input-wrapper.error input[type='text'],
#sections .input-wrapper .error input[type='text'],
#dialog-box .input-wrapper .error input[type='text'],
#hero .input-wrapper .error input[type='text'],
#sections .input-wrapper.error input[type='url'],
#dialog-box .input-wrapper.error input[type='url'],
#hero .input-wrapper.error input[type='url'],
#sections .input-wrapper .error input[type='url'],
#dialog-box .input-wrapper .error input[type='url'],
#hero .input-wrapper .error input[type='url'],
#sections .input-wrapper.error textarea,
#dialog-box .input-wrapper.error textarea,
#hero .input-wrapper.error textarea,
#sections .input-wrapper .error textarea,
#dialog-box .input-wrapper .error textarea,
#hero .input-wrapper .error textarea {
  border-color: #A81313;
}
#sections .input-wrapper.error .chosen-container,
#dialog-box .input-wrapper.error .chosen-container,
#hero .input-wrapper.error .chosen-container,
#sections .input-wrapper .error .chosen-container,
#dialog-box .input-wrapper .error .chosen-container,
#hero .input-wrapper .error .chosen-container {
  border: 2px solid #f77836;
  height: 59px;
}
#sections .input-wrapper .errorlist,
#dialog-box .input-wrapper .errorlist,
#hero .input-wrapper .errorlist {
  list-style: none;
  padding: 0 !important;
  margin: 5px 0 0 0 !important;
}
#sections .input-wrapper .errorlist li,
#dialog-box .input-wrapper .errorlist li,
#hero .input-wrapper .errorlist li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #A81313 !important;
  text-transform: uppercase;
}
#sections .input-wrapper input[type='file'],
#dialog-box .input-wrapper input[type='file'],
#hero .input-wrapper input[type='file'] {
  display: none;
  visibility: hidden;
}
#sections .input-wrapper .icon input[type='email'],
#dialog-box .input-wrapper .icon input[type='email'],
#hero .input-wrapper .icon input[type='email'],
#sections .input-wrapper .icon input[type='number'],
#dialog-box .input-wrapper .icon input[type='number'],
#hero .input-wrapper .icon input[type='number'],
#sections .input-wrapper .icon input[type='password'],
#dialog-box .input-wrapper .icon input[type='password'],
#hero .input-wrapper .icon input[type='password'],
#sections .input-wrapper .icon input[type='text'],
#dialog-box .input-wrapper .icon input[type='text'],
#hero .input-wrapper .icon input[type='text'],
#sections .input-wrapper .icon input[type='url'],
#dialog-box .input-wrapper .icon input[type='url'],
#hero .input-wrapper .icon input[type='url'] {
  padding-left: 65px;
}
#sections .input-wrapper .icon.facebook input,
#dialog-box .input-wrapper .icon.facebook input,
#hero .input-wrapper .icon.facebook input {
  background: url('/static/images/icons/facebook.png') 25px center no-repeat;
}
#sections .input-wrapper .icon.twitter input,
#dialog-box .input-wrapper .icon.twitter input,
#hero .input-wrapper .icon.twitter input {
  background: url('/static/images/icons/twitter.png') 20px center no-repeat;
}
#sections .input-wrapper .icon.linkedin input,
#dialog-box .input-wrapper .icon.linkedin input,
#hero .input-wrapper .icon.linkedin input {
  background: url('/static/images/icons/linkedin.png') 22px center no-repeat;
}
#sections .input-wrapper .icon.google_plus input,
#dialog-box .input-wrapper .icon.google_plus input,
#hero .input-wrapper .icon.google_plus input {
  background: url('/static/images/icons/google_plus.png') 22px center no-repeat;
}
#sections .input-wrapper .icon.pinterest input,
#dialog-box .input-wrapper .icon.pinterest input,
#hero .input-wrapper .icon.pinterest input {
  background: url('/static/images/icons/pinterest.png') 22px center no-repeat;
}
#sections .input-wrapper .icon.instagram input,
#dialog-box .input-wrapper .icon.instagram input,
#hero .input-wrapper .icon.instagram input {
  background: url('/static/images/icons/instagram.png') 21px center no-repeat;
}
#sections .input-wrapper .icon.stumbleupon input,
#dialog-box .input-wrapper .icon.stumbleupon input,
#hero .input-wrapper .icon.stumbleupon input {
  background: url('/static/images/icons/stumbleupon.png') 20px center no-repeat;
}
#sections .input-wrapper .icon.dribble input,
#dialog-box .input-wrapper .icon.dribble input,
#hero .input-wrapper .icon.dribble input {
  background: url('/static/images/icons/dribble.png') 21px center no-repeat;
}
@media only screen and (max-width: 767px) {
  #sections .input-wrapper .align-center,
  #dialog-box .input-wrapper .align-center,
  #hero .input-wrapper .align-center {
    text-align: left !important;
  }
}
#sections .input-wrapper .remove,
#dialog-box .input-wrapper .remove,
#hero .input-wrapper .remove {
  color: #A81313;
  margin-top: 15px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #sections .input-wrapper .remove,
  #dialog-box .input-wrapper .remove,
  #hero .input-wrapper .remove {
    margin-top: 0;
  }
}
#sections .input-wrapper .help-text,
#dialog-box .input-wrapper .help-text,
#hero .input-wrapper .help-text {
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6em;
  margin-top: 10px;
}
#sections .input-wrapper .help-text#add-member,
#dialog-box .input-wrapper .help-text#add-member,
#hero .input-wrapper .help-text#add-member {
  float: right;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #f77836;
  text-transform: uppercase;
  cursor: pointer;
}
#sections .input-wrapper .help-text#add-member i,
#dialog-box .input-wrapper .help-text#add-member i,
#hero .input-wrapper .help-text#add-member i {
  float: left;
  font-size: 17px;
  margin-right: 4px;
}
@media (max-width: 767px) {
  #sections .input-wrapper .help-text.industry,
  #dialog-box .input-wrapper .help-text.industry,
  #hero .input-wrapper .help-text.industry {
    margin-top: 0;
  }
}
#sections .input-wrapper .form-note,
#dialog-box .input-wrapper .form-note,
#hero .input-wrapper .form-note {
  margin-top: 6px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  text-align: right;
  font-style: italic;
}
#sections .input-wrapper .total-price,
#dialog-box .input-wrapper .total-price,
#hero .input-wrapper .total-price {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: #555555;
  line-height: 50px;
}
#sections .input-wrapper .mce-panel,
#dialog-box .input-wrapper .mce-panel,
#hero .input-wrapper .mce-panel {
  background: #F3F3F3;
  border: none;
}
#sections .input-wrapper .mce-panel .mce-menubar,
#dialog-box .input-wrapper .mce-panel .mce-menubar,
#hero .input-wrapper .mce-panel .mce-menubar {
  border: none;
}
#sections .input-wrapper .mce-panel .mce-btn,
#dialog-box .input-wrapper .mce-panel .mce-btn,
#hero .input-wrapper .mce-panel .mce-btn {
  background-color: transparent;
  border: none;
}
#sections .input-wrapper .horizontal-checkbox input[type='checkbox'],
#dialog-box .input-wrapper .horizontal-checkbox input[type='checkbox'],
#hero .input-wrapper .horizontal-checkbox input[type='checkbox'] {
  float: left;
  margin: 0 10px 0 0;
}
@media (max-width: 991px) {
  #sections .input-wrapper .horizontal-checkbox input[type='checkbox']#id_terms,
  #dialog-box .input-wrapper .horizontal-checkbox input[type='checkbox']#id_terms,
  #hero .input-wrapper .horizontal-checkbox input[type='checkbox']#id_terms {
    margin: 5px 10px 0 0 !important;
  }
}
#sections .input-wrapper .horizontal-checkbox label,
#dialog-box .input-wrapper .horizontal-checkbox label,
#hero .input-wrapper .horizontal-checkbox label {
  float: left;
  width: 100%;
  width: calc(100% - 40px);
}
@media (max-width: 991px) {
  #sections .input-wrapper .horizontal-checkbox label.terms,
  #dialog-box .input-wrapper .horizontal-checkbox label.terms,
  #hero .input-wrapper .horizontal-checkbox label.terms {
    line-height: 21px !important;
  }
}
#sections .input-wrapper #paypal-button-wrapper,
#dialog-box .input-wrapper #paypal-button-wrapper,
#hero .input-wrapper #paypal-button-wrapper {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 40px;
}
#sections .input-wrapper #paypal-button-wrapper #paypal-button,
#dialog-box .input-wrapper #paypal-button-wrapper #paypal-button,
#hero .input-wrapper #paypal-button-wrapper #paypal-button {
  float: left;
}
#sections .input-wrapper #paypal-button-wrapper span,
#dialog-box .input-wrapper #paypal-button-wrapper span,
#hero .input-wrapper #paypal-button-wrapper span {
  display: block;
  float: left;
  font-weight: 700;
  margin-top: 12px;
  margin-left: 30px;
}
#sections .input-wrapper .credit-card-block,
#dialog-box .input-wrapper .credit-card-block,
#hero .input-wrapper .credit-card-block {
  position: relative;
  float: left;
  width: 100%;
  height: 340px;
  background-size: contain;
  border-radius: 15px;
}
#sections .input-wrapper .credit-card-block.credit-card-errors,
#dialog-box .input-wrapper .credit-card-block.credit-card-errors,
#hero .input-wrapper .credit-card-block.credit-card-errors {
  height: 375px;
}
#sections .input-wrapper .credit-card-block.credit-card-errors .card-front,
#dialog-box .input-wrapper .credit-card-block.credit-card-errors .card-front,
#hero .input-wrapper .credit-card-block.credit-card-errors .card-front,
#sections .input-wrapper .credit-card-block.credit-card-errors .card-back,
#dialog-box .input-wrapper .credit-card-block.credit-card-errors .card-back,
#hero .input-wrapper .credit-card-block.credit-card-errors .card-back {
  height: 375px;
}
#sections .input-wrapper .credit-card-block .card-front,
#dialog-box .input-wrapper .credit-card-block .card-front,
#hero .input-wrapper .credit-card-block .card-front {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 490px;
  height: 100%;
  padding: 25px;
  background-color: #F0F0F0;
  border: 1px solid #F0F0F0;
  border-radius: 15px;
  box-shadow: 3px 5px 12px -4px #222222;
}
#sections .input-wrapper .credit-card-block .card-front .card-logos,
#dialog-box .input-wrapper .credit-card-block .card-front .card-logos,
#hero .input-wrapper .credit-card-block .card-front .card-logos {
  position: absolute;
  z-index: 10;
  top: 45px;
  right: 35px;
}
#sections .input-wrapper .credit-card-block .card-front .top-info,
#dialog-box .input-wrapper .credit-card-block .card-front .top-info,
#hero .input-wrapper .credit-card-block .card-front .top-info {
  width: 100%;
  width: calc(100% - 120px);
}
#sections .input-wrapper .credit-card-block .card-back,
#dialog-box .input-wrapper .credit-card-block .card-back,
#hero .input-wrapper .credit-card-block .card-back {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #AAAAAA;
  border-radius: 15px;
}
#sections .input-wrapper .credit-card-block .card-back .card-strip,
#dialog-box .input-wrapper .credit-card-block .card-back .card-strip,
#hero .input-wrapper .credit-card-block .card-back .card-strip {
  float: left;
  clear: both;
  width: 100%;
  height: 65px;
  margin: 35px 0 20px;
  background-color: #111111;
}
#sections .input-wrapper .credit-card-block .card-back .card-cvv,
#dialog-box .input-wrapper .credit-card-block .card-back .card-cvv,
#hero .input-wrapper .credit-card-block .card-back .card-cvv {
  float: right;
  width: 120px;
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 1199px) {
  #sections .input-wrapper .credit-card-block .card-back .card-cvv,
  #dialog-box .input-wrapper .credit-card-block .card-back .card-cvv,
  #hero .input-wrapper .credit-card-block .card-back .card-cvv {
    width: 90px;
    margin: 0 20px 0 0;
  }
}
#sections .input-wrapper .credit-card-block .card-back label,
#dialog-box .input-wrapper .credit-card-block .card-back label,
#hero .input-wrapper .credit-card-block .card-back label {
  font-size: 14px;
  margin-bottom: 5px;
}
#sections .input-wrapper .credit-card-block .card-back input[type='email'],
#dialog-box .input-wrapper .credit-card-block .card-back input[type='email'],
#hero .input-wrapper .credit-card-block .card-back input[type='email'],
#sections .input-wrapper .credit-card-block .card-back input[type='number'],
#dialog-box .input-wrapper .credit-card-block .card-back input[type='number'],
#hero .input-wrapper .credit-card-block .card-back input[type='number'],
#sections .input-wrapper .credit-card-block .card-back input[type='password'],
#dialog-box .input-wrapper .credit-card-block .card-back input[type='password'],
#hero .input-wrapper .credit-card-block .card-back input[type='password'],
#sections .input-wrapper .credit-card-block .card-back input[type='text'],
#dialog-box .input-wrapper .credit-card-block .card-back input[type='text'],
#hero .input-wrapper .credit-card-block .card-back input[type='text'],
#sections .input-wrapper .credit-card-block .card-back input[type='url'],
#dialog-box .input-wrapper .credit-card-block .card-back input[type='url'],
#hero .input-wrapper .credit-card-block .card-back input[type='url'],
#sections .input-wrapper .credit-card-block .card-back textarea,
#dialog-box .input-wrapper .credit-card-block .card-back textarea,
#hero .input-wrapper .credit-card-block .card-back textarea {
  border: 2px solid #AAAAAA;
}
#sections .input-wrapper .credit-card-block .card-input,
#dialog-box .input-wrapper .credit-card-block .card-input,
#hero .input-wrapper .credit-card-block .card-input {
  margin-bottom: 20px;
}
#sections .input-wrapper .credit-card-block .card-input.last,
#dialog-box .input-wrapper .credit-card-block .card-input.last,
#hero .input-wrapper .credit-card-block .card-input.last {
  margin-bottom: 0;
}
#sections .input-wrapper .credit-card-block .card-input.error input[type='email'],
#dialog-box .input-wrapper .credit-card-block .card-input.error input[type='email'],
#hero .input-wrapper .credit-card-block .card-input.error input[type='email'],
#sections .input-wrapper .credit-card-block .card-input .error input[type='email'],
#dialog-box .input-wrapper .credit-card-block .card-input .error input[type='email'],
#hero .input-wrapper .credit-card-block .card-input .error input[type='email'],
#sections .input-wrapper .credit-card-block .card-input.error input[type='number'],
#dialog-box .input-wrapper .credit-card-block .card-input.error input[type='number'],
#hero .input-wrapper .credit-card-block .card-input.error input[type='number'],
#sections .input-wrapper .credit-card-block .card-input .error input[type='number'],
#dialog-box .input-wrapper .credit-card-block .card-input .error input[type='number'],
#hero .input-wrapper .credit-card-block .card-input .error input[type='number'],
#sections .input-wrapper .credit-card-block .card-input.error input[type='password'],
#dialog-box .input-wrapper .credit-card-block .card-input.error input[type='password'],
#hero .input-wrapper .credit-card-block .card-input.error input[type='password'],
#sections .input-wrapper .credit-card-block .card-input .error input[type='password'],
#dialog-box .input-wrapper .credit-card-block .card-input .error input[type='password'],
#hero .input-wrapper .credit-card-block .card-input .error input[type='password'],
#sections .input-wrapper .credit-card-block .card-input.error input[type='text'],
#dialog-box .input-wrapper .credit-card-block .card-input.error input[type='text'],
#hero .input-wrapper .credit-card-block .card-input.error input[type='text'],
#sections .input-wrapper .credit-card-block .card-input .error input[type='text'],
#dialog-box .input-wrapper .credit-card-block .card-input .error input[type='text'],
#hero .input-wrapper .credit-card-block .card-input .error input[type='text'],
#sections .input-wrapper .credit-card-block .card-input.error input[type='url'],
#dialog-box .input-wrapper .credit-card-block .card-input.error input[type='url'],
#hero .input-wrapper .credit-card-block .card-input.error input[type='url'],
#sections .input-wrapper .credit-card-block .card-input .error input[type='url'],
#dialog-box .input-wrapper .credit-card-block .card-input .error input[type='url'],
#hero .input-wrapper .credit-card-block .card-input .error input[type='url'],
#sections .input-wrapper .credit-card-block .card-input.error textarea,
#dialog-box .input-wrapper .credit-card-block .card-input.error textarea,
#hero .input-wrapper .credit-card-block .card-input.error textarea,
#sections .input-wrapper .credit-card-block .card-input .error textarea,
#dialog-box .input-wrapper .credit-card-block .card-input .error textarea,
#hero .input-wrapper .credit-card-block .card-input .error textarea {
  border: 2px solid #f77836;
}
#sections .input-wrapper .credit-card-block label,
#dialog-box .input-wrapper .credit-card-block label,
#hero .input-wrapper .credit-card-block label {
  margin-bottom: 5px;
}
#sections .input-wrapper .credit-card-block input[type='email'],
#dialog-box .input-wrapper .credit-card-block input[type='email'],
#hero .input-wrapper .credit-card-block input[type='email'],
#sections .input-wrapper .credit-card-block input[type='number'],
#dialog-box .input-wrapper .credit-card-block input[type='number'],
#hero .input-wrapper .credit-card-block input[type='number'],
#sections .input-wrapper .credit-card-block input[type='password'],
#dialog-box .input-wrapper .credit-card-block input[type='password'],
#hero .input-wrapper .credit-card-block input[type='password'],
#sections .input-wrapper .credit-card-block input[type='text'],
#dialog-box .input-wrapper .credit-card-block input[type='text'],
#hero .input-wrapper .credit-card-block input[type='text'],
#sections .input-wrapper .credit-card-block input[type='url'],
#dialog-box .input-wrapper .credit-card-block input[type='url'],
#hero .input-wrapper .credit-card-block input[type='url'],
#sections .input-wrapper .credit-card-block textarea,
#dialog-box .input-wrapper .credit-card-block textarea,
#hero .input-wrapper .credit-card-block textarea {
  background-color: #FFFFFF !important;
  border: 2px solid #F0F0F0;
  border-radius: 6px;
}
#sections .input-wrapper .credit-card-block .help-text,
#dialog-box .input-wrapper .credit-card-block .help-text,
#hero .input-wrapper .credit-card-block .help-text {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  margin-top: 5px;
}
#sections .input-wrapper .credit-card-block .chosen-container,
#dialog-box .input-wrapper .credit-card-block .chosen-container,
#hero .input-wrapper .credit-card-block .chosen-container {
  clear: none !important;
  width: 50% !important;
  width: calc(50% - 10px) !important;
  height: 50px !important;
}
#sections .input-wrapper .credit-card-block .chosen-container#id_expdate_1_chosen,
#dialog-box .input-wrapper .credit-card-block .chosen-container#id_expdate_1_chosen,
#hero .input-wrapper .credit-card-block .chosen-container#id_expdate_1_chosen {
  float: right !important;
}
#sections .input-wrapper .credit-card-block .chosen-container .chosen-single,
#dialog-box .input-wrapper .credit-card-block .chosen-container .chosen-single,
#hero .input-wrapper .credit-card-block .chosen-container .chosen-single {
  height: 100%;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
#sections .input-wrapper .credit-card-block .chosen-container .chosen-single span,
#dialog-box .input-wrapper .credit-card-block .chosen-container .chosen-single span,
#hero .input-wrapper .credit-card-block .chosen-container .chosen-single span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 48px;
}
#sections .input-wrapper .credit-card-block .chosen-container .chosen-single div,
#dialog-box .input-wrapper .credit-card-block .chosen-container .chosen-single div,
#hero .input-wrapper .credit-card-block .chosen-container .chosen-single div {
  border-color: #FFFFFF;
}
#sections .input-wrapper .credit-card-block .chosen-container .chosen-drop,
#dialog-box .input-wrapper .credit-card-block .chosen-container .chosen-drop,
#hero .input-wrapper .credit-card-block .chosen-container .chosen-drop {
  background: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  #sections .input-wrapper .credit-card-block,
  #dialog-box .input-wrapper .credit-card-block,
  #hero .input-wrapper .credit-card-block {
    height: 335px;
    margin-bottom: 150px;
  }
  #sections .input-wrapper .credit-card-block .card-front,
  #dialog-box .input-wrapper .credit-card-block .card-front,
  #hero .input-wrapper .credit-card-block .card-front {
    width: 100%;
    width: calc(100% - 25px);
  }
  #sections .input-wrapper .credit-card-block .card-back,
  #dialog-box .input-wrapper .credit-card-block .card-back,
  #hero .input-wrapper .credit-card-block .card-back {
    top: 155px;
    left: 25px;
    width: calc(100% - 25px);
  }
  #sections .input-wrapper .credit-card-block .card-back .card-strip,
  #dialog-box .input-wrapper .credit-card-block .card-back .card-strip,
  #hero .input-wrapper .credit-card-block .card-back .card-strip {
    margin-bottom: 60px;
  }
  #sections .input-wrapper .credit-card-block .card-back .card-cvv,
  #dialog-box .input-wrapper .credit-card-block .card-back .card-cvv,
  #hero .input-wrapper .credit-card-block .card-back .card-cvv {
    float: left;
    width: 120px;
    margin: 35px 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  #sections .input-wrapper.parallel-button input[type='text'],
  #dialog-box .input-wrapper.parallel-button input[type='text'],
  #hero .input-wrapper.parallel-button input[type='text'],
  #sections .input-wrapper.parallel-button input[type='password'],
  #dialog-box .input-wrapper.parallel-button input[type='password'],
  #hero .input-wrapper.parallel-button input[type='password'],
  #sections .input-wrapper.parallel-button input[type='email'],
  #dialog-box .input-wrapper.parallel-button input[type='email'],
  #hero .input-wrapper.parallel-button input[type='email'],
  #sections .input-wrapper.parallel-button input[type='url'],
  #dialog-box .input-wrapper.parallel-button input[type='url'],
  #hero .input-wrapper.parallel-button input[type='url'],
  #sections .input-wrapper.parallel-button input[type='number'],
  #dialog-box .input-wrapper.parallel-button input[type='number'],
  #hero .input-wrapper.parallel-button input[type='number'] {
    float: left;
    width: calc(100% - 180px);
    margin-right: 30px;
  }
  #sections .input-wrapper.parallel-button .btn,
  #dialog-box .input-wrapper.parallel-button .btn,
  #hero .input-wrapper.parallel-button .btn {
    float: left;
    width: 150px;
    height: 55px !important;
  }
}
@media only screen and (max-width: 767px) {
  #sections .input-wrapper.parallel-button input[type='text'],
  #dialog-box .input-wrapper.parallel-button input[type='text'],
  #hero .input-wrapper.parallel-button input[type='text'],
  #sections .input-wrapper.parallel-button input[type='password'],
  #dialog-box .input-wrapper.parallel-button input[type='password'],
  #hero .input-wrapper.parallel-button input[type='password'],
  #sections .input-wrapper.parallel-button input[type='email'],
  #dialog-box .input-wrapper.parallel-button input[type='email'],
  #hero .input-wrapper.parallel-button input[type='email'],
  #sections .input-wrapper.parallel-button input[type='url'],
  #dialog-box .input-wrapper.parallel-button input[type='url'],
  #hero .input-wrapper.parallel-button input[type='url'],
  #sections .input-wrapper.parallel-button input[type='number'],
  #dialog-box .input-wrapper.parallel-button input[type='number'],
  #hero .input-wrapper.parallel-button input[type='number'] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  #sections .input-wrapper.parallel-button .btn,
  #dialog-box .input-wrapper.parallel-button .btn,
  #hero .input-wrapper.parallel-button .btn {
    width: auto;
  }
}
#sections .small-input-wrapper.error input[type='text'],
#dialog-box .small-input-wrapper.error input[type='text'],
#hero .small-input-wrapper.error input[type='text'],
#sections .small-input-wrapper.error input[type='password'],
#dialog-box .small-input-wrapper.error input[type='password'],
#hero .small-input-wrapper.error input[type='password'],
#sections .small-input-wrapper.error input[type='email'],
#dialog-box .small-input-wrapper.error input[type='email'],
#hero .small-input-wrapper.error input[type='email'],
#sections .small-input-wrapper.error input[type='url'],
#dialog-box .small-input-wrapper.error input[type='url'],
#hero .small-input-wrapper.error input[type='url'],
#sections .small-input-wrapper.error input[type='number'],
#dialog-box .small-input-wrapper.error input[type='number'],
#hero .small-input-wrapper.error input[type='number'],
#sections .small-input-wrapper.error textarea,
#dialog-box .small-input-wrapper.error textarea,
#hero .small-input-wrapper.error textarea,
#sections .small-input-wrapper.error .mce-tinymce,
#dialog-box .small-input-wrapper.error .mce-tinymce,
#hero .small-input-wrapper.error .mce-tinymce {
  border: 2px solid #f77836 !important;
}
@media only screen and (max-width: 767px) {
  #sections .small-input-wrapper,
  #dialog-box .small-input-wrapper,
  #hero .small-input-wrapper {
    margin-bottom: 20px;
  }
  #sections .small-input-wrapper.last,
  #dialog-box .small-input-wrapper.last,
  #hero .small-input-wrapper.last {
    margin-bottom: 0;
  }
}
#sections .form-block,
#dialog-box .form-block,
#hero .form-block {
  margin-bottom: 40px;
}
#sections .form-block .error-list-wrapper ul,
#dialog-box .form-block .error-list-wrapper ul,
#hero .form-block .error-list-wrapper ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}
#sections .form-block .error-list-wrapper ul li,
#dialog-box .form-block .error-list-wrapper ul li,
#hero .form-block .error-list-wrapper ul li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #A81313 !important;
  text-transform: uppercase;
}
#sections .btn-wrapper.centered,
#dialog-box .btn-wrapper.centered,
#hero .btn-wrapper.centered {
  text-align: center;
  margin-top: 20px;
}
#sections .btn-wrapper.centered label,
#dialog-box .btn-wrapper.centered label,
#hero .btn-wrapper.centered label {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#sections .btn-wrapper.centered .btn,
#dialog-box .btn-wrapper.centered .btn,
#hero .btn-wrapper.centered .btn {
  width: 100%;
}
#sections .btn-wrapper.centered .btn#register-button,
#dialog-box .btn-wrapper.centered .btn#register-button,
#hero .btn-wrapper.centered .btn#register-button {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  #sections .btn-wrapper.centered,
  #dialog-box .btn-wrapper.centered,
  #hero .btn-wrapper.centered {
    margin-top: 40px;
  }
  #sections .btn-wrapper.centered .btn,
  #dialog-box .btn-wrapper.centered .btn,
  #hero .btn-wrapper.centered .btn {
    width: 100%;
    padding: 20px 30px;
  }
}
#sections select,
#dialog-box select,
#hero select {
  max-width: 100%;
}
/*====================
======================
END FORM CSS
======================
====================*/
/*====================
======================
ACCOUNT CSS
======================
====================*/
/*---------- ACCOUNT DETAILS ----------*/
#resend-email {
  float: left;
  margin-right: 17px;
  margin-bottom: 10px;
}
#sections #account-wrapper {
  padding-bottom: 100px !important;
}
#sections #account-wrapper .title-row h1 span {
  position: relative;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
}
#sections #account-wrapper .title-row h1 span.pending {
  color: #DD3863;
}
#sections #account-wrapper .title-row h1 span.approved {
  width: 240px;
  color: #3bc153;
}
#sections #account-wrapper .title-row h1 span.approved span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 180px;
  color: #3bc153;
  text-align: right;
  line-height: 1.1em;
  margin: 0 5px 0 0;
}
#sections #account-wrapper .title-row h1 span.approved img {
  float: right;
}
@media only screen and (max-width: 767px) {
  #sections #account-wrapper .title-row h1 span {
    float: left !important;
    margin: 20px 0;
  }
  #sections #account-wrapper .title-row h1 span.approved span {
    text-align: left;
    left: auto;
    right: 0;
  }
  #sections #account-wrapper .title-row h1 span.approved img {
    float: left;
  }
}
#sections #account-wrapper .in-page-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sections #account-wrapper .in-page-nav ul li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 10px;
}
#sections #account-wrapper .in-page-nav ul li a {
  color: #f77836;
}
#sections #account-wrapper .in-page-nav ul li a.active {
  color: #555555;
}
#sections #account-wrapper h3 {
  width: 100%;
}
#sections #account-wrapper h3 span {
  float: right;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1em;
  margin-top: 10px;
}
#sections #account-wrapper h3 span input {
  margin: 0 5px 0 0;
}
#sections #account-wrapper .block-header h3 {
  margin-bottom: 45px;
}
#sections #account-wrapper .blocks-wrapper {
  margin: 0 -45px;
}
#sections #account-wrapper .blocks-wrapper .account-block {
  margin-bottom: 80px;
  padding: 0 45px;
}
#sections #account-wrapper .blocks-wrapper .account-block .btn-wrapper {
  float: left;
  clear: both;
  width: 100%;
  margin-top: 20px;
}
#sections #account-wrapper #order-details-wrapper #success-wrapper {
  margin-bottom: 0 !important;
}
#sections #account-wrapper #order-details-wrapper #cart-items .cart-item.last {
  margin-bottom: 0;
}
#sections #account-wrapper #order-details-wrapper h4 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #555555;
  text-transform: none;
}
#sections #account-wrapper #order-details-wrapper p {
  line-height: 1.4em;
  margin: 0 !important;
}
#sections #account-wrapper #order-details-wrapper hr {
  margin: 30px 0 !important;
  border-color: #AAAAAA;
}
#pwd-match-icon {
  height: auto!important;
  position: absolute;
  right: 30px;
  top: 38px;
}
/*---------- END ACCOUNT DETAILS ----------*/
/*====================
======================
END ACCOUNT CSS
======================
====================*/
/*====================
======================
PROFILE CSS
======================
====================*/
#profile-wrapper {
  padding-bottom: 100px;
}
#profile-wrapper .profile-card {
  border-radius: 6px;
  margin: 0 0 24px 0;
  padding: 30px;
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.87);
  display: block;
  position: relative;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
}
#profile-wrapper .profile-card .card-title {
  margin-bottom: 40px;
  padding: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
#profile-wrapper .profile-card .card-title h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #757575 !important;
}
#profile-wrapper .profile-card .card-layout {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
}
#profile-wrapper .profile-card .card-layout.wrap {
  flex-wrap: wrap;
}
#profile-wrapper .profile-card .card-layout.row {
  flex-direction: row;
}
#profile-wrapper .profile-card .card-layout .input-wrapper {
  margin-bottom: 25px;
  padding: 0 24px;
}
#profile-wrapper .profile-card .card-layout .input-wrapper label {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  text-align: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#profile-wrapper .profile-card .card-layout .input-wrapper input[type='text'] {
  width: 100%;
  height: 40px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
  padding: 0 15px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
}
#profile-wrapper .profile-card .row {
  margin: 0 -24px;
}
#profile-wrapper .error-list-wrapper {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #DD3863;
  text-transform: capitalize;
}
#profile-wrapper .error-list-wrapper ul {
  list-style: none;
}
#profile-wrapper .btn {
  font-weight: 600 !important;
}
#page-title h2.profile-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #008feb !important;
  margin-bottom: 3px;
}
#page-title h6.profile-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #008feb !important;
  margin: 0;
  padding-left: 32px;
}
/*====================
======================
END PROFILE CSS
======================
====================*/
/*====================
======================
CHOSEN OVERRIDES CSS
======================
====================*/
/*========== CHOSEN OVERRIDES ==========*/
#sections .chosen-container,
#dialog-box .chosen-container {
  float: left !important;
  clear: both !important;
  width: 100% !important;
  width: 100%;
  height: 55px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #555555 !important;
  padding: 0;
  border-radius: 3px;
  border: none;
  outline: none !important;
  /*** MULTI SELECT ***/
  /*** END MULTI SELECT ***/
}
#sections .chosen-container.chosen-with-drop .chosen-single,
#dialog-box .chosen-container.chosen-with-drop .chosen-single {
  border: 1px solid #AAAAAA;
}
#sections .chosen-container.chosen-with-drop .chosen-drop,
#dialog-box .chosen-container.chosen-with-drop .chosen-drop {
  border: 1px solid #AAAAAA;
  border-top: none;
}
#sections .chosen-container .chosen-single,
#dialog-box .chosen-container .chosen-single {
  height: 55px;
  color: #555555 !important;
  padding-left: 30px;
  background: #FFFFFF;
  box-shadow: none;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  outline: none;
}
#sections .chosen-container .chosen-single span,
#dialog-box .chosen-container .chosen-single span {
  line-height: 55px;
  margin-right: 47px;
}
#sections .chosen-container .chosen-single div,
#dialog-box .chosen-container .chosen-single div {
  width: 47px;
  border-left: 2px solid #FFFFFF;
}
#sections .chosen-container .chosen-single div b,
#dialog-box .chosen-container .chosen-single div b {
  background: url('/static/images/chosen/arrows.png') center no-repeat !important;
  -webkit-transition: background 250ms linear;
  -moz-transition: background 250ms linear;
  -o-transition: background 250ms linear;
  -ms-transition: background 250ms linear;
  transition: background 250ms linear;
}
#sections .chosen-container .chosen-search input,
#dialog-box .chosen-container .chosen-search input {
  background-color: #FFFFFF;
  height: 25px;
  padding: 5px 10px;
}
#sections .chosen-container .chosen-drop,
#dialog-box .chosen-container .chosen-drop {
  padding-bottom: 15px;
  background-color: #FFFFFF;
  border: none;
  box-shadow: none;
}
#sections .chosen-container .chosen-drop .chosen-results,
#dialog-box .chosen-container .chosen-drop .chosen-results {
  margin: 0 !important;
  padding: 0 !important;
}
#sections .chosen-container .chosen-drop .chosen-results li,
#dialog-box .chosen-container .chosen-drop .chosen-results li {
  margin: 0 !important;
  padding: 0 10px 0 30px;
}
#sections .chosen-container .chosen-drop .chosen-results li.highlighted,
#dialog-box .chosen-container .chosen-drop .chosen-results li.highlighted {
  color: #FFFFFF !important;
  background: #f77836;
}
#sections .chosen-container.chosen-container-multi .chosen-choices,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices {
  height: 55px !important;
  margin: 0 !important;
  background: #FFFFFF;
  box-shadow: none;
  border: 1px solid #AAAAAA;
  border-radius: 3px;
  outline: none;
}
#sections .chosen-container.chosen-container-multi .chosen-choices .search-field,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices .search-field {
  height: 100%;
}
#sections .chosen-container.chosen-container-multi .chosen-choices .search-field input,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices .search-field input {
  height: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
  text-transform: uppercase;
  margin: 0;
}
#sections .chosen-container.chosen-container-multi .chosen-choices .search-choice,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices .search-choice {
  height: 39px;
  margin-top: 7px;
  padding: 0 30px 0 10px;
  background: #AAAAAA;
  border: none;
  border-radius: 3px;
}
#sections .chosen-container.chosen-container-multi .chosen-choices .search-choice span,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices .search-choice span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #555555;
  line-height: 39px;
  text-transform: lowercase;
}
#sections .chosen-container.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
#dialog-box .chosen-container.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#sections .chosen-container.chosen-container-multi .chosen-drop,
#dialog-box .chosen-container.chosen-container-multi .chosen-drop {
  border: 1px solid #AAAAAA;
  border-top: none;
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#sections .chosen-container.chosen-container-multi.chosen-with-drop .chosen-choices,
#dialog-box .chosen-container.chosen-container-multi.chosen-with-drop .chosen-choices {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#dialog-box .chosen-container .chosen-single {
  background-color: #F0F0F0;
}
#dialog-box .chosen-container .chosen-drop {
  background-color: #F0F0F0;
}
#dialog-box .chosen-container .chosen-drop .chosen-results li {
  padding: 10px 10px 10px 30px;
}
#dialog-box .chosen-container .chosen-drop .chosen-results li:hover {
  color: #FFFFFF;
  background: #0570B8;
}
#dialog-box .chosen-container .chosen-drop .chosen-results li.result-selected {
  color: #FFFFFF;
  background: #023455;
}
/*========== END CHOSEN OVERRIDES ==========*/
/*====================
======================
END CHOSEN OVERRIDES CSS
======================
====================*/
/*====================
======================
JQUERY OVERRIDES CSS
======================
====================*/
.ui-widget-header .ui-icon {
  background-image: url('/static/images/ui-icons_444444_256x240.png') !important;
}
/*====================
======================
END JQUERY OVERRIDES CSS
======================
====================*/
/*====================
======================
VUETIFY OVERRIDES CSS
======================
====================*/
#app .theme--light.application {
  background: #f9f9f9 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}
#app #page-title {
  margin-bottom: 40px;
}
#app #page-title h2 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #008feb !important;
  margin-bottom: 3px;
}
#app #page-title h2 .mdi:before {
  font-size: 26px;
}
#app #page-title h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #008feb !important;
  margin: 0;
  padding-left: 32px;
}
#app #page-title .proposal-header-info {
  color: #757575;
  padding-left: 32px;
  margin-top: 45px;
  margin-bottom: -25px;
}
#app #page-title .proposal-header-info h2 {
  font-weight: 800;
}
#app .title-divider {
  position: absolute;
  top: 70px;
  border-top-width: 2px !important;
}
#app .list-title-wrapper {
  float: left;
  clear: both;
  width: 100%;
}
#app .list-title-wrapper #page-title {
  float: left;
  margin: 0;
}
#app .list-title-wrapper .list-actions-wrapper {
  float: right;
}
#app .list-title-wrapper .list-actions-wrapper .action {
  float: left;
}
#app .repair-card {
  background-color: #f9f9f9;
}
#app .v-card {
  margin: 0 0 24px 0;
  padding: 30px;
  border: 1px solid #E8E8E8;
}
#app .v-card .repair-list-select-all {
  margin-left: 25px !important;
}
#app .v-card .repair-list-select-all .v-input__slot {
  margin-bottom: 25px;
}
#app .v-card .repair-list-select-all .v-label {
  font-size: 14px;
  margin-top: 5px;
}
#app .v-card .repair-list-actions {
  width: 300px;
  margin-left: auto;
  margin-top: 10px !important;
}
#app .v-card .repair-list-actions .v-input__control {
  min-height: 40px;
}
#app .v-card .repair-list-actions .v-input__control .v-input__slot {
  margin: 0;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  box-shadow: none;
}
#app .v-card .repair-list-actions .v-input__control .v-input__slot .v-select__selection {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
#app .v-card .repair-list-actions .v-input__control .v-input__slot .v-input__icon--clear .material-icons {
  font-size: 20px;
}
#app .v-card .repair-list-actions .v-input__control .v-input__slot input {
  padding: 0;
  border: none;
}
#app .v-card .repair-list-actions .v-label {
  font-style: italic;
  font-weight: normal;
}
#app .v-card .repair-list-actions .v-text-field__details {
  display: none;
}
#app .v-card.rounded-card {
  border-radius: 6px;
}
#app .v-card .v-card__title {
  margin-bottom: 40px;
  padding: 0;
}
#app .v-card .v-card__title.v-card__title--primary {
  padding: 8px;
  margin-bottom: 20px;
  width: 100%;
}
#app .v-card .v-card__title.v-card__title--primary .headline {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600;
  color: #000000;
}
#app .v-card .v-card__title.v-card__title--primary .repair-list-checkbox {
  margin-left: -30px;
  margin-right: 10px;
}
#app .v-card .v-card__title.v-card__title--primary .repair-description {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  margin-left: 1em;
  width: 100%;
}
#app .v-card .v-card__title h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  text-transform: uppercase;
  margin: 0;
}
#app .v-card .v-card__title .v-input--checkbox {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#app .v-card .v-card__title .v-input--checkbox label {
  margin-bottom: 0;
  margin-right: 8px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #757575;
  text-transform: capitalize;
}
#app .v-card .v-card__title .v-input--checkbox .v-input__control {
  float: right;
}
#app .v-card .v-card__title .v-input--checkbox .v-input__control .v-input__slot {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
#app .v-card .v-card__title .v-input--checkbox .v-input__control .v-messages {
  min-height: 0;
  min-width: 0;
}
#app .v-card .v-card__text {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
}
#app .v-card .v-card__text .repair-actions .v-btn {
  font-size: 12px;
}
#app .v-card .v-card__text .sub-repair-values {
  margin-top: -40px;
}
#app .v-card .condition-form .v-input--selection-controls {
  margin-top: 4px;
}
#app .v-card .condition-form .v-input--selection-controls .v-input__slot {
  margin-bottom: 4px;
}
#app .v-card .input-wrapper {
  margin-bottom: 25px;
}
#app .v-card .input-wrapper .v-select__selection {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}
#app .v-card .input-wrapper .v-select__selections {
  max-width: 70%;
}
#app .v-card .input-wrapper.condition-form {
  margin-bottom: 0px;
}
#app .v-card .input-wrapper .v-input--selection-controls label {
  margin-bottom: 0;
}
#app .v-card .input-wrapper label {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  text-align: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#app .v-card .input-wrapper label span {
  font-weight: 400;
  color: #f77836;
  margin-left: 4px;
}
#app .v-card .input-wrapperlabel {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  text-align: left;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#app .v-card .input-wrapperlabel span {
  font-weight: 400;
  color: #f77836;
  margin-left: 4px;
}
#app .v-card .input-wrapper input[type='text'],
#app .v-card .input-wrapper input[type='number'],
#app .v-card .input-wrapper input[type='password'],
#app .v-card .input-wrapper select,
#app .v-card .input-wrapper textarea {
  width: 100%;
  height: 40px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
  padding: 0 15px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
}
#app .v-card .input-wrapper textarea {
  height: 200px;
  padding: 15px;
}
#app .v-card .input-wrapper .v-select .v-input__control {
  min-height: 40px;
}
#app .v-card .input-wrapper .v-select .v-input__control .v-input__slot {
  margin: 0;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  box-shadow: none;
}
#app .v-card .input-wrapper .v-select .v-input__control .v-input__slot .v-select__selection {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
#app .v-card .input-wrapper .v-select .v-input__control .v-input__slot .v-input__icon--clear .material-icons {
  font-size: 20px;
}
#app .v-card .input-wrapper .v-select .v-input__control .v-input__slot input {
  padding: 0;
  border: 1px solid transparent;
}
#app .v-card .input-wrapper .v-select .v-text-field__details {
  display: none;
}
#app .v-card .v-btn.theme--light {
  background-color: #ffffff;
}
#app .v-card .v-btn:hover:before,
#app .v-card .v-btn:focus:before {
  background-color: #ffffff;
}
#app .v-card .v-btn--active:before {
  background-color: #ffffff;
}
#app .v-card .v-btn .small .v-btn__content {
  font-size: 10px;
}
#app .v-card table.v-table thead th {
  text-transform: uppercase;
  font-weight: 700;
  color: #555555;
}
#app .v-card table.v-table tbody tr:nth-of-type(odd) {
  background-color: #fafafa;
}
#app .v-card table.v-table tbody tr:nth-of-type(even) {
  background-color: #ffffff;
}
#app .v-card table.v-table tbody tr:hover {
  background-color: #F0F0F0;
  cursor: pointer;
}
#app .v-card table.v-table tbody tr td {
  font-weight: 500;
  font-size: 12px;
  color: #757575;
}
#app .v-card table.v-table tfoot tr {
  border: none;
}
#app .v-card table.v-table tfoot tr td {
  font-weight: 500;
  font-size: 12px;
  color: #757575;
}
#app .v-card .v-pagination__item--active {
  box-shadow: none;
}
#app .v-card .v-pagination__navigation {
  box-shadow: none;
  width: inherit;
}
#app .v-card .v-pagination__navigation .v-icon {
  font-size: 14px;
  margin: 0 15px;
}
#app .v-card .v-pagination__navigation .v-icon.material-icons {
  font-family: Helvetica, Arial, sans-serif;
}
#app .v-card .scroll-buffer .errorlist p ul {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #DD3863;
  list-style: none;
}
#app .new-edit-repair-list #repair-info-wrapper .v-card {
  border: none;
}
#app .v-dialog {
  font-family: "Open Sans", sans-serif;
}
#app .v-dialog .v-card {
  margin: 0;
}
#app .v-dialog .v-card .v-card__title {
  font-weight: normal;
}
#app .v-dialog .v-card .v-card__text {
  margin-top: -10px;
  padding: 0;
}
#app .v-dialog .v-btn {
  border-radius: 39px;
  font-weight: bold;
  min-width: 80px;
  color: white;
}
#app .v-dialog .left-dialog-btn {
  margin-right: 5px !important;
}
#app .v-dialog .right-dialog-btn {
  margin-left: 5px !important;
}
#app .v-dialog .browse-photo {
  position: absolute;
  left: 63.5%;
  top: 43.5%;
  min-height: 40px;
  width: 120px;
}
#app .v-snack.v-snack--top {
  margin-top: -14px;
}
#app .v-snack .v-snack__content .mdi:before {
  font-size: 30px;
}
#app .v-menu__content .v-select-list {
  margin: 0;
  padding: 0;
}
#app .v-menu__content .v-select-list .v-list {
  padding: 0;
}
#app .v-menu__content .v-select-list .v-list a:hover {
  text-decoration: none;
}
#app .v-tabs a:hover {
  color: inherit !important;
  text-decoration: none;
}
#app .v-tabs a .material-icons {
  margin-right: 5px;
}
#app #display-mode .v-card {
  margin: 0;
  border: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #757575;
}
#app #display-mode .v-card .v-card__title {
  margin-bottom: 20px;
  font-size: 15px;
}
#app #display-mode .v-card#inclusions-exclusions li {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: #757575;
}
#app #display-mode .v-card#inclusions-exclusions li span {
  font-size: 13px;
}
#app #display-mode .v-card#opportunity-prepared .v-subheader {
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #757575;
  height: 10px;
  margin-bottom: 10px;
}
#app #display-mode .v-card#opportunity-prepared .flex span {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #757575;
}
#app #display-mode .v-card#opportunity-prepared .flex span.company-title {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}
#app #display-mode .v-card#opportunity-prepared .flex#corporate {
  text-align: right;
}
#app #display-mode .v-card#opportunity-prepared .flex#corporate .v-subheader {
  display: block;
  text-align: right;
}
#app #display-mode .v-card#opportunity-location p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #757575;
  line-height: 1.5em;
}
#app #display-mode .v-card#opportunity-location p span {
  font-weight: 600;
}
#app #display-mode .v-card#terms-conditions li {
  line-height: 1.7em;
  margin-bottom: 20px;
}
#app #display-mode .v-card#terms-conditions p {
  line-height: 1.7em;
  margin-bottom: 20px;
}
#app #display-mode .v-card#opportunity-repairs #repair-media .repair-image {
  position: relative;
  height: 150px;
  width: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#app #display-mode .v-subheader {
  padding: 0;
}
body .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 24px;
}
@media only screen and (max-width: 959px) {
  body .container {
    padding: 0 24px !important;
  }
}
body .container h2 {
  margin-top: 0 !important;
}
body .container h2 .v-responsive.v-image {
  vertical-align: bottom;
}
/*====================
======================
END VUETIFY OVERRIDES CSS
======================
====================*/
/*====================
======================
PROPOSAL LIST CSS
======================
====================*/
#opp-list-view {
  /*---------- TITLE ----------*/
  /*---------- END TITLE ----------*/
}
#opp-list-view .list-title-wrapper {
  float: left;
  clear: both;
  width: 100%;
}
#opp-list-view .list-title-wrapper .list-title {
  float: left;
}
#opp-list-view .list-title-wrapper .list-actions-wrapper {
  float: right;
}
#opp-list-view .list-title-wrapper .list-actions-wrapper .action {
  float: left;
}
/*====================
======================
END PROPOSAL LIST CSS
======================


/*====================
======================
PROPOSAL DETAIL CSS
======================
====================*/
.application--wrap {
  width: 100%;
  height: 100% !important;
  min-height: 100% !important;
}
/*---------- GENERAL ----------*/
[v-cloak] {
  display: none;
}
#opportunity-detail .v-tabs {
  margin-bottom: -10px;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  overflow: hidden;
}
#opportunity-detail .v-tabs .v-tabs__bar {
  padding: 0 10px 10px 10px;
}
#opportunity-detail .v-tabs .v-tabs__bar .v-tabs__container {
  height: 38px;
}
#opportunity-detail .v-tabs .v-tabs__bar .v-tabs__container .v-tabs__slider {
  height: 3px;
}
#opportunity-detail .v-tabs .v-tabs__bar .v-tabs__container .v-tabs__div {
  margin: 0 15px;
}
#opportunity-detail .v-tabs .v-tabs__bar .v-tabs__container .v-tabs__div a {
  font-size: 13px;
}
#info-wrapper {
  padding-bottom: 100px;
}
#info-wrapper .sub-repair-divider {
  margin-bottom: 34px !important;
}
#info-wrapper .scope-select-all {
  margin-left: 24px;
}
#info-wrapper .scope-list-actions {
  width: 300px;
  margin-left: auto;
  margin-top: 10px !important;
}
#info-wrapper .scope-list-actions .v-input__control {
  min-height: 40px;
}
#info-wrapper .scope-list-actions .v-input__control .v-input__slot {
  margin: 0;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  box-shadow: none;
}
#info-wrapper .scope-list-actions .v-input__control .v-input__slot .v-select__selection {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
#info-wrapper .scope-list-actions .v-input__control .v-input__slot .v-input__icon--clear .material-icons {
  font-size: 20px;
}
#info-wrapper .scope-list-actions .v-input__control .v-input__slot input {
  padding: 0;
  border: none;
}
#info-wrapper .scope-list-actions .v-label {
  font-style: italic;
  font-weight: normal;
}
#info-wrapper .scope-list-actions .v-text-field__details {
  display: none;
}
.scope-items {
  border: none !important;
}
.scope-table {
  margin-bottom: 25px;
}
.scope-table thead {
  display: none;
}
.scope-table .v-input__slot {
  margin-bottom: 0 !important;
  padding-right: 25px;
}
.scope-table .v-input__control .v-messages {
  display: none;
}
.scope-table .scope-title-name {
  padding-left: 0 !important;
  max-width: 800px;
}
.scope-table .scope-item-check {
  padding-right: 0 !important;
  width: 60px !important;
}
.scope-table .photo-title {
  vertical-align: top;
}
.scope-table .photo-title div:first-child {
  margin-top: 15px;
  color: #757575;
  font-weight: bold;
}
.scope-table .map-photo-title div:first-child {
  font-size: 14px;
  line-height: 1em;
  margin-top: 15px;
  font-weight: 600;
  color: #282828;
}
.scope-table .photo-actions {
  margin-top: 15px;
  font-size: 10px;
  font-weight: bold;
  color: #00b0ff;
}
.scope-table .photo-desc {
  min-height: 36px;
}
.scope-table .map-photo-desc {
  min-height: 36px;
  font-size: 10px;
  font-weight: 600;
  color: #757575;
}
.draft-table {
  margin-bottom: 25px;
}
.draft-table .v-input__slot {
  margin-bottom: 0 !important;
}
.draft-table .v-input__control .v-messages {
  display: none;
}
.draft-table .draft-title-name {
  padding-left: 0 !important;
  max-width: 800px;
}
.draft-table .draft-item-check {
  padding-right: 0 !important;
  width: 60px !important;
}
.draft-table .selected-draft-row {
  background-color: rgba(179, 222, 255, 0.53) !important;
}
.map-photos-list tr {
  background-color: #fafafa !important;
}
.map-photos-list td {
  padding: 0 !important;
}
.map-photos-list .photo-title {
  padding-left: 25px !important;
}
.map-photos-list .photo-actions {
  margin-bottom: 20px;
}
.scope-header {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  text-transform: uppercase;
  margin: 25px 0 15px 26px;
}
.legend-proposal-list {
  width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
}
.legend-proposal-list .v-input__control {
  min-height: 30px !important;
}
.legend-proposal-list .v-input__control .v-input__slot {
  margin: 0 !important;
  border: 1px solid #D2D2D2 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}
.legend-proposal-list .v-input__control .v-input__slot .v-select__selection {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #757575 !important;
}
.legend-proposal-list .v-input__control .v-input__slot .v-label {
  font-style: italic;
}
.legend-proposal-list .v-input__control .v-input__slot .v-input__icon--clear .material-icons {
  font-size: 20px !important;
}
.legend-proposal-list .v-input__control .v-input__slot input {
  padding: 0 !important;
  border: none !important;
}
.legend-table {
  background-color: #fafafa !important;
  padding-top: 10px !important;
  padding-bottom: 40px !important;
  margin-top: 10px !important;
}
.legend-table.collapsed-legend {
  padding-top: 10px !important;
  padding-bottom: 0px !important;
}
.legend-table.collapsed-legend .v-card__title {
  margin-bottom: 10px !important;
  transition: all 0.3s ease-out;
}
.legend-table .v-card__title {
  padding-left: 0 !important;
  margin-bottom: 25px !important;
}
.legend-table h3:nth-of-type(2) {
  margin-top: 64px !important;
}
.legend-table span:before {
  content: "• ";
  font-weight: bolder;
  font-size: 20px;
  vertical-align: middle;
}
.legend-table h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 0;
}
.legend-table .legend-title-name {
  padding-left: 0 !important;
}
.legend-table .v-table__overflow tr {
  background-color: #fafafa !important;
}
.legend-table .v-table__overflow tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.legend-table .v-table__overflow tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.legend-table thead {
  display: none;
}
.display-order {
  display: inline-flex;
  align-content: center;
  vertical-align: middle;
  margin-bottom: 1px;
}
.display-order i {
  font-size: 16px;
  margin: 0 2px;
}
.display-order .display-number {
  text-align: center;
}
.rowHandle {
  cursor: -webkit-grab;
  cursor: move;
}
.swatch-container {
  margin-bottom: 20px !important;
}
.swatch-container .color-swatch {
  padding: 0 !important;
  margin: 6px !important;
  cursor: pointer;
}
.swatch-container .color-swatch div {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease-in-out;
}
.swatch-container .color-swatch div:hover {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.swatch-container .color-swatch .v-icon {
  margin-bottom: 7px;
}
/*.photo-quickview-overview {
    opacity: 0.5;
}*/
.photo-quickview-header {
  margin-bottom: 30px !important;
  opacity: 0.5;
}
.photo-quickview-header h3 {
  font-weight: bold;
  font-size: 16px;
  color: #757575;
}
.photo-quickview-header img {
  height: 17px;
}
.photo-quickview-desc {
  margin-bottom: 20px !important;
  opacity: 0.5;
}
.photo-quickview-desc .layout span {
  display: block;
  font-weight: bold !important;
  font-size: 14px;
  color: #757575;
}
.photo-quickview-photos {
  margin-bottom: 20px !important;
  opacity: 0.5;
}
.photo-quickview-photos .layout span {
  display: block;
  font-weight: bold !important;
  font-size: 14px;
  color: #757575;
}
.photo-quickview-image {
  background-color: rgba(231, 231, 231, 0.5);
  border: solid rgba(184, 184, 184, 0.5) 1px;
  border-radius: 4px;
  height: 242px;
  width: 100%;
  margin-bottom: 5px;
}
.photo-quickview-image img {
  width: 100%;
  object-fit: cover;
}
.custom-box {
  position: absolute;
  width: 150px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  line-height: 1.2em;
  padding: 10px 14px;
  background: #FFFFFF;
}
/*---------- END GENERAL ----------*/
/*---------- MAP ----------*/
#map-container {
  position: relative;
  width: 100%;
  height: 100%;
  color: whitesmoke;
  margin-bottom: 0;
  background: #1C8ECB;
  border-radius: 6px;
  overflow: hidden;
}
#map-container .map-title-bar {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  background-color: #008feb;
  position: absolute;
  z-index: 5;
  width: 100%;
  min-height: 35px;
}
#map-container .map-title-bar p {
  margin-left: 94px;
  margin-bottom: 0 !important;
  font-size: 13px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
#map-container #google-map {
  z-index: 1;
  width: 100%;
  height: 100%;
}
#map-container #map-actions-wrapper {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 72px;
  padding: 0;
  background: #008feb;
  border-radius: 0;
}
#map-container #map-actions-wrapper #map-modes {
  float: left;
}
#map-container #map-actions-wrapper #map-modes .v-btn {
  float: left;
  margin: 0;
  background: transparent !important;
  border-radius: 0;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#map-container #map-actions-wrapper #map-modes .v-btn:hover {
  background: #0070b8 !important;
}
#map-container #map-actions-wrapper #map-modes .v-btn.active {
  background: #0070b8 !important;
}
#map-container #map-actions-wrapper #map-modes .v-btn.active .mdi {
  color: #FFFFFF;
}
#map-container #map-actions-wrapper #map-modes .v-btn.inactive .mdi {
  color: #52bbff;
}
#map-container #map-actions-wrapper #map-modes .v-btn.v-btn--disabled .mdi {
  color: #00609f;
}
#map-container #map-actions-wrapper #map-modes .v-btn .mdi {
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#map-container #map-actions-wrapper #map-modes .v-btn .mdi-eye:before {
  font-size: 25px !important;
}
#map-container #map-actions-wrapper #map-modes .v-btn .mdi-format-list-bulleted:before {
  font-size: 28px !important;
}
#map-container #map-actions-wrapper #map-title-wrapper {
  float: left;
  padding-top: 13px;
  padding-left: 5px;
}
#map-container #map-actions-wrapper #map-title-wrapper #map-title {
  float: left;
  height: 45px;
  padding-left: 25px;
  border-left: 1px solid #FFFFFF;
}
#map-container #map-actions-wrapper #map-title-wrapper #map-title.no-border {
  padding-left: 26px;
  border: none;
}
#map-container #map-actions-wrapper #map-title-wrapper #map-title h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 45px;
}
#map-container #map-actions-wrapper #map-actions {
  float: right;
  display: flex;
  padding: 14px 16px;
}
#map-container #map-actions-wrapper #map-actions button {
  min-width: 0;
  margin: 0 0 0 11px;
  padding: 0 30px;
}
#map-container #map-actions-wrapper #map-actions button.v-btn--disabled {
  background-color: #52bbff !important;
}
#map-container #map-actions-wrapper #map-actions button.v-btn--disabled .v-btn__content {
  color: #0070b8 !important;
}
#map-container #map-actions-wrapper #map-actions #ratio-multiplier {
  margin-top: 10px;
  margin-right: 14px;
  font-size: 16px;
}
#map-container #map-actions-wrapper #map-actions #map-area-crop-slider {
  width: 200px;
  margin-top: 8px;
}
#map-container #map-actions-wrapper #map-actions #map-area-crop-slider .theme--light.v-icon {
  color: #ffffff;
}
#map-container #map-actions-wrapper #map-actions #crop-rotate-view {
  margin-left: 45px;
}
#map-container #map-actions-wrapper #map-actions #lock-canvas {
  min-width: 0;
  padding: 0 11px;
  border-radius: 40px;
}
#map-container #map-actions-wrapper #map-actions #lock-canvas .material-icons {
  font-size: 22px;
}
#map-container #toolbar {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: 72px;
  height: 100%;
  height: calc(100% - 72px);
  background-color: #253237;
}
#map-container #toolbar .btns-wrapper {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#map-container #toolbar .btns-wrapper button {
  margin: 0 0 20px 0;
}
#map-container #toolbar .btns-wrapper button.flyout-toggle {
  margin-bottom: 28px;
}
#map-container #toolbar .btns-wrapper .material-icons {
  font-size: 20px !important;
}
#map-container #toolbar .permanent-actions {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#map-container .gm-bundled-control-on-bottom {
  right: 48px !important;
  bottom: 150px !important;
}
#map-container .gm-bundled-control-on-bottom .gmnoprint > div {
  width: 34px !important;
  height: 68px !important;
}
#map-container .gm-bundled-control-on-bottom .gmnoprint > div button {
  width: 34px !important;
  height: 34px !important;
}
#map-container #actions-flyout,
#map-container #info-flyout {
  position: absolute;
  z-index: 4;
  top: 0;
  left: -440px;
  width: 440px;
  height: 100%;
  height: calc(100% - 72px);
  background-color: #f9f9f9;
  overflow: auto;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#map-container #actions-flyout.active,
#map-container #info-flyout.active {
  left: 72px;
}
#map-container #actions-flyout .v-card,
#map-container #info-flyout .v-card {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  margin: 0;
  padding: 24px;
  background-color: #f9f9f9;
  border: 0;
  overflow: hidden;
}
#map-container #actions-flyout .v-card .v-card__title h3,
#map-container #info-flyout .v-card .v-card__title h3 {
  font-size: 14px;
}
#map-container #actions-flyout .v-card .v-card__title .mdi,
#map-container #info-flyout .v-card .v-card__title .mdi {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#map-container #actions-flyout .v-card .v-btn,
#map-container #info-flyout .v-card .v-btn {
  background-color: #f9f9f9;
}
#map-container #actions-flyout .v-card input[type='text'],
#map-container #info-flyout .v-card input[type='text'],
#map-container #actions-flyout .v-card input[type='number'],
#map-container #info-flyout .v-card input[type='number'],
#map-container #actions-flyout .v-card input[type='password'],
#map-container #info-flyout .v-card input[type='password'],
#map-container #actions-flyout .v-card textarea,
#map-container #info-flyout .v-card textarea {
  background: #FFFFFF;
}
#map-container #actions-flyout .v-card.repair-list-card,
#map-container #info-flyout .v-card.repair-list-card {
  padding: 24px 0 24px 24px;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .v-btn,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .v-btn {
  width: 25px;
  min-width: 0px;
  height: 25px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .v-btn:hover,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .v-btn:hover {
  background-color: #ffffff;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .v-btn:hover:before,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .v-btn:hover:before {
  background-color: #ffffff;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .v-btn .v-icon,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .v-btn .v-icon {
  font-size: 18px;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .repair-info,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .repair-info {
  cursor: pointer;
  padding-top: 10px;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .repair-info p,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .repair-info p {
  font-size: 14px;
  line-height: 1em;
  margin: 0;
  font-weight: 600;
  color: #282828;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .repair-info p .extra-info,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .repair-info p .extra-info {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .repair-info p .extra-info span,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .repair-info p .extra-info span {
  font-size: 10px;
  font-weight: 600;
  color: #757575;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item hr,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item hr {
  margin-bottom: 16px;
  border-color: #dddcdb;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .def-hidden .def-hidden,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .def-hidden .def-hidden {
  display: block;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .def-hidden .def-visible,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .def-hidden .def-visible {
  display: none;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .def-visible .def-hidden,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .def-visible .def-hidden {
  display: none;
}
#map-container #actions-flyout .v-card.repair-list-card .repair-list-item .def-visible .def-visible,
#map-container #info-flyout .v-card.repair-list-card .repair-list-item .def-visible .def-visible {
  display: block;
}
#map-container #actions-flyout .v-card .v-card__title,
#map-container #info-flyout .v-card .v-card__title {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 28px 24px;
  background: #f9f9f9;
}
#map-container #actions-flyout .v-card .v-card__title .v-btn,
#map-container #info-flyout .v-card .v-card__title .v-btn {
  min-width: 0px;
  padding: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}
#map-container #actions-flyout .v-card .v-card__title .v-btn:hover,
#map-container #info-flyout .v-card .v-card__title .v-btn:hover {
  background-color: #ffffff;
}
#map-container #actions-flyout .v-card .v-card__title .v-btn:hover:before,
#map-container #info-flyout .v-card .v-card__title .v-btn:hover:before {
  background-color: #ffffff;
}
#map-container #actions-flyout .v-card .scroll-buffer,
#map-container #info-flyout .v-card .scroll-buffer {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 0;
  height: calc(100% - 80px);
  width: 100%;
  padding-bottom: 80px;
  overflow: auto;
}
#map-container #actions-flyout .save-wrapper,
#map-container #info-flyout .save-wrapper {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 14px 24px;
  background: #FFFFFF;
}
#map-container #actions-flyout .save-wrapper .v-btn,
#map-container #info-flyout .save-wrapper .v-btn {
  height: 45px;
}
#map-container #actions-flyout .save-wrapper .v-btn.v-btn--floating,
#map-container #info-flyout .save-wrapper .v-btn.v-btn--floating {
  width: 45px;
}
#map-container #actions-flyout .save-wrapper .v-btn.v-btn--floating .mdi::before,
#map-container #info-flyout .save-wrapper .v-btn.v-btn--floating .mdi::before {
  font-size: 22px;
}
#map-container #actions-flyout .save-wrapper .v-btn--round,
#map-container #info-flyout .save-wrapper .v-btn--round {
  padding: 0;
  min-width: 28%;
}
#map-container #actions-flyout .save-wrapper #finish-view-button,
#map-container #info-flyout .save-wrapper #finish-view-button,
#map-container #actions-flyout .save-wrapper #rotate-view-button,
#map-container #info-flyout .save-wrapper #rotate-view-button,
#map-container #actions-flyout .save-wrapper #markup-view-button,
#map-container #info-flyout .save-wrapper #markup-view-button {
  min-width: 20%;
  height: 36px;
}
#map-container #actions-flyout .save-wrapper #finish-view-button,
#map-container #info-flyout .save-wrapper #finish-view-button {
  min-width: 22%;
}
#map-container #actions-flyout .save-wrapper #view-crop-button,
#map-container #info-flyout .save-wrapper #view-crop-button,
#map-container #actions-flyout .save-wrapper #view-lock-button,
#map-container #info-flyout .save-wrapper #view-lock-button {
  height: 36px;
  width: 36px;
  margin: 6px 6px;
}
#map-container #info-flyout {
  z-index: 5;
}
#map-container #info-flyout.component-contained.active {
  left: 0;
}
#map-container #map-drawer {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: 320px;
  height: 100%;
  height: calc(100% - 20px);
  padding: 24px;
  background: #FFFFFF;
  border-radius: 6px;
}
#map-container #repair-info #media-header {
  margin-bottom: 10px;
}
#map-container #repair-info #media-header h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  margin: 11px 0 0 0;
}
#map-container #repair-info #media-header .v-btn {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  margin: 0;
  padding: 0;
}
#map-container #repair-info #media-header .v-btn .mdi {
  margin-right: 4px;
}
#map-container #repair-info #media-header .v-btn .mdi::before {
  font-size: 18px;
  line-height: 20px;
}
#map-container #repair-info #media-wrapper {
  padding: 0 24px 24px 24px;
}
#map-container #repair-info #media-wrapper #image-previews {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 4px;
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .file-type .box {
  position: relative;
  width: 100%;
  height: 45px;
  background-color: #F0F0F0;
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .file-type .box .mdi {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .file-name {
  position: relative;
  overflow: hidden;
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .file-name .overflow-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(249, 249, 249, 0.73713235) 31%, #f9f9f9 100%);
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .file-name p {
  font-size: 16px;
  line-height: 1em;
  margin: 15px 0 0 0;
  white-space: nowrap;
}
#map-container #repair-info #media-wrapper #image-previews .image-preview .mdi-close {
  display: inline-block;
  margin-top: 5px;
}
#map-container #repair-info #media-wrapper #image-previews .image-preview hr {
  margin: 10px 0 20px 0;
  border-color: #F0F0F0;
}
#map-container #repair-info #media-wrapper .repair-image {
  position: relative;
  height: 132px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#map-container #repair-info #media-wrapper .repair-image.sm {
  height: 66px;
}
#map-container #repair-info #media-wrapper .repair-image:hover {
  cursor: move;
}
#map-container #repair-info #media-wrapper .repair-image:hover .image-overlay,
#map-container #repair-info #media-wrapper .repair-image:hover .image-actions {
  visibility: visible;
}
#map-container #repair-info #media-wrapper .repair-image:hover .image-overlay {
  opacity: 0.6;
}
#map-container #repair-info #media-wrapper .repair-image:hover .image-actions {
  opacity: 1;
}
#map-container #repair-info #media-wrapper .repair-image .image-overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#map-container #repair-info #media-wrapper .repair-image .image-actions {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#map-container #repair-info #media-wrapper .repair-image .image-actions .mdi {
  cursor: pointer;
}
#map-container #repair-info #media-wrapper .repair-image .image-actions .mdi::before {
  font-size: 28px;
}
/*---------- END MAP ----------*/
/*---------- TAB VIEW EDIT/ADD REPAIRS ----------*/
#repair-info #media-header {
  margin-bottom: 10px;
}
#repair-info #media-header h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  margin: 11px 0 0 0;
}
#repair-info #media-header .v-btn {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  margin: 0;
  padding: 0;
}
#repair-info #media-header .v-btn .mdi {
  margin-right: 4px;
}
#repair-info #media-header .v-btn .mdi::before {
  font-size: 18px;
  line-height: 20px;
}
#repair-info #media-wrapper {
  padding: 0 24px 24px 24px;
}
#repair-info #media-wrapper #image-previews {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 4px;
}
#repair-info #media-wrapper #image-previews .image-preview .file-type .box {
  position: relative;
  width: 100%;
  height: 45px;
  background-color: #F0F0F0;
}
#repair-info #media-wrapper #image-previews .image-preview .file-type .box .mdi {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#repair-info #media-wrapper #image-previews .image-preview .file-name {
  position: relative;
  overflow: hidden;
}
#repair-info #media-wrapper #image-previews .image-preview .file-name .overflow-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(249, 249, 249, 0.73713235) 31%, #f9f9f9 100%);
}
#repair-info #media-wrapper #image-previews .image-preview .file-name p {
  font-size: 16px;
  line-height: 1em;
  margin: 15px 0 0 0;
  white-space: nowrap;
}
#repair-info #media-wrapper #image-previews .image-preview .mdi-close {
  display: inline-block;
  margin-top: 5px;
}
#repair-info #media-wrapper #image-previews .image-preview hr {
  margin: 10px 0 20px 0;
  border-color: #F0F0F0;
}
#repair-info #media-wrapper .repair-image {
  position: relative;
  height: 132px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#repair-info #media-wrapper .repair-image.sm {
  height: 66px;
}
#repair-info #media-wrapper .repair-image:hover {
  cursor: move;
}
#repair-info #media-wrapper .repair-image:hover .image-overlay,
#repair-info #media-wrapper .repair-image:hover .image-actions {
  visibility: visible;
}
#repair-info #media-wrapper .repair-image:hover .image-overlay {
  opacity: 0.6;
}
#repair-info #media-wrapper .repair-image:hover .image-actions {
  opacity: 1;
}
#repair-info #media-wrapper .repair-image .image-overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#repair-info #media-wrapper .repair-image .image-actions {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}
#repair-info #media-wrapper .repair-image .image-actions .mdi {
  cursor: pointer;
}
#repair-info #media-wrapper .repair-image .image-actions .mdi::before {
  font-size: 28px;
}
#crop-container {
  height: 450px;
}
#croppie-view {
  width: 97%;
  min-width: 768px;
  height: 384px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
#croppie-view-add-edit {
  width: 97%;
  min-width: 768px;
  height: 384px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
#croppie-view-add-map {
  width: 97%;
  min-width: 768px;
  height: 384px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.editableHtml {
  padding: 6px;
  background: #ffffff;
}
/*====================
======================
END PROPOSAL DETAIL CSS
======================
====================*/
/*====================
======================
MAP CSS
======================
====================*/
div.map-label {
  text-align: center;
  display: flex;
  position: absolute !important;
  max-height: 80px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  color: #555555;
}
div.map-label .innerLabel {
  margin: auto;
  overflow: hidden;
  padding: 5px;
}
div.close-button {
  margin-top: 0px;
  margin-right: 0px;
  z-index: 999999;
  cursor: pointer;
  background: url("../images/map_icons/remove_overlay.png");
  width: 20px;
  height: 20px;
  position: absolute !important;
  color: white;
  top: -10px;
  right: -10px;
}
.segment_label {
  color: white;
}
.numberCircle {
  width: 20px;
  height: 20px;
  white-space: nowrap;
  color: #fff;
  line-height: 20px !important;
  text-align: center;
  font: 14px Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1.3px;
}
/*====================
======================
END MAP CSS
======================
====================*/
/*# sourceMappingURL=main.css.map */