:root {
  --c-transparent: transparent;
  --c-transparent-50: rgba(0, 0, 0, 0);
  --c-transparent-darken-30: rgba(0, 0, 0, 0);
  --c-transparent-lightness-30: rgba(77, 77, 77, 0);
  --c-white: #FFFFFF;
  --c-white-50: rgba(255, 255, 255, 0.5);
  --c-white-darken-30: #b3b3b3;
  --c-white-lightness-30: white;
  --c-black: #17161a;
  --c-black-50: rgba(23, 22, 26, 0.5);
  --c-black-darken-30: black;
  --c-black-lightness-30: #605c6d;
  --c-primary-black: #262729;
  --c-primary-black-50: rgba(38, 39, 41, 0.5);
  --c-primary-black-darken-30: black;
  --c-primary-black-lightness-30: #707378;
  --c-gray: #86898d;
  --c-gray-50: rgba(134, 137, 141, 0.5);
  --c-gray-darken-30: #3b3d3f;
  --c-gray-lightness-30: #d5d6d7;
  --c-boulder: #7A7A7A;
  --c-boulder-50: rgba(122, 122, 122, 0.5);
  --c-boulder-darken-30: #2e2e2e;
  --c-boulder-lightness-30: #c7c7c7;
  --c-gray-light: #cecece;
  --c-gray-light-50: rgba(206, 206, 206, 0.5);
  --c-gray-light-darken-30: #828282;
  --c-gray-light-lightness-30: white;
  --c-gray-extralight: #F5F5F5;
  --c-gray-extralight-50: rgba(245, 245, 245, 0.5);
  --c-gray-extralight-darken-30: darkgray;
  --c-gray-extralight-lightness-30: white;
  --c-danger: #DC3545;
  --c-danger-50: rgba(220, 53, 69, 0.5);
  --c-danger-darken-30: #66121a;
  --c-danger-lightness-30: #f3b7bd;
  --c-success: #28A745;
  --c-success-50: rgba(40, 167, 69, 0.5);
  --c-success-darken-30: #0a2c12;
  --c-success-lightness-30: #86e29b;
  --c-green: #00B288;
  --c-green-50: rgba(0, 178, 136, 0.5);
  --c-green-darken-30: #001913;
  --c-green-lightness-30: #4cffd5;
  --c-red: #F42535;
  --c-red-50: rgba(244, 37, 53, 0.5);
  --c-red-darken-30: #7a060f;
  --c-red-lightness-30: #fbb7bc;
  --c-sorrell-brown: #D0BA8F;
  --c-sorrell-brown-50: rgba(208, 186, 143, 0.5);
  --c-sorrell-brown-darken-30: #8b703b;
  --c-sorrell-brown-lightness-30: #fdfcfb;
  --c-blue: #0075C9;
  --c-blue-50: rgba(0, 117, 201, 0.5);
  --c-blue-darken-30: #001c30;
  --c-blue-lightness-30: #63beff;
  --c-big-stone: #132033;
  --c-big-stone-50: rgba(19, 32, 51, 0.5);
  --c-big-stone-darken-30: black;
  --c-big-stone-lightness-30: #3d66a2;
}

.bg-transparent {
  background-color: var(--c-transparent);
}

.c-transparent {
  color: var(--c-transparent);
}

.fill-transparent {
  fill: var(--c-transparent);
}

.bg-white {
  background-color: var(--c-white);
}

.c-white {
  color: var(--c-white);
}

.fill-white {
  fill: var(--c-white);
}

.bg-black {
  background-color: var(--c-black);
}

.c-black {
  color: var(--c-black);
}

.fill-black {
  fill: var(--c-black);
}

.bg-primary-black {
  background-color: var(--c-primary-black);
}

.c-primary-black {
  color: var(--c-primary-black);
}

.fill-primary-black {
  fill: var(--c-primary-black);
}

.bg-active-gray.active, .bg-active-gray:active, .bg-active-gray[active], .bg-hover-gray:hover, .bg-gray {
  background-color: var(--c-gray);
}

.c-active-gray.active, .c-active-gray:active, .c-active-gray[active], .c-hover-gray:hover, .c-gray {
  color: var(--c-gray);
}

.fill-gray {
  fill: var(--c-gray);
}

.bg-boulder {
  background-color: var(--c-boulder);
}

.c-boulder {
  color: var(--c-boulder);
}

.fill-boulder {
  fill: var(--c-boulder);
}

.bg-gray-light {
  background-color: var(--c-gray-light);
}

.c-gray-light {
  color: var(--c-gray-light);
}

.fill-gray-light {
  fill: var(--c-gray-light);
}

.bg-gray-extralight {
  background-color: var(--c-gray-extralight);
}

.c-gray-extralight {
  color: var(--c-gray-extralight);
}

.fill-gray-extralight {
  fill: var(--c-gray-extralight);
}

.bg-active-danger.active, .bg-active-danger:active, .bg-active-danger[active], .bg-hover-danger:hover, .bg-danger {
  background-color: var(--c-danger);
}

.c-active-danger.active, .c-active-danger:active, .c-active-danger[active], .c-hover-danger:hover, .c-danger {
  color: var(--c-danger);
}

.fill-danger {
  fill: var(--c-danger);
}

.bg-active-success.active, .bg-active-success:active, .bg-active-success[active], .bg-hover-success:hover, .bg-success {
  background-color: var(--c-success);
}

.c-active-success.active, .c-active-success:active, .c-active-success[active], .c-hover-success:hover, .c-success {
  color: var(--c-success);
}

.fill-success {
  fill: var(--c-success);
}

.bg-green {
  background-color: var(--c-green);
}

.c-green {
  color: var(--c-green);
}

.fill-green {
  fill: var(--c-green);
}

.bg-red {
  background-color: var(--c-red);
}

.c-red {
  color: var(--c-red);
}

.fill-red {
  fill: var(--c-red);
}

.bg-sorrell-brown {
  background-color: var(--c-sorrell-brown);
}

.c-sorrell-brown {
  color: var(--c-sorrell-brown);
}

.fill-sorrell-brown {
  fill: var(--c-sorrell-brown);
}

.bg-blue {
  background-color: var(--c-blue);
}

.c-blue {
  color: var(--c-blue);
}

.fill-blue {
  fill: var(--c-blue);
}

.bg-big-stone {
  background-color: var(--c-big-stone);
}

.c-big-stone {
  color: var(--c-big-stone);
}

.fill-big-stone {
  fill: var(--c-big-stone);
}

.weight-100 {
  font-weight: 10;
}

.weight-200 {
  font-weight: 20;
}

.weight-300 {
  font-weight: 30;
}

.weight-400 {
  font-weight: 40;
}

.weight-500 {
  font-weight: 50;
}

.weight-600 {
  font-weight: 60;
}

.weight-700 {
  font-weight: 70;
}

.weight-800 {
  font-weight: 80;
}

.weight-900 {
  font-weight: 90;
}

