@charset "UTF-8";
/* varibles */
/* CSS Document */
/*------------------------------------*\
RESET
\*------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strike, strong, sub, sup, tt, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
section, article, aside, footer, header, hgroup, nav, .h6, .h5, .h4, .h3, .h2, .h1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html body {
  line-height: 1;
}
html ol, html ul {
  list-style: none;
}
html blockquote, html q {
  quotes: none;
}
html blockquote:before, html blockquote:after,
html q:before, html q:after {
  content: "";
  content: none;
}
html ins {
  text-decoration: none;
}
html del {
  text-decoration: line-through;
}
html table {
  border-collapse: collapse;
  border-spacing: 0;
}
html a {
  transition: 0.2s ease-in-out;
  color: inherit;
  text-decoration: none;
}
html a:hover {
  text-decoration: none;
  color: #fff;
}
html ul {
  margin: 0;
}
html strong {
  font-weight: bold;
}
html b {
  font-weight: bold;
}
html button {
  border: none;
  background: none;
}
html textarea {
  resize: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
html div::-webkit-scrollbar {
  width: 0 !important;
}
html div {
  overflow: -moz-scrollbars-none;
}
html div {
  -ms-overflow-style: none;
}
html button:focus {
  outline: none;
}
html input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html input:focus, html input[type=checkbox]:focus {
  outline: none;
}
html textarea:focus {
  outline: none;
}
html select:focus {
  outline: none;
}

:root {
  --text-color: white;
  --site-bg-color: black;
  --accent-color: #464646;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  background: var(--site-bg-color);
  color: var(--text-color);
}
body.no-overflow, body.no-scroll {
  overflow: hidden !important;
}
body p {
  line-height: 1.8;
}
body p i {
  font-size: 25px;
}

html,
body {
  width: 100vw;
  overflow-x: hidden;
}

i {
  font-family: "linotype-didot", serif;
  font-weight: 400;
  font-style: italic;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 700;
}

sup {
  text-transform: lowercase;
  font-size: 24px;
}

h1 {
  font-size: 90px;
  text-transform: uppercase;
}

h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 span.large {
  font-size: 110px;
}

h3 {
  font-size: 46px;
  font-weight: 300;
  text-transform: uppercase;
}
h3 span.large {
  font-size: 70px;
}

h4 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
}

h5 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
}

p {
  font-weight: lighter;
}

p.large {
  font-size: 25px;
  font-weight: 100;
}

p.small {
  font-size: 16px;
}

p.copyright {
  font-size: 12px;
}

.highlight {
  color: #FF00CE;
}

.no_border {
  border: none !important;
}

.policy_popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 60px 20px;
  background: black;
  z-index: 11;
  display: none;
}
.policy_popup h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.policy_popup h2, .policy_popup h3, .policy_popup p {
  text-align: left;
}
.policy_popup p {
  font-size: 16px;
  margin-bottom: 30px;
}
.policy_popup .main_logo {
  width: 180px;
  max-width: 70%;
  margin-bottom: 30px;
}
.policy_popup .inner_content {
  max-height: calc(100vh - 125px);
  overflow-y: scroll;
  max-width: 1350px;
  padding: 10px 20px;
  margin: 0 auto;
}
.policy_popup .inner_content::-webkit-scrollbar {
  width: 0;
  height: 8px;
}
.policy_popup .inner_content::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 9px;
}
.policy_popup .inner_content::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.policy_popup .inner_content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 9px;
  box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}
.policy_popup .small_logo {
  margin-top: 30px;
}
.policy_popup .copyright {
  padding-top: 30px;
}
.policy_popup .copyright p {
  text-align: center;
}
.policy_popup .close_icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 35px;
  cursor: pointer;
  filter: invert(1);
}

.show_message {
  text-decoration: underline;
  cursor: pointer;
}

.grecaptcha-badge {
  display: none !important;
}

#mainbody {
  padding-left: 210px;
}

.my_btn {
  line-height: 60px;
  padding: 0 20px;
  font-size: 20px;
  text-transform: uppercase;
  color: black;
  background: white;
}

/* ------------- MENU --------------- */
.hamburger {
  position: relative;
  padding: 10px 15px;
  z-index: 10;
  width: auto;
  height: 46px;
  z-index: 101;
  border: 1px solid transparent;
}
.hamburger.is-active {
  border: none;
}
.hamburger:hover, .hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner:after,
.hamburger .hamburger-inner:before {
  background-color: white;
  height: 2px;
  border-radius: 0px;
  width: 100%;
}
.hamburger .hamburger-inner:before {
  top: -9px;
}
.hamburger .hamburger-inner:after {
  bottom: -9px;
}
.hamburger .hamburger-box {
  width: 24px;
  transition: 0.4s;
}
.hamburger .hamburger-box:hover {
  transform: scale(1.1);
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: white;
}

.header {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #ccc;
  background: black;
  z-index: 10;
}
.header img {
  max-width: 105px;
}
.header .my_btn {
  line-height: 60px;
  background: #464646;
  color: white;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 210px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 100vh;
  border-right: 1px solid #464646;
  background: black;
  z-index: 9;
  min-width: 220px;
  letter-spacing: 1px;
}
nav .copy_url {
  cursor: pointer;
}
nav .main_items li {
  padding: 5px 10px;
  height: 100px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #464646;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  cursor: pointer;
}
nav .main_items li img {
  padding: 5px;
}
nav .main_items li.active, nav .main_items li:hover:not(.no_hover) {
  background: var(--accent-color);
  color: #fff;
}
nav .main_items li a:hover {
  color: inherit;
}
nav .info {
  border-top: 1px solid #464646;
}
nav .info > div {
  min-height: 50px;
  border-top: 1px solid #464646;
  display: flex;
}
nav .info > div:not(.has_inner) {
  justify-content: center;
  align-items: center;
}
nav .info > div > div {
  width: 50%;
  display: flex;
}
nav .info > div > div:not(.has_inner) {
  justify-content: center;
  align-items: center;
}
nav .info > div > div:first-of-type {
  border-right: 1px solid #ccc;
}
nav .info > div > div > div {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .info > div > div > div:first-of-type {
  border-right: 1px solid #ccc;
}
nav .info > div p {
  font-size: 15px;
  text-transform: uppercase;
}
nav .info > div p.copy {
  font-size: 11px;
  text-transform: none;
}
nav .info > div p.copyright {
  font-size: 11px;
  text-transform: none;
  line-height: 1.6;
  padding: 40px 10px 20px 10px;
}

.link_hover a {
  width: 100%;
}
.link_hover p {
  line-height: 50px;
  text-align: center;
}

.link_hover:hover {
  background: #fff;
  color: black;
}
.link_hover:hover a {
  color: black;
}

.toast_container {
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  display: block !important;
  width: 150px !important;
  transform: translate(0, -110%);
  color: black !important;
}
.toast_container .toast {
  width: auto;
}
.toast_container.active {
  opacity: 1;
  z-index: 12;
}

/* ------------- MENU END --------------- */
/* --------------- MAIN CONTENT ---------------- */
.hero-bg {
  position: absolute;
  max-width: 58.541667%;
  z-index: -1;
  right: 0;
  top: 0;
  max-height: 105%;
  width: auto;
}

.main_content .row {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

.units_table {
  width: 100%;
}
.units_table tr {
  border-top: 1px solid #707070;
}
.units_table tr td {
  font-size: 25px;
  text-transform: uppercase;
  padding: 30px 5px;
  line-height: 1.1;
}
.units_table tr td span.small {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  text-transform: none;
}
.units_table tr td:first-of-type {
  padding-right: 30px;
}
.units_table tr:last-of-type {
  border-bottom: none;
}

.dollar {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}
.dollar:before {
  position: absolute;
  left: 0;
  top: 0px;
  content: "$";
  width: 30px;
  height: 30px;
  padding-top: 1px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.container-fluid ul li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px;
  font-weight: 200;
  line-height: 1.3;
}
.container-fluid ul li b {
  font-weight: 400;
}
.container-fluid ul li .small {
  font-size: 16px;
}
.container-fluid ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
}

.footer {
  padding-top: 70px;
  font-size: 15px;
  font-weight: 100;
  width: calc(100vw - 220px);
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 20px;
}
.footer p.light {
  font-size: 15px;
  color: #B2B2B2;
  line-height: 1.6;
}

img.half-window-width {
  display: block;
}
img.half-window-width.left {
  object-fit: contain;
  object-position: right;
  right: 0;
}
img.img-lg-offset {
  transform: translateY(-5%);
}

.rental_table {
  width: 100%;
}
.rental_table tr {
  border-top: 1px solid #707070;
}
.rental_table tr td {
  font-size: 25px;
  text-transform: uppercase;
  padding: 30px 20px;
  line-height: 1.1;
}
.rental_table tr:last-of-type {
  border-bottom: none;
}
.rental_table tr:hover {
  background: #3B3B3B;
}
.rental_table tr:hover td {
  color: #fff;
}
.rental_table thead td {
  font-weight: 400;
  color: #fff;
}

.clickable-row {
  cursor: pointer;
}

.full_width_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
}