.input-text, .input-select, p > *, ul > *, ol > *, ul li > *, ol li > *, time > *, label > *, table td > *, table th > *, span > *, mark > *, .h6, .h5, .h4, .h3, .h2 {
  line-height: 1.25;
  font-weight: inherit;
  font-size: inherit;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

@media (min-width: 576px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-justify {
    text-align: justify;
  }
}
@media (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-justify {
    text-align: justify;
  }
}
@media (min-width: 1560px) {
  .text-xx-center {
    text-align: center;
  }
  .text-xx-right {
    text-align: right;
  }
  .text-xx-left {
    text-align: left;
  }
  .text-xx-justify {
    text-align: justify;
  }
}
select::-webkit-scrollbar-track, .scroll-style::-webkit-scrollbar-track {
  border-radius: 0.25rem;
  background-color: var(--c-gray-light);
}
select::-webkit-scrollbar, .scroll-style::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
select::-webkit-scrollbar-thumb, .scroll-style::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 1px solid var(--c-gray-light);
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.align-stretch {
  align-items: stretch;
}

.flex-column {
  flex-direction: column;
}

.flex-row, .row {
  flex-direction: row;
}

.flex-wrap, .row {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

@media (min-width: 576px) {
  .justify-sm-center {
    justify-content: center;
  }
  .justify-sm-between {
    justify-content: space-between;
  }
  .justify-sm-around {
    justify-content: space-around;
  }
  .justify-sm-end {
    justify-content: flex-end;
  }
  .justify-sm-start {
    justify-content: flex-start;
  }
  .align-sm-center {
    align-items: center;
  }
  .align-sm-end {
    align-items: flex-end;
  }
  .align-sm-start {
    align-items: flex-start;
  }
  .align-sm-stretch {
    align-items: stretch;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .justify-md-center {
    justify-content: center;
  }
  .justify-md-between {
    justify-content: space-between;
  }
  .justify-md-around {
    justify-content: space-around;
  }
  .justify-md-end {
    justify-content: flex-end;
  }
  .justify-md-start {
    justify-content: flex-start;
  }
  .align-md-center {
    align-items: center;
  }
  .align-md-end {
    align-items: flex-end;
  }
  .align-md-start {
    align-items: flex-start;
  }
  .align-md-stretch {
    align-items: stretch;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .justify-lg-center {
    justify-content: center;
  }
  .justify-lg-between {
    justify-content: space-between;
  }
  .justify-lg-around {
    justify-content: space-around;
  }
  .justify-lg-end {
    justify-content: flex-end;
  }
  .justify-lg-start {
    justify-content: flex-start;
  }
  .align-lg-center {
    align-items: center;
  }
  .align-lg-end {
    align-items: flex-end;
  }
  .align-lg-start {
    align-items: flex-start;
  }
  .align-lg-stretch {
    align-items: stretch;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .justify-xl-center {
    justify-content: center;
  }
  .justify-xl-between {
    justify-content: space-between;
  }
  .justify-xl-around {
    justify-content: space-around;
  }
  .justify-xl-end {
    justify-content: flex-end;
  }
  .justify-xl-start {
    justify-content: flex-start;
  }
  .align-xl-center {
    align-items: center;
  }
  .align-xl-end {
    align-items: flex-end;
  }
  .align-xl-start {
    align-items: flex-start;
  }
  .align-xl-stretch {
    align-items: stretch;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1560px) {
  .justify-xx-center {
    justify-content: center;
  }
  .justify-xx-between {
    justify-content: space-between;
  }
  .justify-xx-around {
    justify-content: space-around;
  }
  .justify-xx-end {
    justify-content: flex-end;
  }
  .justify-xx-start {
    justify-content: flex-start;
  }
  .align-xx-center {
    align-items: center;
  }
  .align-xx-end {
    align-items: flex-end;
  }
  .align-xx-start {
    align-items: flex-start;
  }
  .align-xx-stretch {
    align-items: stretch;
  }
  .flex-xx-column {
    flex-direction: column;
  }
  .flex-xx-row {
    flex-direction: row;
  }
  .flex-xx-wrap {
    flex-wrap: wrap;
  }
  .flex-xx-nowrap {
    flex-wrap: nowrap;
  }
}
.order-0 {
  ordinal-group: 0;
  order: 0;
}

@media (min-width: 576px) {
  .order-sm-0 {
    ordinal-group: 0;
    order: 0;
  }
}
@media (min-width: 768px) {
  .order-md-0 {
    ordinal-group: 0;
    order: 0;
  }
}
@media (min-width: 992px) {
  .order-lg-0 {
    ordinal-group: 0;
    order: 0;
  }
}
@media (min-width: 1200px) {
  .order-xl-0 {
    ordinal-group: 0;
    order: 0;
  }
}
@media (min-width: 1560px) {
  .order-xx-0 {
    ordinal-group: 0;
    order: 0;
  }
}
.order-1 {
  ordinal-group: 1;
  order: 1;
}

@media (min-width: 576px) {
  .order-sm-1 {
    ordinal-group: 1;
    order: 1;
  }
}
@media (min-width: 768px) {
  .order-md-1 {
    ordinal-group: 1;
    order: 1;
  }
}
@media (min-width: 992px) {
  .order-lg-1 {
    ordinal-group: 1;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .order-xl-1 {
    ordinal-group: 1;
    order: 1;
  }
}
@media (min-width: 1560px) {
  .order-xx-1 {
    ordinal-group: 1;
    order: 1;
  }
}
.order-2 {
  ordinal-group: 2;
  order: 2;
}

@media (min-width: 576px) {
  .order-sm-2 {
    ordinal-group: 2;
    order: 2;
  }
}
@media (min-width: 768px) {
  .order-md-2 {
    ordinal-group: 2;
    order: 2;
  }
}
@media (min-width: 992px) {
  .order-lg-2 {
    ordinal-group: 2;
    order: 2;
  }
}
@media (min-width: 1200px) {
  .order-xl-2 {
    ordinal-group: 2;
    order: 2;
  }
}
@media (min-width: 1560px) {
  .order-xx-2 {
    ordinal-group: 2;
    order: 2;
  }
}
.input-text, .input-select, .d-block, img, svg, canvas {
  display: block;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.btn, .d-inline-block {
  display: inline-block;
}

.d-gird {
  display: grid;
}

.d-flex, .row {
  display: flex;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-gird {
    display: grid;
  }
  .d-sm-flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
  .d-md-none {
    display: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-gird {
    display: grid;
  }
  .d-md-flex {
    display: flex;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-gird {
    display: grid;
  }
  .d-lg-flex {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-gird {
    display: grid;
  }
  .d-xl-flex {
    display: flex;
  }
}
@media (min-width: 1560px) {
  .d-xx-block {
    display: block;
  }
  .d-xx-none {
    display: none;
  }
  .d-xx-inline {
    display: inline;
  }
  .d-xx-inline-block {
    display: inline-block;
  }
  .d-xx-gird {
    display: grid;
  }
  .d-xx-flex {
    display: flex;
  }
}
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: -webkit-sticky;
  position: -ms-sticky;
  position: sticky;
}

@media (min-width: 576px) {
  .p-sm-relative {
    position: relative;
  }
  .p-sm-absolute {
    position: absolute;
  }
  .p-sm-fixed {
    position: fixed;
  }
  .p-sm-stiky {
    position: -webkit-sticky;
    position: -ms-sticky;
    position: sticky;
  }
}
@media (min-width: 768px) {
  .p-md-relative {
    position: relative;
  }
  .p-md-absolute {
    position: absolute;
  }
  .p-md-fixed {
    position: fixed;
  }
  .p-md-stiky {
    position: -webkit-sticky;
    position: -ms-sticky;
    position: sticky;
  }
}
@media (min-width: 992px) {
  .p-lg-relative {
    position: relative;
  }
  .p-lg-absolute {
    position: absolute;
  }
  .p-lg-fixed {
    position: fixed;
  }
  .p-lg-stiky {
    position: -webkit-sticky;
    position: -ms-sticky;
    position: sticky;
  }
}
@media (min-width: 1200px) {
  .p-xl-relative {
    position: relative;
  }
  .p-xl-absolute {
    position: absolute;
  }
  .p-xl-fixed {
    position: fixed;
  }
  .p-xl-stiky {
    position: -webkit-sticky;
    position: -ms-sticky;
    position: sticky;
  }
}
@media (min-width: 1560px) {
  .p-xx-relative {
    position: relative;
  }
  .p-xx-absolute {
    position: absolute;
  }
  .p-xx-fixed {
    position: fixed;
  }
  .p-xx-stiky {
    position: -webkit-sticky;
    position: -ms-sticky;
    position: sticky;
  }
}
.apartament_structure svg, .input-container-label input[type=checkbox], .input-container-label input[type=radio], .trbl-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-10 {
  width: 10%;
}

.mw-10 {
  max-width: 10%;
}

.h-10 {
  height: 10%;
}

.mh-10 {
  max-height: 10%;
}

.w-20 {
  width: 20%;
}

.mw-20 {
  max-width: 20%;
}

.h-20 {
  height: 20%;
}

.mh-20 {
  max-height: 20%;
}

.w-30 {
  width: 30%;
}

.mw-30 {
  max-width: 30%;
}

.h-30 {
  height: 30%;
}

.mh-30 {
  max-height: 30%;
}

.w-40 {
  width: 40%;
}

.mw-40 {
  max-width: 40%;
}

.h-40 {
  height: 40%;
}

.mh-40 {
  max-height: 40%;
}

.w-50 {
  width: 50%;
}

.mw-50 {
  max-width: 50%;
}

.h-50 {
  height: 50%;
}

.mh-50 {
  max-height: 50%;
}

.w-60 {
  width: 60%;
}

.mw-60 {
  max-width: 60%;
}

.h-60 {
  height: 60%;
}

.mh-60 {
  max-height: 60%;
}

.w-70 {
  width: 70%;
}

.mw-70 {
  max-width: 70%;
}

.h-70 {
  height: 70%;
}

.mh-70 {
  max-height: 70%;
}

.w-80 {
  width: 80%;
}

.mw-80 {
  max-width: 80%;
}

.h-80 {
  height: 80%;
}

.mh-80 {
  max-height: 80%;
}

.w-90 {
  width: 90%;
}

.mw-90 {
  max-width: 90%;
}

.h-90 {
  height: 90%;
}

.mh-90 {
  max-height: 90%;
}

.input-text, .input-select, .form .form-group, .form, .w-100, .col-xx-12, .col-xx-11, .col-xx-10, .col-xx-9, .col-xx-8, .col-xx-7, .col-xx-6, .col-xx-5, .col-xx-4, .col-xx-3, .col-xx-2, .col-xx-1, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1, .container-lg, .container-fluid, .container, img, svg, canvas {
  width: 100%;
}

.mw-100 {
  max-width: 100%;
}

.h-100 {
  height: 100%;
}

.mh-100 {
  max-height: 100%;
}

@media (min-width: 576px) {
  .w-10-sm {
    width: 10%;
  }
  .mw-10-sm {
    max-width: 10%;
  }
  .h-10-sm {
    width: 10%;
  }
  .mh-10-sm {
    max-height: 10%;
  }
  .w-20-sm {
    width: 20%;
  }
  .mw-20-sm {
    max-width: 20%;
  }
  .h-20-sm {
    width: 20%;
  }
  .mh-20-sm {
    max-height: 20%;
  }
  .w-30-sm {
    width: 30%;
  }
  .mw-30-sm {
    max-width: 30%;
  }
  .h-30-sm {
    width: 30%;
  }
  .mh-30-sm {
    max-height: 30%;
  }
  .w-40-sm {
    width: 40%;
  }
  .mw-40-sm {
    max-width: 40%;
  }
  .h-40-sm {
    width: 40%;
  }
  .mh-40-sm {
    max-height: 40%;
  }
  .w-50-sm {
    width: 50%;
  }
  .mw-50-sm {
    max-width: 50%;
  }
  .h-50-sm {
    width: 50%;
  }
  .mh-50-sm {
    max-height: 50%;
  }
  .w-60-sm {
    width: 60%;
  }
  .mw-60-sm {
    max-width: 60%;
  }
  .h-60-sm {
    width: 60%;
  }
  .mh-60-sm {
    max-height: 60%;
  }
  .w-70-sm {
    width: 70%;
  }
  .mw-70-sm {
    max-width: 70%;
  }
  .h-70-sm {
    width: 70%;
  }
  .mh-70-sm {
    max-height: 70%;
  }
  .w-80-sm {
    width: 80%;
  }
  .mw-80-sm {
    max-width: 80%;
  }
  .h-80-sm {
    width: 80%;
  }
  .mh-80-sm {
    max-height: 80%;
  }
  .w-90-sm {
    width: 90%;
  }
  .mw-90-sm {
    max-width: 90%;
  }
  .h-90-sm {
    width: 90%;
  }
  .mh-90-sm {
    max-height: 90%;
  }
  .w-100-sm {
    width: 100%;
  }
  .mw-100-sm {
    max-width: 100%;
  }
  .h-100-sm {
    width: 100%;
  }
  .mh-100-sm {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .w-10-md {
    width: 10%;
  }
  .mw-10-md {
    max-width: 10%;
  }
  .h-10-md {
    width: 10%;
  }
  .mh-10-md {
    max-height: 10%;
  }
  .w-20-md {
    width: 20%;
  }
  .mw-20-md {
    max-width: 20%;
  }
  .h-20-md {
    width: 20%;
  }
  .mh-20-md {
    max-height: 20%;
  }
  .w-30-md {
    width: 30%;
  }
  .mw-30-md {
    max-width: 30%;
  }
  .h-30-md {
    width: 30%;
  }
  .mh-30-md {
    max-height: 30%;
  }
  .w-40-md {
    width: 40%;
  }
  .mw-40-md {
    max-width: 40%;
  }
  .h-40-md {
    width: 40%;
  }
  .mh-40-md {
    max-height: 40%;
  }
  .w-50-md {
    width: 50%;
  }
  .mw-50-md {
    max-width: 50%;
  }
  .h-50-md {
    width: 50%;
  }
  .mh-50-md {
    max-height: 50%;
  }
  .w-60-md {
    width: 60%;
  }
  .mw-60-md {
    max-width: 60%;
  }
  .h-60-md {
    width: 60%;
  }
  .mh-60-md {
    max-height: 60%;
  }
  .w-70-md {
    width: 70%;
  }
  .mw-70-md {
    max-width: 70%;
  }
  .h-70-md {
    width: 70%;
  }
  .mh-70-md {
    max-height: 70%;
  }
  .w-80-md {
    width: 80%;
  }
  .mw-80-md {
    max-width: 80%;
  }
  .h-80-md {
    width: 80%;
  }
  .mh-80-md {
    max-height: 80%;
  }
  .w-90-md {
    width: 90%;
  }
  .mw-90-md {
    max-width: 90%;
  }
  .h-90-md {
    width: 90%;
  }
  .mh-90-md {
    max-height: 90%;
  }
  .w-100-md {
    width: 100%;
  }
  .mw-100-md {
    max-width: 100%;
  }
  .h-100-md {
    width: 100%;
  }
  .mh-100-md {
    max-height: 100%;
  }
}
@media (min-width: 992px) {
  .w-10-lg {
    width: 10%;
  }
  .mw-10-lg {
    max-width: 10%;
  }
  .h-10-lg {
    width: 10%;
  }
  .mh-10-lg {
    max-height: 10%;
  }
  .w-20-lg {
    width: 20%;
  }
  .mw-20-lg {
    max-width: 20%;
  }
  .h-20-lg {
    width: 20%;
  }
  .mh-20-lg {
    max-height: 20%;
  }
  .w-30-lg {
    width: 30%;
  }
  .mw-30-lg {
    max-width: 30%;
  }
  .h-30-lg {
    width: 30%;
  }
  .mh-30-lg {
    max-height: 30%;
  }
  .w-40-lg {
    width: 40%;
  }
  .mw-40-lg {
    max-width: 40%;
  }
  .h-40-lg {
    width: 40%;
  }
  .mh-40-lg {
    max-height: 40%;
  }
  .w-50-lg {
    width: 50%;
  }
  .mw-50-lg {
    max-width: 50%;
  }
  .h-50-lg {
    width: 50%;
  }
  .mh-50-lg {
    max-height: 50%;
  }
  .w-60-lg {
    width: 60%;
  }
  .mw-60-lg {
    max-width: 60%;
  }
  .h-60-lg {
    width: 60%;
  }
  .mh-60-lg {
    max-height: 60%;
  }
  .w-70-lg {
    width: 70%;
  }
  .mw-70-lg {
    max-width: 70%;
  }
  .h-70-lg {
    width: 70%;
  }
  .mh-70-lg {
    max-height: 70%;
  }
  .w-80-lg {
    width: 80%;
  }
  .mw-80-lg {
    max-width: 80%;
  }
  .h-80-lg {
    width: 80%;
  }
  .mh-80-lg {
    max-height: 80%;
  }
  .w-90-lg {
    width: 90%;
  }
  .mw-90-lg {
    max-width: 90%;
  }
  .h-90-lg {
    width: 90%;
  }
  .mh-90-lg {
    max-height: 90%;
  }
  .w-100-lg {
    width: 100%;
  }
  .mw-100-lg {
    max-width: 100%;
  }
  .h-100-lg {
    width: 100%;
  }
  .mh-100-lg {
    max-height: 100%;
  }
}
@media (min-width: 1200px) {
  .w-10-xl {
    width: 10%;
  }
  .mw-10-xl {
    max-width: 10%;
  }
  .h-10-xl {
    width: 10%;
  }
  .mh-10-xl {
    max-height: 10%;
  }
  .w-20-xl {
    width: 20%;
  }
  .mw-20-xl {
    max-width: 20%;
  }
  .h-20-xl {
    width: 20%;
  }
  .mh-20-xl {
    max-height: 20%;
  }
  .w-30-xl {
    width: 30%;
  }
  .mw-30-xl {
    max-width: 30%;
  }
  .h-30-xl {
    width: 30%;
  }
  .mh-30-xl {
    max-height: 30%;
  }
  .w-40-xl {
    width: 40%;
  }
  .mw-40-xl {
    max-width: 40%;
  }
  .h-40-xl {
    width: 40%;
  }
  .mh-40-xl {
    max-height: 40%;
  }
  .w-50-xl {
    width: 50%;
  }
  .mw-50-xl {
    max-width: 50%;
  }
  .h-50-xl {
    width: 50%;
  }
  .mh-50-xl {
    max-height: 50%;
  }
  .w-60-xl {
    width: 60%;
  }
  .mw-60-xl {
    max-width: 60%;
  }
  .h-60-xl {
    width: 60%;
  }
  .mh-60-xl {
    max-height: 60%;
  }
  .w-70-xl {
    width: 70%;
  }
  .mw-70-xl {
    max-width: 70%;
  }
  .h-70-xl {
    width: 70%;
  }
  .mh-70-xl {
    max-height: 70%;
  }
  .w-80-xl {
    width: 80%;
  }
  .mw-80-xl {
    max-width: 80%;
  }
  .h-80-xl {
    width: 80%;
  }
  .mh-80-xl {
    max-height: 80%;
  }
  .w-90-xl {
    width: 90%;
  }
  .mw-90-xl {
    max-width: 90%;
  }
  .h-90-xl {
    width: 90%;
  }
  .mh-90-xl {
    max-height: 90%;
  }
  .w-100-xl {
    width: 100%;
  }
  .mw-100-xl {
    max-width: 100%;
  }
  .h-100-xl {
    width: 100%;
  }
  .mh-100-xl {
    max-height: 100%;
  }
}
@media (min-width: 1560px) {
  .w-10-xx {
    width: 10%;
  }
  .mw-10-xx {
    max-width: 10%;
  }
  .h-10-xx {
    width: 10%;
  }
  .mh-10-xx {
    max-height: 10%;
  }
  .w-20-xx {
    width: 20%;
  }
  .mw-20-xx {
    max-width: 20%;
  }
  .h-20-xx {
    width: 20%;
  }
  .mh-20-xx {
    max-height: 20%;
  }
  .w-30-xx {
    width: 30%;
  }
  .mw-30-xx {
    max-width: 30%;
  }
  .h-30-xx {
    width: 30%;
  }
  .mh-30-xx {
    max-height: 30%;
  }
  .w-40-xx {
    width: 40%;
  }
  .mw-40-xx {
    max-width: 40%;
  }
  .h-40-xx {
    width: 40%;
  }
  .mh-40-xx {
    max-height: 40%;
  }
  .w-50-xx {
    width: 50%;
  }
  .mw-50-xx {
    max-width: 50%;
  }
  .h-50-xx {
    width: 50%;
  }
  .mh-50-xx {
    max-height: 50%;
  }
  .w-60-xx {
    width: 60%;
  }
  .mw-60-xx {
    max-width: 60%;
  }
  .h-60-xx {
    width: 60%;
  }
  .mh-60-xx {
    max-height: 60%;
  }
  .w-70-xx {
    width: 70%;
  }
  .mw-70-xx {
    max-width: 70%;
  }
  .h-70-xx {
    width: 70%;
  }
  .mh-70-xx {
    max-height: 70%;
  }
  .w-80-xx {
    width: 80%;
  }
  .mw-80-xx {
    max-width: 80%;
  }
  .h-80-xx {
    width: 80%;
  }
  .mh-80-xx {
    max-height: 80%;
  }
  .w-90-xx {
    width: 90%;
  }
  .mw-90-xx {
    max-width: 90%;
  }
  .h-90-xx {
    width: 90%;
  }
  .mh-90-xx {
    max-height: 90%;
  }
  .w-100-xx {
    width: 100%;
  }
  .mw-100-xx {
    max-width: 100%;
  }
  .h-100-xx {
    width: 100%;
  }
  .mh-100-xx {
    max-height: 100%;
  }
}
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.form, .mx-auto, .container-lg, .container-fluid, .container {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

@media (min-width: 768px) {
  .mt-md-1 {
    margin-top: 0.25rem;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-1 {
    margin-top: 0.25rem;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem;
  }
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .mt-md-2 {
    margin-top: 0.5rem;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-2 {
    margin-top: 0.5rem;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem;
  }
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

@media (min-width: 768px) {
  .mt-md-3 {
    margin-top: 0.75rem;
  }
  .mb-md-3 {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-3 {
    margin-top: 0.75rem;
  }
  .mb-lg-3 {
    margin-bottom: 0.75rem;
  }
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-n5 {
  margin-top: -1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-n5 {
  margin-bottom: -1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

@media (min-width: 768px) {
  .mt-md-5 {
    margin-top: 1.25rem;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem;
  }
  .mt-md-n5 {
    margin-top: -1.25rem;
  }
  .mb-md-n5 {
    margin-bottom: -1.25rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-5 {
    margin-top: 1.25rem;
  }
  .mb-lg-5 {
    margin-bottom: 1.25rem;
  }
  .mt-lg-n5 {
    margin-top: -1.25rem;
  }
  .mb-lg-n5 {
    margin-bottom: -1.25rem;
  }
}
.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-n7 {
  margin-top: -1.75rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-n7 {
  margin-bottom: -1.75rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

@media (min-width: 768px) {
  .mt-md-7 {
    margin-top: 1.75rem;
  }
  .mb-md-7 {
    margin-bottom: 1.75rem;
  }
  .mt-md-n7 {
    margin-top: -1.75rem;
  }
  .mb-md-n7 {
    margin-bottom: -1.75rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-7 {
    margin-top: 1.75rem;
  }
  .mb-lg-7 {
    margin-bottom: 1.75rem;
  }
  .mt-lg-n7 {
    margin-top: -1.75rem;
  }
  .mb-lg-n7 {
    margin-bottom: -1.75rem;
  }
}
.mx-9 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.my-9 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-n9 {
  margin-top: -2.25rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-n9 {
  margin-bottom: -2.25rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

@media (min-width: 768px) {
  .mt-md-9 {
    margin-top: 2.25rem;
  }
  .mb-md-9 {
    margin-bottom: 2.25rem;
  }
  .mt-md-n9 {
    margin-top: -2.25rem;
  }
  .mb-md-n9 {
    margin-bottom: -2.25rem;
  }
}
@media (min-width: 992px) {
  .mt-lg-9 {
    margin-top: 2.25rem;
  }
  .mb-lg-9 {
    margin-bottom: 2.25rem;
  }
  .mt-lg-n9 {
    margin-top: -2.25rem;
  }
  .mb-lg-n9 {
    margin-bottom: -2.25rem;
  }
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

@media (min-width: 768px) {
  .pb-md-1, .pt-md-1 {
    padding-top: 0.25rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-1, .pt-lg-1 {
    padding-top: 0.25rem;
  }
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .pb-md-2, .pt-md-2 {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-2, .pt-lg-2 {
    padding-top: 0.5rem;
  }
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

@media (min-width: 768px) {
  .pb-md-3, .pt-md-3 {
    padding-top: 0.75rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-3, .pt-lg-3 {
    padding-top: 0.75rem;
  }
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

@media (min-width: 768px) {
  .pb-md-5, .pt-md-5 {
    padding-top: 1.25rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-5, .pt-lg-5 {
    padding-top: 1.25rem;
  }
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

@media (min-width: 768px) {
  .pb-md-7, .pt-md-7 {
    padding-top: 1.75rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-7, .pt-lg-7 {
    padding-top: 1.75rem;
  }
}
.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.py-9 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

@media (min-width: 768px) {
  .pb-md-9, .pt-md-9 {
    padding-top: 2.25rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-9, .pt-lg-9 {
    padding-top: 2.25rem;
  }
}
.z-sticky {
  z-index: 1020;
}

@media (min-width: 576px) {
  .z-sm-sticky {
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .z-md-sticky {
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .z-lg-sticky {
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .z-xl-sticky {
    z-index: 1020;
  }
}
@media (min-width: 1560px) {
  .z-xx-sticky {
    z-index: 1020;
  }
}
.z-fixed {
  z-index: 1030;
}

@media (min-width: 576px) {
  .z-sm-fixed {
    z-index: 1030;
  }
}
@media (min-width: 768px) {
  .z-md-fixed {
    z-index: 1030;
  }
}
@media (min-width: 992px) {
  .z-lg-fixed {
    z-index: 1030;
  }
}
@media (min-width: 1200px) {
  .z-xl-fixed {
    z-index: 1030;
  }
}
@media (min-width: 1560px) {
  .z-xx-fixed {
    z-index: 1030;
  }
}
.z-modal-backdrop {
  z-index: 1040;
}

@media (min-width: 576px) {
  .z-sm-modal-backdrop {
    z-index: 1040;
  }
}
@media (min-width: 768px) {
  .z-md-modal-backdrop {
    z-index: 1040;
  }
}
@media (min-width: 992px) {
  .z-lg-modal-backdrop {
    z-index: 1040;
  }
}
@media (min-width: 1200px) {
  .z-xl-modal-backdrop {
    z-index: 1040;
  }
}
@media (min-width: 1560px) {
  .z-xx-modal-backdrop {
    z-index: 1040;
  }
}
.z-dropdown {
  z-index: 1045;
}

@media (min-width: 576px) {
  .z-sm-dropdown {
    z-index: 1045;
  }
}
@media (min-width: 768px) {
  .z-md-dropdown {
    z-index: 1045;
  }
}
@media (min-width: 992px) {
  .z-lg-dropdown {
    z-index: 1045;
  }
}
@media (min-width: 1200px) {
  .z-xl-dropdown {
    z-index: 1045;
  }
}
@media (min-width: 1560px) {
  .z-xx-dropdown {
    z-index: 1045;
  }
}
.z-modal {
  z-index: 1050;
}

@media (min-width: 576px) {
  .z-sm-modal {
    z-index: 1050;
  }
}
@media (min-width: 768px) {
  .z-md-modal {
    z-index: 1050;
  }
}
@media (min-width: 992px) {
  .z-lg-modal {
    z-index: 1050;
  }
}
@media (min-width: 1200px) {
  .z-xl-modal {
    z-index: 1050;
  }
}
@media (min-width: 1560px) {
  .z-xx-modal {
    z-index: 1050;
  }
}
.z-popover {
  z-index: 1060;
}

@media (min-width: 576px) {
  .z-sm-popover {
    z-index: 1060;
  }
}
@media (min-width: 768px) {
  .z-md-popover {
    z-index: 1060;
  }
}
@media (min-width: 992px) {
  .z-lg-popover {
    z-index: 1060;
  }
}
@media (min-width: 1200px) {
  .z-xl-popover {
    z-index: 1060;
  }
}
@media (min-width: 1560px) {
  .z-xx-popover {
    z-index: 1060;
  }
}
.z-tooltip {
  z-index: 1070;
}

@media (min-width: 576px) {
  .z-sm-tooltip {
    z-index: 1070;
  }
}
@media (min-width: 768px) {
  .z-md-tooltip {
    z-index: 1070;
  }
}
@media (min-width: 992px) {
  .z-lg-tooltip {
    z-index: 1070;
  }
}
@media (min-width: 1200px) {
  .z-xl-tooltip {
    z-index: 1070;
  }
}
@media (min-width: 1560px) {
  .z-xx-tooltip {
    z-index: 1070;
  }
}
body {
  --fs-value:1rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
@media (min-width: 1200px) {
  body {
    padding-left: 100px;
  }
}

img {
  user-select: none;
  object-fit: cover;
  object-position: center;
}

hr {
  border: 0;
}

iframe {
  max-width: 100%;
}

.h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.h2 {
  font-family: "Poppins", sans-serif;
}

.h3 {
  font-family: "Poppins", sans-serif;
}

.h4 {
  font-family: "Poppins", sans-serif;
}

.h5 {
  font-family: "Poppins", sans-serif;
}

.h6 {
  font-family: "Poppins", sans-serif;
}

p > *, ul > *, ol > *, ul li > *, ol li > *, time > *, label > *, table td > *, table th > *, span > *, mark > * {
  color: inherit;
}

ul.inset, ol.inset {
  list-style-position: outside;
}

ul.outset, ol.outset {
  list-style-position: inside;
}

.h1, .fs-xx {
  --fs-value: 1.875rem;
  font-size: var(--fs-value);
}
@media (min-width: 992px) {
  .h1, .fs-xx {
    --fs-value: 2.5rem;
  }
}

.h2, .fs-xl {
  --fs-value: 1.375rem;
  font-size: var(--fs-value);
}
@media (min-width: 992px) {
  .h2, .fs-xl {
    --fs-value: 1.75rem;
  }
}

.h3, .fs-lg {
  --fs-value: 1.25rem;
  font-size: var(--fs-value);
}
@media (min-width: 992px) {
  .h3, .fs-lg {
    --fs-value: 1.5rem;
  }
}

.h4, .fs-md {
  --fs-value: 1.125rem;
  font-size: var(--fs-value);
}
@media (min-width: 992px) {
  .h4, .fs-md {
    --fs-value: 1.25rem;
  }
}

.text, .fs-normal {
  --fs-value: 1rem;
  font-size: var(--fs-value);
}

.fs-small {
  --fs-value: calc(1rem * .75);
  font-size: var(--fs-value);
}

.fs-extrasmall {
  --fs-value: calc(1rem * .5);
  font-size: var(--fs-value);
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

.text-normal {
  font-weight: normal;
}

.text-semibold {
  font-weight: 600;
}

strong, b, .text-bold {
  font-weight: 700;
}

.text-bolder {
  font-weight: 800;
}

u, .text-underline, .hover-text-underline:hover {
  text-decoration: underline;
}

.box-underline {
  border: 0;
  border-bottom: 1px solid;
}

.hover-box-underline {
  border: 0;
}
.hover-box-underline:hover {
  border-bottom: 1px solid;
}

em, .style-italic {
  font-style: italic;
}

.style-oblique {
  font-style: oblique;
}

.style-normal {
  font-style: normal;
}

.paragraph-wrapper p:not(:last-child) {
  margin-bottom: calc(var(--fs-value) * 0.75);
}
.paragraph-wrapper li:not(:last-child) {
  margin-bottom: calc(var(--fs-value) * 0.75);
}

.round-container {
  border-radius: 50%;
  overflow: hidden;
}
.round-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.shrink-0 {
  flex-shrink: 0;
}

.shrink-1 {
  flex-shrink: 1;
}

.container {
  max-width: 1400px;
}
.container-fluid {
  max-width: 100%;
}
@media (min-width: 768px) {
  .container-lg {
    max-width: 1024px;
  }
}

.col {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col-auto {
  width: auto;
  max-width: 100%;
}

.col-1 {
  max-width: 8.3333333333%;
  flex: 0 0 8.3333333333%;
}

.col-2 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}

.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.col-4 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}

.col-5 {
  max-width: 41.6666666667%;
  flex: 0 0 41.6666666667%;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.col-7 {
  max-width: 58.3333333333%;
  flex: 0 0 58.3333333333%;
}

.col-8 {
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%;
}

.col-9 {
  max-width: 75%;
  flex: 0 0 75%;
}

.col-10 {
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%;
}

.col-11 {
  max-width: 91.6666666667%;
  flex: 0 0 91.6666666667%;
}

.col-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1560px) {
  .col-xx-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xx-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xx-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xx-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-xx-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xx-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xx-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-xx-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xx-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xx-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }
  .col-xx-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xx-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xx-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1_5 {
    max-width: 20%;
    flex: 0 0 20%;
  }
}

.uplace-custompage-header {
  max-width: 100%;
}
@media (min-width: 768px) {
  .uplace-custompage-header .h1 {
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .uplace-custompage-header .h1 {
    padding-left: 2.5rem;
  }
}

.uplace-custompage-footer p {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-style: normal;
  line-height: 1.8;
  font-size: 14px;
}
.uplace-custompage-footer .border-deco {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-separator {
  border: 0;
  border-top: 1px solid;
}

.logo-footer {
  max-width: 117px;
}

.attribute-row {
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .attribute-row {
    max-width: 100%;
  }
}

.attribute-buttons {
  max-width: 33.3333333333%;
}
@media (min-width: 768px) {
  .attribute-buttons {
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .attribute-buttons {
    max-width: 12.5%;
  }
}

.page-nav {
  left: 0;
  top: 0;
}
@media (min-width: 992px) {
  .page-nav {
    max-width: 100px;
    height: 100vh;
    padding-top: 2rem;
    padding-bootm: 1rem;
  }
}
.page-nav .nav-logo {
  max-width: 50px;
}
@media (min-width: 992px) {
  .page-nav .nav-logo {
    max-width: 39px;
  }
}
@media (min-width: 992px) {
  .page-nav .nav-wrapp {
    flex: 0 0 auto;
  }
}

.form input {
  border: 0;
}
.form .form-group label {
  user-select: none;
  cursor: pointer;
}

.multi-select-wrapper label, .input-text, .input-select {
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  border-radius: 9px;
  border: 1px solid;
}
.multi-select-wrapper label:focus, .input-text:focus, .input-select:focus {
  border: 1px solid calor_var("black");
  background-color: var(--c-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.multi-select-wrapper label:focus-visible, .input-text:focus-visible, .input-select:focus-visible {
  outline: 0;
}

input[type=checkbox], input[type=radio] {
  visibility: hidden;
  z-index: 0;
}

.input-label {
  cursor: pointer;
  user-select: none;
}

.input-container-label {
  width: calc(var(--fs-value) * 1.25);
  height: calc(var(--fs-value) * 1.25);
  font-size: calc(var(--fs-value) * 1.25);
  user-select: none;
  cursor: pointer;
}
.input-container-label input[type=checkbox], .input-container-label input[type=radio] {
  margin: auto;
}
.input-container-label i::after {
  display: block;
}
.input-hidden {
  display: none;
}

.multi-select-wrapper label {
  order: 0;
  width: 100%;
}
.multi-select-wrapper select {
  order: 1;
  position: absolute;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.multi-select-wrapper select:focus {
  position: relative;
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
.multi-select-wrapper select:focus + label {
  display: none !important;
}

.btn {
  user-select: none;
  border: 0;
  cursor: pointer;
}
.btn.disabled, .btn:disabled, .btn[disabled] {
  cursor: auto;
  pointer-events: none;
}
.btn.close {
  padding: 0;
  width: 1.5rem;
}

.menu-btn {
  background-color: transparent;
  color: var(--c-white);
  font-size: 1.5rem;
}

.side-sm-btn {
  fill: var(--c-white);
  display: block;
  width: 100%;
  max-width: 1.625rem;
  margin: 0 auto 0.75rem;
}
.side-sm-btn > svg {
  max-height: 1rem;
}

.icon-btn {
  background-color: transparent;
  width: 100%;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.125);
  color: var(--c-black);
}
.icon-btn:not(.hoverless):hover, .icon-btn:not(.sm-btn):hover {
  background-color: var(--c-sorrell-brown);
  color: var(--c-white);
}
.icon-btn:not(.hoverless):hover img, .icon-btn:not(.sm-btn):hover img {
  filter: saturate(0) brightness(10);
}
.icon-btn:not(.hoverless).active, .icon-btn:not(.hoverless):active, .icon-btn:not(.hoverless)[active], .icon-btn:not(.sm-btn).active, .icon-btn:not(.sm-btn):active, .icon-btn:not(.sm-btn)[active] {
  background-color: var(--c-sorrell-brown);
  color: var(--c-white);
}
.icon-btn:not(.hoverless).active img, .icon-btn:not(.hoverless):active img, .icon-btn:not(.hoverless)[active] img, .icon-btn:not(.sm-btn).active img, .icon-btn:not(.sm-btn):active img, .icon-btn:not(.sm-btn)[active] img {
  filter: saturate(0) brightness(10);
}

.sm-btn {
  width: 45px;
  height: 45px;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.125);
  color: var(--c-white);
}
.sm-btn:hover {
  filter: brightness(0.75);
}
.sm-btn img {
  max-height: 20px;
  max-width: 20px;
  filter: saturate(0) brightness(10);
  object-fit: contain;
}

.text-btn {
  padding: 0.75rem 1rem;
  background-color: var(--c-red);
}
.text-btn:hover {
  background-color: var(--c-black);
}

.scroll-top {
  top: auto;
  bottom: 10px;
  right: 10px;
  left: auto;
  gap: 0.5rem;
}
.scroll-top a {
  width: 45px;
  height: 45px;
}
.scroll-top a img, .scroll-top a svg {
  max-height: 100%;
}
.scroll-top .icono-whatsapp {
  align-items: center;
  background: #fff;
  background-color: #45d950;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 35px;
  border-radius: 50%;
  bottom: 80px;
  box-shadow: 0 0 11px #000;
  display: inline-block;
  display: flex;
  justify-content: center;
  position: fixed;
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0.25rem;
}
.scroll-top .to-top {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000;
}
.scroll-top .to-top.shown {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.main-menu {
  padding: 30px 3rem 30px 30px;
  height: 100vh;
  z-index: -1;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  .main-menu {
    padding: 50px 3rem 50px 50px;
  }
}
.main-menu.active {
  z-index: 10000;
  opacity: 1;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  visibility: visible;
}
@media (min-width: 1200px) {
  .main-menu .menu-col, .main-menu .menu-r-col {
    height: calc(100% - 80px);
  }
  .main-menu .menu-footer {
    max-height: 80px;
  }
}
.main-menu .close-btn-holder {
  width: 2.5rem;
  right: 0;
  top: 0;
  margin: 0 0.25rem;
}
.main-menu .close-btn-holder .close {
  border: 0;
  background-color: transparent;
}
.main-menu .menu-logo {
  max-width: 120px;
  margin-bottom: 35px;
}
@media (min-width: 1200px) {
  .main-menu .menu-logo {
    margin-bottom: 60px;
  }
}
.main-menu .menu-list li {
  padding: 12px 0;
}
.main-menu .menu-list a, .main-menu .menu-list span.fake-link {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.main-menu .menu-img {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  width: calc(100% + 1.5rem);
}
@media (max-width: 1199px) {
  .main-menu .menu-img:before {
    content: "";
    display: block;
    padding-top: 96.7741935484%;
  }
}
.square-index {
  width: 2rem;
}
.square-index:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}

.results-cotent {
  padding: 3rem 0px;
}
.results-cotent .view-button {
  cursor: pointer;
  background-color: none;
  position: absolute;
  width: 110px;
  height: 50px;
  background-color: transparent;
  border: none;
  margin: auto;
  outline: 0;
}
.results-cotent .view-button.top {
  top: 0%;
  left: 0;
  right: 0;
}
.results-cotent .view-button.bottom {
  bottom: 0%;
  left: 0;
  right: 0;
}
.results-cotent .view-button.left {
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 70px;
}
@media (min-width: 1200px) {
  .results-cotent .view-button.left {
    left: 0%;
  }
}
.results-cotent .view-button.right {
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 70px;
}
@media (min-width: 1200px) {
  .results-cotent .view-button.right {
    right: 0;
  }
}

.apartament_structure {
  max-width: 70%;
}
.apartament_structure:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.apartament_structure svg {
  position: absolute;
  margin: auto;
}

.detailed-room {
  max-width: 720px;
}

.mdicon {
  display: inline-block;
  vertical-align: middle;
}

.btn .mdicon {
  font-size: 24px;
}

.mdicon {
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: mdicon !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.mdicon-schedule:before {
  content: "\e8b5";
}

.mdicon-add_circle:before {
  content: "\e147";
}

.mdicon-apps:before {
  content: "\e5c3";
}

.mdicon-arrow_back:before {
  content: "\e5c4";
}

.mdicon-arrow_downward:before {
  content: "\e5db";
}

.mdicon-arrow_drop_down:before {
  content: "\e5c5";
}

.mdicon-arrow_drop_up:before {
  content: "\e5c7";
}

.mdicon-arrow_forward:before {
  content: "\e5c8";
}

.mdicon-arrow_upward:before {
  content: "\e5d8";
}

.mdicon-audiotrack:before {
  content: "\e3a1";
}

.mdicon-border_color:before {
  content: "\e22b";
}

.mdicon-cached:before {
  content: "\e86a";
}

.mdicon-chat_bubble:before {
  content: "\e0ca";
}

.mdicon-chat_bubble_outline:before {
  content: "\e0cb";
}

.mdicon-navigate_before:before {
  content: "\e408";
}

.mdicon-navigate_next:before {
  content: "\e409";
}

.mdicon-close:before {
  content: "\e5cd";
}

.mdicon-mode_edit:before {
  content: "\e254";
}

.mdicon-crop_original:before {
  content: "\e3c4";
}

.mdicon-dehaze:before {
  content: "\e3c7";
}

.mdicon-remove_circle:before {
  content: "\e15c";
}

.mdicon-expand_less:before {
  content: "\e5ce";
}

.mdicon-expand_more:before {
  content: "\e5cf";
}

.mdicon-extension:before {
  content: "\e87b";
}

.mdicon-favorite:before {
  content: "\e87d";
}

.mdicon-favorite_border:before {
  content: "\e87e";
}

.mdicon-get_app:before {
  content: "\e884";
}

.mdicon-filter:before {
  content: "\e3d3";
}

.mdicon-flash_on:before {
  content: "\e3e7";
}

.mdicon-folder:before {
  content: "\e2c7";
}

.mdicon-folder_open:before {
  content: "\e2c8";
}

.mdicon-star:before {
  content: "\e838";
}

.mdicon-home:before {
  content: "\e88a";
}

.mdicon-open_in_new:before {
  content: "\e89e";
}

.mdicon-shopping_cart:before {
  content: "\e8cc";
}

.mdicon-local_offer:before {
  content: "\e54e";
}

.mdicon-mail_outline:before {
  content: "\e0e1";
}

.mdicon-menu:before {
  content: "\e5d2";
}

.mdicon-more_horiz:before {
  content: "\e5d3";
}

.mdicon-more_vert:before {
  content: "\e5d4";
}

.mdicon-person:before {
  content: "\e7fd";
}

.mdicon-play_arrow:before {
  content: "\e037";
}

.mdicon-play_circle_filled:before {
  content: "\e038";
}

.mdicon-play_circle_outline:before {
  content: "\e039";
}

.mdicon-public:before {
  content: "\e80b";
}

.mdicon-visibility:before {
  content: "\e8f4";
}

.mdicon-reply:before {
  content: "\e15e";
}

.mdicon-rss_feed:before {
  content: "\e0e5";
}

.mdicon-search:before {
  content: "\e8b6";
}

.mdicon-share:before {
  content: "\e80d";
}

.mdicon-shuffle:before {
  content: "\e043";
}

.mdicon-star_border:before {
  content: "\e83a";
}

.mdicon-star_half:before {
  content: "\e839";
}

.mdicon-thumb_up:before {
  content: "\e8dc";
}

.mdicon-trending_up:before {
  content: "\e8e5";
}

.mdicon-chevron-thin-down:before {
  content: "\e902";
}

.mdicon-chevron-thin-left:before {
  content: "\e900";
}

.mdicon-chevron-thin-right:before {
  content: "\e901";
}

.mdicon-chevron-thin-up:before {
  content: "\e903";
}

.mdicon-fire:before {
  content: "\e9a9";
}

.mdicon-enter:before {
  content: "\ea13";
}

.mdicon-telegram:before {
  content: "\ea95";
}

.mdicon-spinner2:before {
  content: "\e97b";
}

.mdicon-youtube-square:before {
  content: "\f166";
}

.mdicon-youtube:before {
  content: "\f167";
}

.mdicon-twitter:before {
  content: "\f099";
}

.mdicon-facebook-f:before,
.mdicon-facebook:before {
  content: "\f09a";
}

.mdicon-google-plus:before {
  content: "\f0d5";
}

.mdicon-linkedin:before {
  content: "\f0e1";
}

.mdicon-xing:before {
  content: "\f168";
}

.mdicon-youtube-play:before {
  content: "\f16a";
}

.mdicon-instagram:before {
  content: "\f16d";
}

.mdicon-tumblr:before {
  content: "\f173";
}

.mdicon-dribbble:before {
  content: "\f17d";
}

.mdicon-skype:before {
  content: "\f17e";
}

.mdicon-foursquare:before {
  content: "\f180";
}

.mdicon-vk:before {
  content: "\f189";
}

.mdicon-stumbleupon:before {
  content: "\f1a4";
}

.mdicon-behance:before {
  content: "\f1b4";
}

.mdicon-spotify:before {
  content: "\f1bc";
}

.mdicon-deviantart:before {
  content: "\f1bd";
}

.mdicon-soundcloud:before {
  content: "\f1be";
}

.mdicon-vine:before {
  content: "\f1ca";
}

.mdicon-codepen:before {
  content: "\f1cb";
}

.mdicon-twitch:before {
  content: "\f1e8";
}

.mdicon-yelp:before {
  content: "\f1e9";
}

.mdicon-pinterest-p:before {
  content: "\f231";
}

.mdicon-medium:before {
  content: "\f23a";
}

.mdicon-vimeo:before {
  content: "\f27d";
}

.mdicon-product-hunt:before {
  content: "\f288";
}

.mdicon-snapchat-ghost:before {
  content: "\f2ac";
}

.mdicon-exit2:before {
  content: "\ea15";
}

.mdicon-person_pin:before {
  content: "\e55a";
}

.mdicon-sign-out:before {
  content: "\f08b";
}

.mdicon-sort-asc:before,
.mdicon-sort-up:before {
  content: "\f0de";
}

.mdicon-envelope:before {
  content: "\f0e0";
}

.mdicon-linkedin1:before {
  content: "\f0e2";
}

.mdicon-rotate-left:before,
.mdicon-undo:before {
  content: "\f0e3";
}

.mdicon-gavel:before,
.mdicon-legal:before {
  content: "\f0e4";
}

.mdicon-dashboard:before,
.mdicon-tachometer:before {
  content: "\f0e5";
}

.mdicon-comment-o:before {
  content: "\f0e6";
}

.mdicon-comments-o:before {
  content: "\f0e7";
}

.mdicon-cloud-download:before {
  content: "\f0ed";
}

.mdicon-cloud-upload:before {
  content: "\f0ee";
}

.mdicon-user-md:before {
  content: "\f0f0";
}

.mdicon-stethoscope:before {
  content: "\f0f1";
}

.mdicon-suitcase:before {
  content: "\f0f2";
}

.mdicon-bell:before {
  content: "\f0f3";
}

.mdicon-coffee:before {
  content: "\f0f4";
}

.mdicon-cutlery:before {
  content: "\f0f5";
}

.mdicon-beer:before {
  content: "\f0fc";
}

.mdicon-h-square:before {
  content: "\f0fd";
}

.mdicon-plus-square:before {
  content: "\f0fe";
}

.mdicon-angle-double-left:before {
  content: "\f100";
}

.mdicon-angle-double-right:before {
  content: "\f101";
}

.mdicon-angle-double-up:before {
  content: "\f102";
}

.mdicon-angle-double-down:before {
  content: "\f103";
}

.mdicon-angle-left:before {
  content: "\f104";
}

.mdicon ~ span {
  vertical-align: middle;
}

.mdicon--first {
  margin-right: 0.35em;
}

.mdicon--last {
  margin-left: 0.35em;
}

.icon-behance,
.icon-dribbble,
.icon-facebook,
.icon-facebook-official,
.icon-google-plus,
.icon-linkedin,
.icon-pinterest_p,
.icon-soundcloud,
.icon-stumbleupon,
.icon-tumbler,
.icon-twitch,
.icon-twitter,
.icon-vimeo,
.icon-vine,
.icon-vk,
.icon-youtube {
  font-size: 1em;
}

.icon--2x.icon--2x {
  font-size: 200%;
}

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