/* --------------- MAIN CONTENT END ---------------- */
/* ---------------- REGISTER -------------------------- */
.form {
  position: relative;
  margin: 0 auto;
  transition: all 0.4s;
  overflow: hidden;
}
.form input[type=text],
.form input[type=search],
.form input[type=tel],
.form input[type=number],
.form input[type=email],
.form input[type=password],
.form textarea,
.form select {
  width: 100%;
  font-size: 20px;
  line-height: 60px;
  text-transform: none;
  color: #fff;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  border: 1px solid #CCCCCC;
  outline: none;
  border-radius: 0;
  padding: 1px 20px;
  margin-bottom: 25px;
}
.form .other {
  color: #000;
}
.form textarea {
  margin-bottom: 20px;
}
.form input[type=text]::placeholder,
.form input[type=search]::placeholder,
.form input[type=tel]::placeholder,
.form input[type=number]::placeholder,
.form input[type=email]::placeholder,
.form input[type=password]::placeholder,
.form select::placeholder,
.form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: Arial, Helvetica, sans-serif;
  color: #8D8D8D;
  opacity: 1; /* Firefox */
}
.form input[type=text]:-ms-input-placeholder,
.form input[type=search]:-ms-input-placeholder,
.form input[type=tel]:-ms-input-placeholder,
.form input[type=number]:-ms-input-placeholder,
.form input[type=email]:-ms-input-placeholder,
.form input[type=password]:-ms-input-placeholder,
.form select:-ms-input-placeholder,
.form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-family: Arial, Helvetica, sans-serif;
  color: #8D8D8D;
}
.form input[type=text]::-ms-input-placeholder,
.form input[type=search]::-ms-input-placeholder,
.form input[type=tel]::-ms-input-placeholder,
.form input[type=number]::-ms-input-placeholder,
.form input[type=email]::-ms-input-placeholder,
.form input[type=password]::-ms-input-placeholder,
.form select::-ms-input-placeholder,
.form textarea::-ms-input-placeholder { /* Microsoft Edge */
  font-family: Arial, Helvetica, sans-serif;
  color: #8D8D8D;
}
.form select {
  background: url("../img/select_arrow.png") no-repeat right center;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #000;
}
.form .missing input[type=text],
.form .missing input[type=search],
.form .missing input[type=tel],
.form .missing input[type=number],
.form .missing input[type=email],
.form .missing input[type=password],
.form .missing textarea {
  border-bottom: 1px solid red;
}
.form .missing input[type=text]::placeholder,
.form .missing input[type=search]::placeholder,
.form .missing input[type=tel]::placeholder,
.form .missing input[type=number]::placeholder,
.form .missing input[type=email]::placeholder,
.form .missing input[type=password]::placeholder,
.form .missing textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: red;
  opacity: 1; /* Firefox */
}
.form .missing input[type=text]:-ms-input-placeholder,
.form .missing input[type=search]:-ms-input-placeholder,
.form .missing input[type=tel]:-ms-input-placeholder,
.form .missing input[type=number]:-ms-input-placeholder,
.form .missing input[type=email]:-ms-input-placeholder,
.form .missing input[type=password]:-ms-input-placeholder,
.form .missing textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: red;
}
.form .missing input[type=text]::-ms-input-placeholder,
.form .missing input[type=search]::-ms-input-placeholder,
.form .missing input[type=tel]::-ms-input-placeholder,
.form .missing input[type=number]::-ms-input-placeholder,
.form .missing input[type=email]::-ms-input-placeholder,
.form .missing input[type=password]::-ms-input-placeholder,
.form .missing textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: red;
}
.form .missing select {
  border-bottom: 1px solid red;
  color: red;
}
.form .brokerage_name {
  display: none;
}
.form legend {
  font-size: 20px;
  line-height: 1.2;
}
.form .checkbox {
  display: inline-block;
  position: relative;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: left;
  margin-right: 5px;
}
.form .checkbox input {
  position: absolute;
  opacity: 0;
  width: calc(100% + 20px);
  height: 80%;
  left: -30px;
}
.form .checkbox label {
  padding: 10px 15px;
  position: relative;
  cursor: pointer;
  text-transform: none;
  color: var(--text-color);
}
.form .checkbox label:before,
.form .checkbox label:after {
  content: "";
  position: absolute;
  left: -26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid white;
  background: white;
  top: 50%;
  transform: translate(0, -50%);
}
.form .checkbox label:after {
  left: -21px;
  width: 16px;
  height: 16px;
  border: none;
}
.form .checkbox input[type=radio]:checked + label:after,
.form .checkbox input[type=checkbox]:checked + label:after {
  background: var(--text-color);
}
.form .checkbox.missing label:before {
  border-color: red;
}
.form .checkbox.consent {
  padding: 0;
  padding-left: 30px;
  margin-right: 25px;
}
.form .checkbox.consent label {
  font-size: 18px;
  line-height: 1.3;
  padding-left: 5px;
}
.form .checkbox.consent label:before {
  border-radius: 0;
  top: 10px;
  left: -40px;
  transform: translate(0, 0);
}
.form .checkbox.consent label:after {
  content: "";
  left: -33px;
  width: 26px;
  height: 26px;
  top: 31px;
  background: transparent;
}
.form .checkbox.consent input[type=radio]:checked + label:after,
.form .checkbox.consent input[type=checkbox]:checked + label:after {
  content: "✓";
  color: #000;
  line-height: 12px;
  font-size: 20px;
  background: transparent;
}
.form .radio-wrapperG .checkbox {
  margin-right: 50px;
  color: red;
}
.form .radio-wrapperG .checkbox label:before,
.form .radio-wrapperG .checkbox label:after {
  background: black;
}
.form .radio-wrapperG .checkbox:last-of-type {
  margin-right: 0;
}
.form .warning-message,
.form .error-message {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: red;
}
.form .error {
  border-color: red !important;
  color: red;
}
.form .error::placeholder {
  color: red !important;
}
.form .error label {
  color: red !important;
}
.form .thank_you_message {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
  text-align: center;
  transition: all 0.4s;
  background: black;
  padding: 0;
}
.form .thank_you_message .close_btn {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.form .thank_you_message h3, .form .thank_you_message h5 {
  position: absolute;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.form .thank_you_message h5 {
  line-height: 1.4;
}
.form .thank_you_message .close_btn {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 24px;
}
.form.form-done .thank_you_message {
  opacity: 1;
  z-index: 3;
}

/* ---------------- REGISTER END ---------------------- */
/* ---------------- FOOTER -------------------- */
/* ---------------- FOOTER END ----------------- */
/* -------------- RESPONSIVE ------------------ */
@media (min-width: 2000px) {
  .full_width_image_container {
    padding-bottom: 50px;
  }
}
@media (min-width: 2200px) {
  .full_width_image_container {
    padding-bottom: 90px;
  }
}
@media (min-width: 2400px) {
  .full_width_image_container {
    padding-bottom: 140px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 46px;
  }
  h2 span.large {
    font-size: 95px;
  }
  h3 {
    font-size: 42px;
  }
  h4 {
    font-size: 32px;
  }
  h5 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;
  }
  .main_content .row {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .units_table tr td {
    font-size: 18px;
    padding: 30px 10px;
  }
  .units_table tr td span.small {
    font-size: 12px;
  }
  .form .radio-wrapperG .checkbox {
    margin-right: 35px;
  }
  .form .checkbox label {
    padding: 10px 10px;
  }
  .form input[type=text], .form input[type=search], .form input[type=tel],
  .form input[type=number], .form input[type=email], .form input[type=password],
  .form textarea, .form select {
    font-size: 18px;
    line-height: 56px;
  }
  .form legend {
    font-size: 18px;
  }
}
@media (max-width: 1300px) {
  #mainbody {
    padding-left: 190px;
  }
  .main_content .row {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 42px;
  }
  h2 span.large {
    font-size: 80px;
  }
  h3 {
    font-size: 38px;
  }
  h3 span.large {
    font-size: 60px;
  }
  h4 {
    font-size: 28px;
  }
  h5 {
    font-size: 24px;
  }
  .hero-bg {
    right: -5%;
  }
  nav {
    width: 190px;
    min-width: 190px;
  }
  nav .main_items li {
    height: 90px;
    font-size: 16px;
  }
  .rental_table tr td:last-of-type {
    width: 32%;
  }
  .form .radio-wrapperG .checkbox {
    margin-right: 30px;
  }
  .form .checkbox {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .form .checkbox label {
    padding: 10px 10px;
  }
  .form input[type=text], .form input[type=search], .form input[type=tel],
  .form input[type=number], .form input[type=email], .form input[type=password],
  .form textarea, .form select {
    font-size: 16px;
    line-height: 54px;
  }
  .form legend {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .header {
    display: block;
  }
  nav {
    padding-top: 60px;
    transform: translate(-101%, 0);
    transition: transform 0.4s ease-in-out;
  }
  nav.active {
    transform: translate(0, 0);
  }
  nav .main_items li.no_hover {
    display: none;
  }
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 38px;
  }
  h2 span.large {
    font-size: 60px;
  }
  h3 {
    font-size: 32px;
  }
  h5 {
    font-size: 20px;
  }
  sup {
    font-size: 14px;
  }
  .main_content .row {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  #mainbody {
    padding-left: 0;
  }
  .units_table_wrapper {
    overflow-x: scroll;
  }
  .units_table_wrapper .units_table {
    width: 700px;
  }
  .dollar {
    margin-bottom: 30px;
  }
  .dollar:before {
    top: -3px;
  }
  .full_width_image {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }
  .footer {
    margin: 0 auto;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 750px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  h2 span.large {
    font-size: 50px;
  }
  h3 {
    font-size: 28px;
  }
  h3 span.large {
    font-size: 50px;
  }
  h4 {
    font-size: 24px;
  }
  .hero-bg {
    top: 80px;
  }
  .container {
    max-width: 100%;
  }
  .units_table tr td {
    font-size: 16px;
    padding: 30px 10px;
  }
  .units_table td:first-of-type {
    padding-right: 20px;
  }
  .units_table span.small {
    margin-top: 5px;
  }
}
/* -------------- RESPONSIVE END ------------------ */