

.carousel {
    position: relative
}

    .carousel.pointer-event {
        -ms-touch-action: pan-y;
        touch-action: pan-y
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: ""
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: block
}

    .active.carousel-item-right, .carousel-item-next:not(.carousel-item-left) {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    .active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right) {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
        transition: none
    }
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next, .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

    .carousel-indicators li {
        box-sizing: content-box;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease
    }

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #28a745 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .2rem !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-lg {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

    .embed-responsive::before {
        display: block;
        content: ""
    }

    .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width:576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width:768px) {
    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media (min-width:992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width:1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

.mt-0, .my-0 {
    margin-top: 0 !important
}

.mr-0, .mx-0 {
    margin-right: 0 !important
}

.mb-0, .my-0 {
    margin-bottom: 0 !important
}

.ml-0, .mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1, .my-1 {
    margin-top: .25rem !important
}

.mr-1, .mx-1 {
    margin-right: .25rem !important
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important
}

.ml-1, .mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2, .my-2 {
    margin-top: .5rem !important
}

.mr-2, .mx-2 {
    margin-right: .5rem !important
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important
}

.ml-2, .mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3, .my-3 {
    margin-top: 1rem !important
}

.mr-3, .mx-3 {
    margin-right: 1rem !important
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important
}

.ml-3, .mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5, .my-5 {
    margin-top: 3rem !important
}

.mr-5, .mx-5 {
    margin-right: 3rem !important
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important
}

.ml-5, .mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0, .py-0 {
    padding-top: 0 !important
}

.pr-0, .px-0 {
    padding-right: 0 !important
}

.pb-0, .py-0 {
    padding-bottom: 0 !important
}

.pl-0, .px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1, .py-1 {
    padding-top: .25rem !important
}

.pr-1, .px-1 {
    padding-right: .25rem !important
}

.pb-1, .py-1 {
    padding-bottom: .25rem !important
}

.pl-1, .px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2, .py-2 {
    padding-top: .5rem !important
}

.pr-2, .px-2 {
    padding-right: .5rem !important
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important
}

.pl-2, .px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3, .py-3 {
    padding-top: 1rem !important
}

.pr-3, .px-3 {
    padding-right: 1rem !important
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important
}

.pl-3, .px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5, .py-5 {
    padding-top: 3rem !important
}

.pr-5, .px-5 {
    padding-right: 3rem !important
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important
}

.pl-5, .px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1, .my-n1 {
    margin-top: -.25rem !important
}

.mr-n1, .mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1, .my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1, .mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2, .my-n2 {
    margin-top: -.5rem !important
}

.mr-n2, .mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2, .my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2, .mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3, .my-n3 {
    margin-top: -1rem !important
}

.mr-n3, .mx-n3 {
    margin-right: -1rem !important
}

.mb-n3, .my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3, .mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4, .my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4, .mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4, .my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4, .mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5, .my-n5 {
    margin-top: -3rem !important
}

.mr-n5, .mx-n5 {
    margin-right: -3rem !important
}

.mb-n5, .my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5, .mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto, .my-auto {
    margin-top: auto !important
}

.mr-auto, .mx-auto {
    margin-right: auto !important
}

.mb-auto, .my-auto {
    margin-bottom: auto !important
}

.ml-auto, .mx-auto {
    margin-left: auto !important
}

@media (min-width:576px) {
    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0, .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0, .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0, .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0, .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1, .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1, .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1, .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1, .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2, .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2, .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2, .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2, .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3, .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3, .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3, .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3, .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4, .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4, .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4, .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4, .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5, .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5, .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5, .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5, .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0, .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0, .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0, .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0, .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1, .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1, .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1, .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1, .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2, .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2, .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2, .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2, .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3, .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3, .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3, .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3, .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4, .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4, .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4, .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4, .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5, .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5, .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5, .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5, .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1, .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1, .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1, .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1, .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2, .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2, .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2, .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2, .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3, .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3, .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3, .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3, .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4, .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4, .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4, .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4, .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5, .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5, .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5, .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5, .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto, .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto, .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto, .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto, .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width:768px) {
    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0, .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0, .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0, .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0, .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1, .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1, .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1, .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1, .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2, .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2, .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2, .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2, .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3, .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3, .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3, .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3, .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4, .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4, .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4, .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4, .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5, .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5, .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5, .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0, .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0, .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0, .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0, .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1, .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1, .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1, .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1, .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2, .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2, .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2, .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3, .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3, .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3, .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3, .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4, .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4, .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4, .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5, .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5, .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5, .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1, .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1, .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1, .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1, .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2, .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2, .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2, .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2, .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3, .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3, .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3, .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3, .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4, .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4, .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4, .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4, .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5, .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5, .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5, .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5, .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto, .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto, .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto, .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width:992px) {
    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0, .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0, .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0, .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1, .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1, .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1, .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1, .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2, .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2, .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2, .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2, .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3, .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3, .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3, .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3, .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4, .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4, .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4, .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4, .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5, .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5, .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0, .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0, .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0, .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0, .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1, .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1, .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1, .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1, .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2, .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2, .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2, .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2, .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3, .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3, .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3, .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4, .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4, .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4, .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4, .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5, .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5, .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5, .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5, .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1, .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1, .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1, .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1, .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2, .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2, .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2, .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2, .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3, .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3, .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3, .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3, .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4, .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4, .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4, .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4, .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5, .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5, .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5, .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5, .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto, .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto, .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto, .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto, .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width:1200px) {
    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0, .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0, .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0, .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0, .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1, .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1, .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1, .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1, .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2, .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2, .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2, .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2, .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3, .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3, .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3, .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3, .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4, .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4, .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4, .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4, .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5, .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5, .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5, .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5, .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0, .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0, .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0, .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0, .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1, .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1, .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1, .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1, .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2, .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2, .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2, .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2, .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3, .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3, .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3, .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3, .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4, .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4, .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4, .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4, .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5, .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5, .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1, .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1, .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1, .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1, .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2, .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2, .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2, .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2, .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3, .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3, .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3, .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3, .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4, .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4, .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4, .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4, .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5, .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5, .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5, .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5, .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto, .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto, .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto, .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto, .mx-xl-auto {
        margin-left: auto !important
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0)
}

.text-monospace {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width:576px) {
    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus, a.text-primary:hover {
    color: #0056b3 !important
}

.text-secondary {
    color: #6c757d !important
}

a.text-secondary:focus, a.text-secondary:hover {
    color: #494f54 !important
}

.text-success {
    color: #28a745 !important
}

a.text-success:focus, a.text-success:hover {
    color: #19692c !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:focus, a.text-info:hover {
    color: #0f6674 !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:focus, a.text-warning:hover {
    color: #ba8b00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:focus, a.text-danger:hover {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:focus, a.text-light:hover {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:focus, a.text-dark:hover {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media print {
    *, ::after, ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote, pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

        .table td, .table th {
            background-color: #fff !important
        }

    .table-bordered td, .table-bordered th {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

        .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th {
            border-color: #dee2e6
        }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6
    }
}
/*# sourceMappingURL=bootstrap.min.css.map */

/*!
 * Bootstrap-select v1.13.18 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2020 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */ @-webkit-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

.bootstrap-select > select.bs-select-hidden, select.bs-select-hidden, select.selectpicker {
    display: none !important
}

.bootstrap-select {
    width: 220px\0;
    vertical-align: middle
}

    .bootstrap-select > .dropdown-toggle {
        position: relative;
        width: 100%;
        text-align: right;
        white-space: nowrap;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

        .bootstrap-select > .dropdown-toggle:after {
            margin-top: -1px
        }

        .bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
            color: #999
        }

            .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
                color: rgba(255,255,255,.5)
            }

    .bootstrap-select > select {
        position: absolute !important;
        bottom: 0;
        left: 50%;
        display: block !important;
        width: .5px !important;
        height: 100% !important;
        padding: 0 !important;
        opacity: 0 !important;
        border: none;
        z-index: 0 !important
    }

        .bootstrap-select > select.mobile-device {
            top: 0;
            left: 0;
            display: block !important;
            width: 100% !important;
            z-index: 2 !important
        }

    .bootstrap-select.is-invalid .dropdown-toggle, .error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle, .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
        border-color: #b94a48
    }

    .bootstrap-select.is-valid .dropdown-toggle, .was-validated .bootstrap-select select:valid + .dropdown-toggle {
        border-color: #28a745
    }

    .bootstrap-select.fit-width {
        width: auto !important
    }

    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 220px
    }

    .bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
        outline: thin dotted #333 !important;
        outline: 5px auto -webkit-focus-ring-color !important;
        outline-offset: -2px
    }

    .bootstrap-select.form-control {
        margin-bottom: 0;
        padding: 0;
        border: none;
        height: auto
    }

:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    float: none;
    z-index: auto
}

.form-inline .bootstrap-select, .form-inline .bootstrap-select.form-control:not([class*=col-]) {
    width: auto
}

.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0
}

    .bootstrap-select.dropdown-menu-right, .bootstrap-select[class*=col-].dropdown-menu-right, .row .bootstrap-select[class*=col-].dropdown-menu-right {
        float: right
    }

.form-group .bootstrap-select, .form-horizontal .bootstrap-select, .form-inline .bootstrap-select {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.form-control, .form-group-sm .bootstrap-select.form-control {
    padding: 0
}

    .form-group-lg .bootstrap-select.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
        height: 100%;
        font-size: inherit;
        line-height: inherit;
        border-radius: inherit
    }

.bootstrap-select.form-control-lg .dropdown-toggle, .bootstrap-select.form-control-sm .dropdown-toggle {
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: .25rem .5rem
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    padding: .5rem 1rem
}

.form-inline .bootstrap-select .form-control {
    width: 100%
}

.bootstrap-select.disabled, .bootstrap-select > .disabled {
    cursor: not-allowed
}

    .bootstrap-select.disabled:focus, .bootstrap-select > .disabled:focus {
        outline: 0 !important
    }

.bootstrap-select.bs-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 0 !important;
    padding: 0 !important
}

    .bootstrap-select.bs-container .dropdown-menu {
        z-index: 1060
    }

.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.bs3.bootstrap-select .dropdown-toggle .filter-option {
    padding-right: inherit
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
    position: absolute;
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    float: none
}

    .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
        padding-right: inherit
    }

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .filter-expand {
    width: 0 !important;
    float: left;
    opacity: 0 !important;
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
    border-radius: inherit
}

.bootstrap-select[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    .bootstrap-select .dropdown-menu > .inner:focus {
        outline: 0 !important
    }

    .bootstrap-select .dropdown-menu.inner {
        position: static;
        float: none;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .bootstrap-select .dropdown-menu li {
        position: relative
    }

        .bootstrap-select .dropdown-menu li.active small {
            color: rgba(255,255,255,.5) !important
        }

        .bootstrap-select .dropdown-menu li.disabled a {
            cursor: not-allowed
        }

        .bootstrap-select .dropdown-menu li a {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

            .bootstrap-select .dropdown-menu li a.opt {
                position: relative;
                padding-left: 2.25em
            }

            .bootstrap-select .dropdown-menu li a span.check-mark {
                display: none
            }

            .bootstrap-select .dropdown-menu li a span.text {
                display: inline-block
            }

        .bootstrap-select .dropdown-menu li small {
            padding-left: .5em
        }

    .bootstrap-select .dropdown-menu .notify {
        position: absolute;
        bottom: 5px;
        width: 96%;
        margin: 0 2%;
        min-height: 26px;
        padding: 3px 5px;
        background: #f5f5f5;
        border: 1px solid #e3e3e3;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
        pointer-events: none;
        opacity: .9;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

        .bootstrap-select .dropdown-menu .notify.fadeOut {
            -webkit-animation: .3s linear 750ms forwards bs-notify-fadeOut;
            -o-animation: .3s linear 750ms forwards bs-notify-fadeOut;
            animation: .3s linear 750ms forwards bs-notify-fadeOut
        }

.bootstrap-select .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
    position: static;
    display: inline;
    padding: 0
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner, .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
    display: inline
}

.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
    content: '\00a0'
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    top: 5px
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select .bs-ok-default:after {
    content: '';
    display: block;
    width: .5em;
    height: 1em;
    border-style: solid;
    border-width: 0 .26em .26em 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204,204,204,.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
    bottom: auto;
    top: -4px;
    border-top: 7px solid rgba(204,204,204,.2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
    bottom: auto;
    top: -4px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {
    display: block
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
    padding: 4px 8px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    .bs-actionsbox .btn-group button {
        width: 50%
    }

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    .bs-donebutton .btn-group button {
        width: 100%
    }

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none
}

/*Icons.css*/
@font-face {
    font-family: houzez-iconfont;
    src: url(../fonts/houzez-iconfont.eot?jd28ud);
    src: url(../fonts/houzez-iconfont.eot?jd28ud#iefix) format('embedded-opentype'),url(../fonts/houzez-iconfont.ttf?jd28ud) format('truetype'),url(../fonts/houzez-iconfont.woff?jd28ud) format('woff'),url(../fonts/houzez-iconfont.svg?jd28ud#houzez-iconfont) format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: block
}

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

.real-estate-dimensions-block:before {
    content: "\e95f"
}

.arrow-button-left-1:before {
    content: "\e95d"
}

.arrow-button-right-1:before {
    content: "\e95e"
}

.icon-designer-community-behance:before {
    content: "\e95b"
}

.icon-phone-actions-ring:before {
    content: "\e95a"
}

.icon-earth-1:before {
    content: "\e926"
}

.icon-subtract:before {
    content: "\e92e"
}

.icon-floppy-disk:before {
    content: "\e920"
}

.icon-hotel-double-bed-1:before {
    content: "\e91f"
}

.icon-subtract-circle:before {
    content: "\e959"
}

.icon-dislike:before {
    content: "\e957"
}

.icon-like:before {
    content: "\e958"
}

.icon-close-quote:before {
    content: "\e956"
}

.icon-print-text:before {
    content: "\e955"
}

.icon-messaging-whatsapp:before {
    content: "\e953"
}

.icon-mobile-phone:before {
    content: "\e954"
}

.icon-messages-bubble:before {
    content: "\e92a"
}

.icon-real-estate-dimensions-map:before {
    content: "\e952"
}

.icon-share:before {
    content: "\e951"
}

.icon-layout-bullets:before {
    content: "\e94f"
}

.icon-layout-module-1:before {
    content: "\e950"
}

.icon-house-nature:before {
    content: "\e94e"
}

.icon-real-estate-dimensions-plan-1:before {
    content: "\e94d"
}

.icon-upload-button:before {
    content: "\e94c"
}

.icon-picture-sun:before {
    content: "\e94b"
}

.icon-close:before {
    content: "\e94a"
}

.icon-pencil:before {
    content: "\e949"
}

.icon-download-bottom:before {
    content: "\e948"
}

.icon-accounting-document:before {
    content: "\e900"
}

.icon-add-circle:before {
    content: "\e901"
}

.icon-add-square:before {
    content: "\e902"
}

.icon-add:before {
    content: "\e903"
}

.icon-alarm-bell:before {
    content: "\e904"
}

.icon-analytics-bars-circle:before {
    content: "\e905"
}

.icon-analytics-bars:before {
    content: "\e906"
}

.icon-answer-machine:before {
    content: "\e907"
}

.icon-arrow-button-circle-down:before {
    content: "\e908"
}

.icon-arrow-button-circle-left:before {
    content: "\e909"
}

.icon-arrow-button-circle-right:before {
    content: "\e90a"
}

.icon-arrow-button-circle-up:before {
    content: "\e90b"
}

.icon-arrow-button-down-2:before {
    content: "\e90c"
}

.icon-arrow-button-left-2:before {
    content: "\e90d"
}

.icon-arrow-button-right-2:before {
    content: "\e90e"
}

.icon-arrow-button-up-2:before {
    content: "\e90f"
}

.icon-arrow-down-1:before {
    content: "\e910"
}

.icon-arrow-left-1:before {
    content: "\e911"
}

.icon-arrow-right-1:before {
    content: "\e912"
}

.icon-arrow-up-1:before {
    content: "\e913"
}

.icon-attachment:before {
    content: "\e914"
}

.icon-bathroom-shower-1:before {
    content: "\e915"
}

.icon-building-cloudy:before {
    content: "\e916"
}

.icon-calendar-3:before {
    content: "\e917"
}

.icon-camera-1:before {
    content: "\e918"
}

.icon-car-1:before {
    content: "\e919"
}

.icon-check-circle-1:before {
    content: "\e91a"
}

.icon-cog:before {
    content: "\e91b"
}

.icon-email-action-reply:before {
    content: "\e91c"
}

.icon-envelope:before {
    content: "\e91d"
}

.icon-expand-3:before {
    content: "\e91e"
}

.icon-hyperlink-3:before {
    content: "\e921"
}

.icon-layout-dashboard:before {
    content: "\e922"
}

.icon-location-target:before {
    content: "\e923"
}

.icon-location-user:before {
    content: "\e924"
}

.icon-lock-5:before {
    content: "\e925"
}

.icon-love-it-remove:before {
    content: "\e927"
}

.icon-love-it:before {
    content: "\e928"
}

.icon-maps:before {
    content: "\e929"
}

.icon-move-expand-vertical:before {
    content: "\e92b"
}

.icon-move-left-right:before {
    content: "\e92c"
}

.icon-navigation-menu:before {
    content: "\e92d"
}

.icon-pencil-circle:before {
    content: "\e92f"
}

.icon-phone:before {
    content: "\e930"
}

.icon-pin:before {
    content: "\e931"
}

.icon-professional-network-linkedin:before {
    content: "\e932"
}

.icon-rating-half-star:before {
    content: "\e933"
}

.icon-rating-star:before {
    content: "\e934"
}

.icon-remove-circle:before {
    content: "\e935"
}

.icon-ruler-triangle:before {
    content: "\e936"
}

.icon-search:before {
    content: "\e937"
}

.icon-sign-badge-circle:before {
    content: "\e938"
}

.icon-single-neutral-circle:before {
    content: "\e939"
}

.icon-single-neutral:before {
    content: "\e93a"
}

.icon-social-instagram:before {
    content: "\e93b"
}

.icon-social-media-facebook:before {
    content: "\e93c"
}

.icon-social-media-google-plus-1:before {
    content: "\e93d"
}

.icon-social-media-twitter:before {
    content: "\e93e"
}

.icon-social-media-yelp:before {
    content: "\e93f"
}

.icon-social-pinterest:before {
    content: "\e940"
}

.icon-social-video-vimeo:before {
    content: "\e941"
}

.icon-social-video-youtube-clip:before {
    content: "\e942"
}

.icon-tags:before {
    content: "\e943"
}

.icon-task-list-plain-1:before {
    content: "\e944"
}

.icon-task-list-text-1:before {
    content: "\e945"
}

.icon-time-clock-circle:before {
    content: "\e946"
}

.icon-video-meeting-skype:before {
    content: "\e947"
}
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */ .lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.lightSlider:after, .lightSlider:before {
    content: " ";
    display: table
}

.lightSlider {
    overflow: hidden;
    margin: 0
}

.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative
}

    .lSSlideWrapper > .lightSlider:after {
        clear: both
    }

    .lSSlideWrapper .lSSlide {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
        -webkit-transition: all 1s;
        -webkit-transition-property: -webkit-transform,height;
        -moz-transition-property: -moz-transform,height;
        transition-property: transform,height;
        -webkit-transition-duration: inherit !important;
        transition-duration: inherit !important;
        -webkit-transition-timing-function: inherit !important;
        transition-timing-function: inherit !important
    }

    .lSSlideWrapper .lSFade {
        position: relative
    }

        .lSSlideWrapper .lSFade > * {
            position: absolute !important;
            top: 0;
            left: 0;
            z-index: 9;
            margin-right: 0;
            width: 100%
        }

    .lSSlideWrapper.usingCss .lSFade > * {
        opacity: 0;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transition-duration: inherit !important;
        transition-duration: inherit !important;
        -webkit-transition-property: opacity;
        transition-property: opacity;
        -webkit-transition-timing-function: inherit !important;
        transition-timing-function: inherit !important
    }

    .lSSlideWrapper .lSFade > .active {
        z-index: 10
    }

    .lSSlideWrapper.usingCss .lSFade > .active {
        opacity: 1
    }

.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center
}

    .lSSlideOuter .lSPager.lSpg > li {
        cursor: pointer;
        display: inline-block;
        padding: 0 5px
    }

        .lSSlideOuter .lSPager.lSpg > li a {
            background-color: #222;
            border-radius: 30px;
            display: inline-block;
            height: 8px;
            overflow: hidden;
            text-indent: -999em;
            width: 8px;
            position: relative;
            z-index: 99;
            -webkit-transition: all .5s linear 0s;
            transition: all .5s linear 0s
        }

        .lSSlideOuter .lSPager.lSpg > li.active a, .lSSlideOuter .lSPager.lSpg > li:hover a {
            background-color: #428bca
        }

.lSSlideOuter .media {
    opacity: .8
}

    .lSSlideOuter .media.active {
        opacity: 1
    }

.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .lSSlideOuter .lSPager.lSGallery li {
        overflow: hidden;
        -webkit-transition: border-radius .12s linear 0s .35s linear 0s;
        transition: border-radius .12s linear 0s .35s linear 0s
    }

    .lSSlideOuter .lSPager.lSGallery img {
        display: block;
        height: auto;
        max-width: 100%
    }

    .lSSlideOuter .lSPager.lSGallery:after, .lSSlideOuter .lSPager.lSGallery:before {
        content: " ";
        display: table
    }

    .lSSlideOuter .lSPager.lSGallery:after {
        clear: both
    }

.lSAction > a {
    display: block;
    top: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: .5;
    -webkit-transition: opacity .35s linear 0s;
    transition: opacity .35s linear 0s
}

    .lSAction > a:hover {
        opacity: 1
    }

.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px
}

.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px
}

.lSAction > a.disabled {
    pointer-events: none
}

.cS-hidden {
    height: 1px;
    opacity: 0;
    overflow: hidden
}

.lSSlideOuter.vertical {
    position: relative
}

    .lSSlideOuter.vertical.noPager {
        padding-right: 0 !important
    }

    .lSSlideOuter.vertical .lSGallery {
        position: absolute !important;
        right: 0;
        top: 0
    }

    .lSSlideOuter.vertical .lightSlider > * {
        width: 100% !important;
        max-width: none !important
    }

    .lSSlideOuter.vertical .lSAction > a {
        left: 50%;
        margin-left: -14px;
        margin-top: 0
    }

    .lSSlideOuter.vertical .lSAction > .lSNext {
        background-position: 31px -31px;
        bottom: 10px;
        top: auto
    }

    .lSSlideOuter.vertical .lSAction > .lSPrev {
        background-position: 0 -31px;
        bottom: auto;
        top: 10px
    }

.lSSlideOuter.lSrtl {
    direction: rtl
}

.lSSlideOuter .lSPager, .lSSlideOuter .lightSlider {
    padding-left: 0;
    list-style: none outside none
}

.lSSlideOuter.lSrtl .lSPager, .lSSlideOuter.lSrtl .lightSlider {
    padding-right: 0
}

.lSSlideOuter .lSGallery li, .lSSlideOuter .lightSlider > * {
    float: left
}

.lSSlideOuter.lSrtl .lSGallery li, .lSSlideOuter.lSrtl .lightSlider > * {
    float: right !important
}

@-webkit-keyframes rightEnd {
    0% {
        left: 0
    }

    50% {
        left: -15px
    }

    100% {
        left: 0
    }
}

@keyframes rightEnd {
    0% {
        left: 0
    }

    50% {
        left: -15px
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes topEnd {
    0% {
        top: 0
    }

    50% {
        top: -15px
    }

    100% {
        top: 0
    }
}

@keyframes topEnd {
    0% {
        top: 0
    }

    50% {
        top: -15px
    }

    100% {
        top: 0
    }
}

@-webkit-keyframes leftEnd {
    0% {
        left: 0
    }

    50% {
        left: 15px
    }

    100% {
        left: 0
    }
}

@keyframes leftEnd {
    0% {
        left: 0
    }

    50% {
        left: 15px
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0
    }

    50% {
        bottom: -15px
    }

    100% {
        bottom: 0
    }
}

@keyframes bottomEnd {
    0% {
        bottom: 0
    }

    50% {
        bottom: -15px
    }

    100% {
        bottom: 0
    }
}

.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
    position: relative
}

.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
    position: relative
}

.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd .3s;
    animation: topEnd .3s;
    position: relative
}

.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd .3s;
    animation: bottomEnd .3s;
    position: relative
}

.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
    position: relative
}

.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
    position: relative
}

.lightSlider.lsGrab > * {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.lightSlider.lsGrabbing > * {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing
}
/*Slick Min*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

    .slick-list:focus {
        outline: 0
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand
    }

.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

    .slick-track:after, .slick-track:before {
        display: table;
        content: ''
    }

    .slick-track:after {
        clear: both
    }

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-next, .slick-prev {
    position: absolute;
    font-size: 0;
    top: 50%;
    padding: 4px 0px 0 0px;
    border: none;
    line-height: 0;
    transform: translate(0,-50%);
    outline: 0;
    color: #fff
}
/*Slick Theme Min*/
.slick-loading .slick-list {
    background: #fff url("ajax-loader.gif") center center no-repeat
}

@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url("fonts/slick.eot");
    src: url("fonts/slickd41d.eot?#iefix") format("embedded-opentype"),url("fonts/slick.woff") format("woff"),url("fonts/slick.ttf") format("truetype"),url("fonts/slick.svg#slick") format("svg")
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        color: transparent;
        outline: none;
        background: transparent
    }

        .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
            opacity: 1
        }

    .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
        opacity: .25
    }

    .slick-prev:before, .slick-next:before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        opacity: .75;
        color: white;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

.slick-prev {
    left: -25px
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

[dir='rtl'] .slick-prev:before {
    content: '→'
}

.slick-next {
    right: -25px
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: '→'
}

[dir='rtl'] .slick-next:before {
    content: '←'
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: transparent
        }

            .slick-dots li button:hover, .slick-dots li button:focus {
                outline: none
            }

                .slick-dots li button:hover:before, .slick-dots li button:focus:before {
                    opacity: 1
                }

            .slick-dots li button:before {
                font-family: 'slick';
                font-size: 6px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: black;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: black
        }
/*Radio Checkbox*/
.control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    padding: 30px;
    width: 200px;
    height: 210px;
    margin: 10px
}

@charset "UTF-8";


.dashboard-mobile-edit-menu-wrap .bootstrap-select .dropdown-menu.show {
    -webkit-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
    top: 44px !important
}

.menu-edit-property i {
    font-size: 10px;
    top: -1px
}

.upload-media-gallery {
    margin-top: 10px
}

    .upload-media-gallery .row {
        margin-left: -5px;
        margin-right: -5px
    }

    .upload-media-gallery div[class*=col-] {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 12px
    }

.media-drag-drop {
    background-color: #eff1f1;
    border: 3px dashed #dce0e0;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 15px;
    font-weight: 700
}

    .media-drag-drop span {
        font-weight: 400
    }

    .media-drag-drop div {
        margin: 0 0 20px
    }

.upload-gallery-thumb-buttons {
    border: 1px solid #dce0e0;
    margin: 0 0 10px
}

    .upload-gallery-thumb-buttons button {
        color: #636363;
        background-color: transparent;
        border-color: transparent;
        margin: 0 5px
    }

        .upload-gallery-thumb-buttons button:focus, .upload-gallery-thumb-buttons button:focus:active {
            color: #636363;
            background-color: transparent;
            border-color: transparent
        }

        .upload-gallery-thumb-buttons button:hover {
            color: #636363;
            background-color: rgba(26,26,26,0);
            border-color: rgba(26,26,26,0)
        }

        .upload-gallery-thumb-buttons button:active, .upload-gallery-thumb-buttons button:not(:disabled):not(:disabled):active {
            color: #636363;
            background-color: rgba(26,26,26,0);
            border-color: rgba(26,26,26,0)
        }

.upload-gallery-thumb {
    cursor: move
}

.upload-icon {
    z-index: 2;
    background-color: #eff1f1;
    border: 3px dashed #ced4d4;
    color: #c1c8c8;
    font-size: 24px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-box-shadow: -10px 10px 0 #ced4d4;
    box-shadow: -10px 10px 0 #ced4d4
}

.sort-attachment a {
    cursor: move
}

.chart-nav {
    right: 45px;
    top: 26px
}

@media (max-width:767.98px) {
    .chart-nav {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 10px
    }
}

.chart-nav .nav-pills .nav-link {
    border-radius: 13px;
    font-size: 12px;
    padding: 0 10px;
    border: 1px solid;
    border-color: transparent
}

.dashboard-statistic-block h3 {
    font-size: 14px
}

.dashboard-statistic-block .views-data-wrap {
    text-align: center
}

.dashboard-statistic-block .views-data {
    font-size: 24px;
    line-height: 34px
}

.dashboard-statistic-block .views-text {
    color: #636363
}

.doughnut-chart-data {
    padding: 0 0 0 15px
}

    .doughnut-chart-data li {
        clear: both
    }

        .doughnut-chart-data li:after {
            width: calc(100% - 30px);
            height: 1px;
            border-bottom: 1px solid #dce0e0;
            content: "";
            top: 50%;
            left: 30px
        }

    .doughnut-chart-data span {
        background-color: #fff;
        padding-left: 10px
    }

    .doughnut-chart-data strong {
        background-color: #fff;
        padding-right: 10px
    }

    .doughnut-chart-data small {
        color: #636363
    }

@media (max-width:767.98px) {
    .statistic-doughnut-chart {
        margin-bottom: 30px
    }
}

@media (max-width:767.98px) {
    .doughnut-chart-data {
        padding: 0;
        width: 100%
    }
}

.mebership-list-info li {
    clear: both;
    border-bottom: 1px solid #dce0e0;
    padding: 8px 0
}

.membership-package-order-detail-wrap {
    margin: 0 0 0 30px
}

@media (max-width:991.98px) {
    .membership-package-order-detail-wrap {
        margin: 0
    }
}

.membership-package-order-detail {
    min-width: 300px
}

    .membership-package-order-detail .total-price {
        border-top: 2px solid #000;
        border-bottom: none;
        padding: 20px 0 0
    }

.form-login-link {
    top: -52px;
    right: 30px;
    font-size: 13px
}

@media (max-width:767.98px) {
    .form-login-link {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px
    }
}

.membership-packages-list {
    margin: 0 -30px
}

    .membership-packages-list .membership-packages-item {
        border-bottom: 1px solid #dce0e0;
        padding: 30px
    }

        .membership-packages-list .membership-packages-item:first-of-type {
            padding: 0 30px 30px
        }

        .membership-packages-list .membership-packages-item:last-of-type {
            padding: 30px 30px 0;
            border-bottom: none
        }

.payment-method-block .form-group {
    margin-bottom: -1px
}

.payment-method-block .radio-tab {
    padding: 15px 30px
}

    .payment-method-block .radio-tab .control__indicator {
        left: 0;
        right: auto
    }

    .payment-method-block .radio-tab .control-text {
        font-weight: 700;
        font-size: 16px
    }

.payment-method-block .radio-tab-inner {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #dce0e0
}

.payment-method-block:first-of-type .radio-tab-inner {
    border-radius: 4px 4px 0 0
}

.payment-method-block:last-of-type .radio-tab-inner {
    border-radius: 0 0 4px 4px
}

.paypal-method, .stripe-method, .twocheckout-method {
    background: url(../img/cc-cards.png) no-repeat 93% center
}

.recurring-payment-wrap {
    padding: 10px 0 20px;
    background-color: #fff;
    border-bottom: 1px solid #dce0e0
}

.payment-method {
    background-color: #fff;
    margin-top: -25px
}

.frontend-submission-page {
    padding: 50px 0 0 0
}

.membership-package-order-detail label.control.control--checkbox {
    min-height: auto
}

.hz-password-reset-page {
    width: 350px;
    margin: 60px auto 160px
}

.invoice-wrap {
    padding: 35px 50px
}

.invoce-content li {
    clear: both;
    border-bottom: 1px solid #dce0e0;
    padding: 5px 0
}

.dashaboard-snake-nav {
    border-top: 1px solid #dce0e0;
    background-color: #fff
}

    .dashaboard-snake-nav .step-block {
        -ms-flex-preferred-size: calc(100% / 3);
        flex-basis: calc(100% / 3);
        border-bottom: 4px solid #dce0e0;
        padding: 15px 0
    }

@media (max-width:767.98px) {
    .dashaboard-snake-nav .step-block {
        padding: 5px;
        font-size: 12px
    }
}

.dashaboard-snake-nav .step-block:not(.active) {
    color: #636363
}

.board-message-icon-wrap {
    color: #ebebeb
}

    .board-message-icon-wrap .notification-circle {
        left: 12px;
        border: 2px solid #fff;
        width: 12px;
        height: 12px
    }

.deals-table-wrap {
    padding: 10px
}

@media (min-width:992px) {
    .deals-table-wrap {
        overflow-x: scroll;
        overflow-y: visible;
        padding: 30px 30px 0;
        height: calc(100vh - 132px);
        overflow-y: scroll !important
    }
}

.deals-table-wrap h2 {
    font-size: 18px
}

@media (min-width:992px) {
    .deals-table td, .deals-table th {
        min-width: 150px;
        padding: 10px 0 10px 20px
    }

        .deals-table td:last-child, .deals-table th:last-child {
            padding: 10px 20px
        }
}

.deals-table thead th {
    background-color: #fff;
    padding: 10px 10px 10px 20px;
    border-bottom: 1px solid #dce0e0;
    vertical-align: middle
}

.deals-table tbody tr:last-of-type td {
    border-bottom: 1px solid #dce0e0
}

.deals-table tbody th {
    background-color: #fff;
    padding: 10px 10px 10px 20px;
    border-bottom: 1px solid #dce0e0;
    vertical-align: middle
}

@media (max-width:767.98px) {
    .deals-table tfoot {
        display: none
    }
}

.deals-table tfoot td {
    border-bottom: none
}

.deals-table tfoot .total-deals {
    background-color: #dce0e0;
    border-radius: 0 0 4px 4px
}

.deals-nav-tab.nav-pills .nav-link {
    padding: 15px 20px;
    background-color: #ebebeb;
    border-top: 2px solid #ebebeb
}

@media (max-width:767.98px) {
    .deals-nav-tab.nav-pills .nav-link {
        font-size: 14px;
        padding: 15px 10px
    }
}

.deals-nav-tab.nav-pills .nav-link.active.active-deals {
    border-top: 2px solid #ffc107
}

.deals-nav-tab.nav-pills .nav-link.active.won-deals {
    border-top: 2px solid #28a745
}

.deals-nav-tab.nav-pills .nav-link.active.lost-deals {
    border-top: 2px solid #dc3545
}

.btn.new-lead-color {
    background-color: #80deea !important;
    border-color: #80deea !important;
    color: #fff !important
}

.btn.meeting-scheduled-color {
    background-color: #ba68c8 !important;
    border-color: #ba68c8 !important;
    color: #fff !important
}

.btn.qualified-color {
    background-color: #2196f3 !important;
    border-color: #2196f3 !important;
    color: #fff !important
}

.btn.proposal-sent-color {
    background-color: #f8bbd0 !important;
    border-color: #f8bbd0 !important;
    color: #fff !important
}

.btn.called-color {
    background-color: #f9a825 !important;
    border-color: #f9a825 !important;
    color: #fff !important
}

.btn.negotiation-color {
    background-color: #ff7043 !important;
    border-color: #ff7043 !important;
    color: #fff !important
}

.btn.email-sent-color {
    background-color: #512da8 !important;
    border-color: #512da8 !important;
    color: #fff !important
}

.btn.won-color {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important
}

.btn.lost-color {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important
}

.btn.follow-up-color {
    background-color: #8bc34a !important;
    border-color: #8bc34a !important;
    color: #fff !important
}

.btn.demo-color {
    background-color: #bcaaa4 !important;
    border-color: #bcaaa4 !important;
    color: #fff !important
}

.activities-list-wrap {
    overflow-y: hidden
}

.activities-list:before {
    content: "";
    left: 50px;
    display: block;
    border-left: 1px solid #dce0e0;
    z-index: auto
}

@media (max-width:767.98px) {
    .activities-list:before {
        left: 35px
    }
}

.activitiy-item:after {
    width: calc(100% - 20px);
    content: "";
    left: 20px;
    display: block;
    border-bottom: 1px solid #dce0e0;
    z-index: 1;
    bottom: 0
}

.activitiy-item-left {
    min-width: 60px
}

.activity-time {
    font-style: italic;
    color: #636363
}

.lead-detail-wrap h2 {
    margin-bottom: 20px;
    background-color: transparent;
    padding: 0;
    border-bottom: none
}

.lead-detail-wrap ul li {
    clear: both;
    border-bottom: 1px solid #dce0e0;
    padding: 5px 0
}

.lead-detail-wrap .edit-lead-detail:hover {
    color: #fff
}

.lead-enquiry-wrap {
    border: 1px solid #dce0e0;
    padding: 30px
}

.private-note-wrap {
    background-color: rgba(52,178,228,.1);
    padding: 15px 20px
}

.message-reply-message time, .message-reply-user time {
    font-size: 13px
}

.action-col {
    width: 1px
}

.table-select-auto {
    width: auto !important
}

.task-label {
    border-radius: 20px;
    border: 1px solid #dce0e0;
    background-color: rgba(220,224,224,.35);
    padding: 0 10px;
    margin: 0 10px 10px 0;
    font-size: 12px;
    white-space: nowrap
}

.task-label-due {
    border: 1px solid #000;
    background-color: #000;
    color: #fff
}

.task-label-priority-normal {
    border: 1px solid #28a745;
    color: #28a745;
    background-color: #fff
}

.task-label-priority-medium {
    border: 1px solid #ffc107;
    color: #ffc107;
    background-color: #fff
}

.task-label-priority-high {
    border: 1px solid #dc3545;
    color: #dc3545;
    background-color: #fff
}

.task-list-item {
    padding: 15px 0 5px 15px;
    background-color: #fff;
    margin-bottom: 1px
}

    .task-list-item:last-of-type {
        padding: 15px 0 15px 15px
    }

    .task-list-item .control {
        margin: 0 10px 10px 0
    }

    .task-list-item .control__indicator {
        top: 2px
    }

    .task-list-item.task-list-item-completed .control {
        color: #636363;
        text-decoration: line-through
    }

.dashboard-slide-panel-wrap {
    right: -500px;
    padding: 30px;
    background-color: #fff;
    width: 500px;
    border-left: 1px solid #dce0e0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch
}

@media (max-width:767.98px) {
    .dashboard-slide-panel-wrap {
        width: 320px;
        right: -320px
    }
}

.dashboard-slide-panel-wrap h2, .dashboard-slide-panel-wrap h3 {
    font-size: 18px
}

.dashboard-slide-panel-wrap .open-close-slide-panel {
    top: 20px;
    right: 20px;
    font-size: 24px
}

.crm-pagination .page-numbers {
    padding: 0 2px
}

.page-template-user_dashboard_crm .pagination-wrap {
    margin: 30px 0 0 0;
    padding-top: 0;
    border-top: none
}

.activities-list-wrap .crm-pagination {
    text-align: center
}

.remove-floorplan-row, .remove-subproperty-row {
    right: 8px;
    color: #c31b1b;
    cursor: pointer
}

input.multiple-agent-check {
    position: absolute;
    right: 32px
}

.block-content-wrap .agent-details input.multiple-agent-check {
    left: 58px
}

.block-content-wrap .property-form-terms {
    text-align: left
}

.block-content-wrap .agent-details, .property-form-wrap .agent-details {
    margin-bottom: 10px
}

.dashboard-content-block-property-settings label {
    padding-bottom: 0
}

.post-content-wrap h1 {
    font-size: 30px;
    line-height: 40px
}

.post-content-wrap h2 {
    font-size: 24px;
    line-height: 34px
}

.post-content-wrap h3 {
    font-size: 20px;
    line-height: 30px
}

.post-content-wrap h4 {
    font-size: 18px;
    line-height: 28px
}

.post-content-wrap h5 {
    font-size: 16px;
    line-height: 26px
}

.post-content-wrap h6 {
    font-size: 14px;
    line-height: 24px
}

.post-content-wrap table tr {
    border-bottom: 1px solid #dce0e0
}

.post-content-wrap table td, .post-content-wrap table th {
    padding: 5px
}

.post-content-wrap blockquote, .post-content-wrap q {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 28px;
    border-left: 5px solid #dce0e0
}

.post-content-wrap pre {
    padding: 10px 20px;
    border: 1px solid #dce0e0;
    background-color: rgba(220,224,224,.2)
}

.wp-block-image figcaption {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-style: italic;
    padding: 6px 11px 4px;
    background: #f9f9f9
}

.widget-wrap {
    padding: 30px;
    background-color: #fff
}

    .widget-wrap .input-group-text {
        background-color: #fff
    }

.widget-title {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 24px
}

.widget-contact-us li {
    padding: 5px 0
}

.blog-post-image-widget {
    margin-right: 20px;
    min-width: 70px
}

@media (max-width:991.98px) {
    .blog-post-image-widget {
        width: 90px
    }
}

.blog-post-content-widget {
    color: #636363
}

    .blog-post-content-widget h4 {
        font-size: 14px;
        line-height: 24px
    }

.featured-property-item-widget .item-wrap-v3 .labels-wrap {
    top: 20px;
    right: 20px
}

.featured-property-item-widget .item-wrap-v3 .item-price-wrap {
    left: 20px;
    bottom: 30px
}

    .featured-property-item-widget .item-wrap-v3 .item-price-wrap .item-price {
        font-size: 13px
    }

.featured-property-item-widget .item-wrap-v3 .item-address {
    color: #fff;
    left: 20px;
    bottom: -5px;
    z-index: 1;
    max-width: calc(100% - 40px)
}

.featured-property-item-widget .item-wrap-v3 .item-title {
    max-width: 85%;
    bottom: 52px;
    font-size: 13px
}

@media (max-width:991.98px) {
    .widget-featured-property:not(.widget-featured-property-slider-wrap) .featured-property-item-widget {
        width: calc(50% - 1px);
        float: left;
        margin-left: 1px;
        margin-bottom: 1px
    }
}

@media (max-width:767.98px) {
    .widget-featured-property:not(.widget-featured-property-slider-wrap) .featured-property-item-widget {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px
    }

        .widget-featured-property:not(.widget-featured-property-slider-wrap) .featured-property-item-widget:last-of-type {
            margin-bottom: 0
        }
}

.property-item-widget .left-property-item-widget-wrap {
    width: 90px;
    min-width: 90px;
    margin-right: 20px
}

.property-item-widget .right-property-item-widget-wrap .item-title {
    white-space: normal
}

.property-item-widget .right-property-item-widget-wrap .item-price, .property-item-widget .right-property-item-widget-wrap .item-title {
    font-size: 14px;
    line-height: 22px
}

.property-item-widget .right-property-item-widget-wrap .item-price {
    margin-bottom: 6px
}

.property-item-widget .right-property-item-widget-wrap .item-amenities {
    font-size: 12px
}

    .property-item-widget .right-property-item-widget-wrap .item-amenities li {
        margin-bottom: 6px
    }

.widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) {
    list-style: none
}

    .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) ul {
        padding-left: 20px
    }

    .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li {
        line-height: 35px;
        padding: 0 0 0 10px
    }

        .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a {
            padding-left: 15px;
            padding-top: 0;
            padding-bottom: 0;
            margin-left: -10px
        }

            .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li a:before {
                content: "";
                font-family: houzez-iconfont;
                font-size: 10px
            }

        .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
            color: #636363
        }

.flickr-images a, .instagram-images a {
    width: 50%;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff
}

@media (max-width:991.98px) {
    .flickr-images a, .instagram-images a {
        width: 25%
    }
}

@media (max-width:767.98px) {
    .flickr-images a, .instagram-images a {
        width: 50%
    }
}

.tweet-icon {
    color: #4099ff;
    margin-right: 20px
}

.tweet-slider .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.tweet-slider .tweet-content, .tweet-slider .tweet-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.widget-mortgage-calculator .mortgage-details ul li {
    padding: 0 !important;
    line-height: 25px !important;
    font-size: 13px
}

.widget-mortgage-calculator .mortgage-details.detail-wrap {
    margin-top: 20px;
    padding: 10px 20px !important
}

.widget-login-register .logged-in-wrap img {
    margin-right: 20px
}

.widget-featured-property-slider-wrap .slick-dotted.slick-slider, .widget-instagram-slider .slick-dotted.slick-slider {
    margin-bottom: 20px
}

.widget-featured-property-slider-wrap .slick-next, .widget-featured-property-slider-wrap .slick-prev, .widget-instagram-slider .slick-next, .widget-instagram-slider .slick-prev {
    height: 20px;
    width: 20px
}

    .widget-featured-property-slider-wrap .slick-next:before, .widget-featured-property-slider-wrap .slick-prev:before, .widget-instagram-slider .slick-next:before, .widget-instagram-slider .slick-prev:before {
        font-size: 12px
    }

.advanced-search-widget .row {
    margin-right: -5px;
    margin-left: -5px
}

.advanced-search-widget .col-sm-6, .advanced-search-widget .col-xs-12 {
    padding-right: 5px;
    padding-left: 5px
}

.advanced-search-widget .range-text {
    font-size: 12px
}

.advanced-search-widget .area-range-wrap, .advanced-search-widget .price-range-wrap {
    padding-bottom: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dce0e0
}

.advanced-search-widget .features-list-wrap {
    padding-top: 5px;
    padding-bottom: 15px;
    text-align: center
}

.advanced-search-widget .features-list {
    text-align: left
}

    .advanced-search-widget .features-list .control {
        width: 49%
    }

.calendar_wrap table {
    width: 100%
}

.widget_recent_comments ul li, .widget_recent_entries ul li {
    padding: 0 !important;
    line-height: 25px !important;
    margin-bottom: 10px
}

    .widget_recent_comments ul li a, .widget_recent_entries ul li a {
        padding-left: 0 !important;
        margin-left: 0 !important
    }

        .widget_recent_comments ul li a:before, .widget_recent_entries ul li a:before {
            display: none
        }

.comment-author-link {
    float: none !important
}

.footer-top-wrap {
    padding: 100px 0 70px
}

@media (max-width:767.98px) {
    .footer-top-wrap {
        padding: 50px 30px 30px
    }
}

.footer-top-wrap .widget-wrap {
    background-color: transparent
}

.footer-bottom-wrap {
    padding: 30px 0
}

@media (max-width:767.98px) {
    .footer-bottom-wrap .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width:767.98px) {
    .footer-bottom-wrap .d-flex .footer-copyright, .footer-bottom-wrap .d-flex .footer-nav, .footer-bottom-wrap .d-flex .logo {
        margin-bottom: 20px
    }
}

.footer-bottom-wrap-v2, .footer-bottom-wrap-v3 {
    text-align: center
}

    .footer-bottom-wrap-v2 .logo, .footer-bottom-wrap-v3 .logo {
        margin: 40px 0 30px 0
    }

@media (max-width:767.98px) {
    .footer-bottom-wrap-v2 .logo, .footer-bottom-wrap-v3 .logo {
        margin: 40px 0 50px
    }
}

.footer-bottom-wrap-v2 .nav, .footer-bottom-wrap-v3 .nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer-bottom-wrap-v2 .footer-social a, .footer-bottom-wrap-v3 .footer-social a {
    margin: 0 5px
}

@media (max-width:767.98px) {
    .footer-bottom-wrap-v2 .footer-social span, .footer-bottom-wrap-v3 .footer-social span {
        padding: 0 0 10px;
        display: inline-block
    }
}

.footer-bottom-wrap-v3 {
    padding: 30px 0 70px
}

    .footer-bottom-wrap-v3 .footer-social a {
        text-align: center;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        border: 1px solid #fff
    }

        .footer-bottom-wrap-v3 .footer-social a:hover {
            background-color: rgba(255,255,255,.75)
        }

.footer-bottom-wrap-v4 {
    padding: 50px 0
}

.footer-nav .menu-item, .footer-nav .nav-link {
    padding: 0 10px
}

.back-to-top-wrap {
    position: fixed;
    left: auto;
    right: 27px;
    bottom: 27px;
    z-index: 99
}

@media (max-width:767.98px) {
    .back-to-top-wrap {
        right: 15px;
        bottom: 15px
    }
}

.back-to-top-wrap .btn-back-to-top {
    display: none;
    width: 42px;
    height: 42px;
    line-height: 42px;
    padding: 0;
    padding-top: 10px;
    font-size: 18px;
    margin-bottom: 55px;
}

@media (max-width:767.98px) {
    .single-property .back-to-top-wrap {
        bottom: 90px
    }
}

.slick-next, .slick-prev {
    height: 40px;
    width: 40px;
    z-index: 1;
    text-align: center;
    border-radius: 3px;
    font-weight: 700;
    color: #fff;
    border: none;
}

    .slick-next:before, .slick-prev:before {
        display: inline-block;
        font-size: 16px
    }

@media (max-width:767.98px) {
    .slick-next, .slick-prev {
        /*  display: none !important*/
    }
}

.slick-prev {
    left: 20px
}

    .slick-prev:before {
        content: "";
        font-family: houzez-iconfont
    }

.slick-next {
    right: 20px
}

    .slick-next:before {
        content: "";
        font-family: houzez-iconfont
    }

.slick-slide img {
    margin: 0 auto
}

body.lb-disable-scrolling {
    overflow: hidden
}

.lightboxOverlay {
    z-index: 9999;
    background-color: #000;
    opacity: .8
}

.lightbox {
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: 400
}

    .lightbox .lb-image {
        height: auto;
        max-width: inherit;
        max-height: none;
        border-radius: 3px;
        border: 4px solid #fff
    }

    .lightbox a img {
        border: none
    }

.lb-outerContainer {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background-color: #fff
}

    .lb-outerContainer:after {
        content: "";
        clear: both
    }

.lb-loader {
    top: 43%;
    height: 25%;
    text-align: center;
    line-height: 0
}

.lb-cancel {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/loading.gif) no-repeat
}

.lb-nav {
    height: 100%;
    z-index: 10
}

    .lb-nav a {
        outline: 0;
        background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
    }

.lb-next, .lb-prev {
    cursor: pointer
}

.lb-nav a.lb-prev {
    width: 34%;
    float: left;
    background: url(../img/prev.png) left 48% no-repeat;
    opacity: 0;
    -webkit-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

    .lb-nav a.lb-prev:hover {
        opacity: 1
    }

.lb-nav a.lb-next {
    width: 64%;
    background: url(../img/next.png) right 48% no-repeat;
    opacity: 0;
    -webkit-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

    .lb-nav a.lb-next:hover {
        opacity: 1
    }

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

    .lb-dataContainer:after {
        content: "";
        clear: both
    }

.lb-data {
    padding: 0 4px;
    color: #ccc
}

    .lb-data .lb-details {
        width: 85%;
        text-align: left;
        line-height: 1.1em
    }

    .lb-data .lb-caption {
        font-size: 13px;
        font-weight: 700;
        line-height: 1em
    }

        .lb-data .lb-caption a {
            color: #4ae
        }

    .lb-data .lb-number {
        clear: left;
        padding-bottom: 1em;
        font-size: 12px;
        color: #999
    }

    .lb-data .lb-close {
        width: 30px;
        height: 30px;
        background: url(../img/close.png) top right no-repeat;
        text-align: right;
        outline: 0;
        opacity: .7;
        -webkit-transition: opacity .2s;
        -o-transition: opacity .2s;
        transition: opacity .2s
    }

        .lb-data .lb-close:hover {
            cursor: pointer;
            opacity: 1
        }

.module-row {
    margin-right: -5px;
    margin-left: -5px
}

    .module-row div[class*=col-] {
        padding-right: 5px;
        padding-left: 5px
    }

.module-4cols .agent-item, .module-4cols .text-with-icon-item {
    width: calc(25% - 2px)
}

    .module-4cols .agent-item:nth-child(4n+1), .module-4cols .text-with-icon-item:nth-child(4n+1) {
        clear: left
    }

@media (max-width:991.98px) {
    .module-4cols .agent-item, .module-4cols .text-with-icon-item {
        width: calc(50% - 2px)
    }

        .module-4cols .agent-item:nth-child(2n+1), .module-4cols .text-with-icon-item:nth-child(2n+1) {
            clear: left
        }
}

@media (max-width:767.98px) {
    .module-4cols .agent-item, .module-4cols .text-with-icon-item {
        width: 100%
    }
}

.module-3cols .agent-item, .module-3cols .text-with-icon-item {
    width: calc(100% / 3 - 2px)
}

    .module-3cols .agent-item:nth-child(3n+1), .module-3cols .text-with-icon-item:nth-child(3n+1) {
        clear: left
    }

@media (max-width:991.98px) {
    .module-3cols .agent-item, .module-3cols .text-with-icon-item {
        width: calc(50% - 2px)
    }

        .module-3cols .agent-item:nth-child(2n+1), .module-3cols .text-with-icon-item:nth-child(2n+1) {
            clear: left
        }

        .module-3cols .agent-item:nth-child(3n+1), .module-3cols .text-with-icon-item:nth-child(3n+1) {
            clear: none
        }
}

@media (max-width:767.98px) {
    .module-3cols .agent-item, .module-3cols .text-with-icon-item {
        width: 100%
    }
}

.property-by-ids-module-3-cols .grid-view .item-listing-wrap, .property-cards-module-3-cols .grid-view .item-listing-wrap {
    width: calc(100% / 3)
}

@media (max-width:991.98px) {
    .property-by-ids-module-3-cols .grid-view .item-listing-wrap, .property-cards-module-3-cols .grid-view .item-listing-wrap {
        width: 50%
    }
}

@media (max-width:767.98px) {
    .property-by-ids-module-3-cols .grid-view .item-listing-wrap, .property-cards-module-3-cols .grid-view .item-listing-wrap {
        width: 100%
    }
}

@media (min-width:768px) {
    .property-by-ids-module-2-cols .grid-view, .property-cards-module-2-cols .grid-view {
        margin-right: -15px;
        margin-left: -15px
    }
}

@media (min-width:768px) {
    .property-by-ids-module-2-cols .grid-view .item-listing-wrap-v4, .property-by-ids-module-2-cols .grid-view .item-listing-wrap-v5, .property-by-ids-module-2-cols .grid-view .item-listing-wrap-v6, .property-cards-module-2-cols .grid-view .item-listing-wrap-v4, .property-cards-module-2-cols .grid-view .item-listing-wrap-v5, .property-cards-module-2-cols .grid-view .item-listing-wrap-v6 {
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
        float: left
    }
}

.property-by-ids-module-2-cols .grid-view .item-listing-wrap-v4, .property-cards-module-2-cols .grid-view .item-listing-wrap-v4 {
    margin-bottom: 80px
}

.property-by-ids-module-2-cols .grid-view .item-listing-wrap-v5, .property-by-ids-module-2-cols .grid-view .item-listing-wrap-v6, .property-cards-module-2-cols .grid-view .item-listing-wrap-v5, .property-cards-module-2-cols .grid-view .item-listing-wrap-v6 {
    margin-bottom: 30px
}

@media (min-width:768px) {
    .property-by-ids-module-3-cols .grid-view, .property-cards-module-3-cols .grid-view {
        margin-right: -15px;
        margin-left: -15px
    }
}

.property-by-ids-module-3-cols .grid-view .item-listing-wrap-v5, .property-by-ids-module-3-cols .grid-view .item-listing-wrap-v6, .property-cards-module-3-cols .grid-view .item-listing-wrap-v5, .property-cards-module-3-cols .grid-view .item-listing-wrap-v6 {
    margin-bottom: 30px
}

@media (min-width:768px) {
    .property-by-ids-module-3-cols .grid-view .item-listing-wrap-v5, .property-by-ids-module-3-cols .grid-view .item-listing-wrap-v6, .property-cards-module-3-cols .grid-view .item-listing-wrap-v5, .property-cards-module-3-cols .grid-view .item-listing-wrap-v6 {
        width: 50%;
        padding-left: 15px;
        padding-right: 15px;
        float: left
    }
}

@media (min-width:992px) {
    .property-by-ids-module-3-cols .grid-view .item-listing-wrap-v5, .property-by-ids-module-3-cols .grid-view .item-listing-wrap-v6, .property-cards-module-3-cols .grid-view .item-listing-wrap-v5, .property-cards-module-3-cols .grid-view .item-listing-wrap-v6 {
        width: calc(100% / 3)
    }
}

.property-by-id-module .grid-view .item-listing-wrap {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 0
}

.taxonomy-item {
    margin-bottom: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.taxonomy-item-square .taxonomy-item {
    padding-bottom: 100%
}

.taxonomy-item-rectangle .taxonomy-item {
    padding-bottom: 47.4%
}

@media (max-width:1199.98px) {
    .taxonomy-item-rectangle .taxonomy-item {
        padding-bottom: 47.64%
    }
}

@media (max-width:991.98px) {
    .taxonomy-item-rectangle .taxonomy-item {
        padding-bottom: 46.94%
    }
}

@media (max-width:767.98px) {
    .taxonomy-grids-module-v1 .taxonomy-item-square .taxonomy-item {
        padding-bottom: 46.94%
    }
}

.taxonomy-grids-module-v4 .taxonomy-item-rectangle .taxonomy-item {
    padding-bottom: 47.369%
}

@media (max-width:1199.98px) {
    .taxonomy-grids-module-v4 .taxonomy-item-rectangle .taxonomy-item {
        padding-bottom: 46.81%
    }
}

@media (max-width:575.98px) {
    .taxonomy-grids-module-v4 .taxonomy-item-square .taxonomy-item {
        padding-bottom: 46.81%
    }
}

.taxonomy-text-wrap {
    width: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff
}

.taxonomy-title {
    font-size: 24px;
    line-height: 30px
}

.taxonomy-subtitle {
    font-size: 14px;
    text-transform: uppercase
}

.grid-item {
    margin-bottom: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.grid-item-v1 {
    padding-bottom: calc(75% - 7.5px)
}

.grid-item-v2 {
    padding-bottom: 100%
}

.grid-item-v3 {
    padding-bottom: calc(200% + 30px)
}

.grid-item-text-wrap {
    padding: 30px
}

.grid-item-subtitle {
    color: #fff;
    font-size: 12px
}

.grid-item-title {
    color: #fff;
    font-size: 20px
}

.grid-item-text-link {
    color: #fff;
    bottom: 30px;
    font-size: 12px;
    /*    text-transform: uppercase*/
}

.grid-item-icon {
    color: #fff;
    bottom: 30px;
    right: 30px
}

.elementor-widget-Houzez_elementor_grid_builder {
    margin-bottom: 0 !important
}

.price-table-module {
    border: 1px solid #dce0e0;
    background-color: #fff;
    text-align: center;
    padding: 35px 0;
    margin-left: -1px
}

    .price-table-module.featured {
        -webkit-box-shadow: 0 70px 70px rgba(0,0,0,.2);
        box-shadow: 0 70px 70px rgba(0,0,0,.2);
        padding: 50px 0;
        margin-top: -15px
    }

.price-table-title {
    font-size: 18px;
    line-height: 18px
}

.price-table-price {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -4px
}

@media (max-width:991.98px) {
    .price-table-price {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -2px
    }
}

.price-table-currency {
    font-size: 24px;
    margin-top: 5px
}

.price-table-price-wrap {
    padding: 30px 0
}

.price-table-description {
    border-bottom: 1px solid #dce0e0
}

    .price-table-description ul {
        list-style: none
    }

    .price-table-description li {
        padding: 15px 0;
        border-top: 1px solid #dce0e0
    }

.price-table-button {
    padding: 35px 0 0
}

.agent-module {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.agent-item, .text-with-icon-item-v1 {
    padding: 35px;
    background-color: #fff;
    margin-left: 1px;
    margin-bottom: -1px;
    text-align: center
}

    .agent-item:hover, .text-with-icon-item-v1:hover {
        -webkit-box-shadow: 0 70px 70px rgba(0,0,0,.2);
        box-shadow: 0 70px 70px rgba(0,0,0,.2);
        -webkit-transform: translate(0,-10px);
        -ms-transform: translate(0,-10px);
        transform: translate(0,-10px)
    }

.agent-body {
    padding: 20px 0;
    color: #636363
}

.text-with-icon-item-v1 .icon-thumb {
    padding: 50px 0 70px
}

.text-with-icon-item-v2 {
    margin-bottom: 60px
}

    .text-with-icon-item-v2 .text-with-icon-content-wrap {
        padding: 0 30px 0 20px
    }

.text-with-icon-item .icon-thumb {
    font-size: 40px;
    min-width: 40px
}

    .text-with-icon-item .icon-thumb img {
        min-width: 40px;
        height: auto
    }

.text-with-icon-item .text-with-icon-title {
    font-size: 20px;
    line-height: 28px
}

.text-with-icon-item .text-with-icon-body {
    padding: 10px 0 20px;
    color: #636363
}

.testimonial-item:focus {
    outline: 0
}

.testimonial-item-v1 {
    text-align: center;
    margin-bottom: 30px
}

.testimonial-thumb img {
    width: 128px;
    height: 128px
}

.testimonial-icon {
    font-size: 30px
}

    .testimonial-icon .houzez-icon {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }

.testimonial-item-v2 {
    padding: 40px;
    margin-bottom: 30px
}

    .testimonial-item-v2 .testimonial-thumb {
        margin-right: 20px;
        margin-bottom: 0
    }

    .testimonial-item-v2 .testimonial-body {
        margin-bottom: 30px
    }

.testimonials-module-slider-v1 {
    max-width: 640px;
    margin: 0 auto
}

    .testimonials-module-slider-v1 .testimonial-item .testimonial-body {
        padding: 10px 20px;
        font-size: 18px;
        line-height: 30px
    }

    .testimonials-module-slider-v1 .slick-prev {
        left: -40px
    }

    .testimonials-module-slider-v1 .slick-next {
        right: -40px
    }

    .testimonials-module-slider-v1 .slick-next, .testimonials-module-slider-v1 .slick-prev {
        height: 30px;
        width: 30px
    }

        .testimonials-module-slider-v1 .slick-next:before, .testimonials-module-slider-v1 .slick-prev:before {
            font-size: 12px
        }

.testimonials-slider-wrap-v2 {
    margin-left: -15px;
    margin-right: -15px
}

    .testimonials-slider-wrap-v2 .testimonial-item {
        margin: 0
    }

@media (max-width:767.98px) {
    .testimonials-module-slider-v2 {
        overflow: hidden
    }
}

.property-carousel-buttons-wrap {
    height: 40px;
    text-align: right
}

    .property-carousel-buttons-wrap .btn-view-all, .property-carousel-buttons-wrap .slick-next, .property-carousel-buttons-wrap .slick-prev {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        font-weight: 300;
        padding: 0 10px;
        font-size: 12px;
        height: 30px;
        line-height: 28px;
        width: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

.agents-slider-wrap .testimonial-item, .partners-slider-wrap .testimonial-item, .testimonials-slider-wrap-v2 .testimonial-item {
    margin: 0 15px
}

.agents-module-slider .agent-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.agents-module-slider .slick-list {
    border-left: 1px solid #dce0e0
}

.blog-posts-slider-wrap {
    margin-left: -5px;
    margin-right: -5px
}

    .blog-posts-slider-wrap .blog-posts-slide-wrap {
        padding: 0 5px
    }

.property-carousel-module {
    overflow: hidden
}

@media (max-width:767.98px) {
    .property-carousel-module .grid-view .item-listing-wrap {
        float: left
    }
}

.property-carousel-module-v1 .grid-view {
    margin-right: 0;
    margin-left: 0
}

    .property-carousel-module-v1 .grid-view .item-listing-wrap {
        padding-left: 0;
        padding-right: 0
    }

.property-carousel-module-v1 .item-listing-wrap-v3 {
    margin-bottom: 0 !important;
    margin-right: 1px;
    margin-left: 1px
}

.property-carousel-module-v1-4cols .item-wrap-outside, .property-carousel-module-v1-5cols .item-wrap-outside {
    text-align: center
}

.property-carousel-module-v1-4cols .item-wrap .item-price-wrap, .property-carousel-module-v1-5cols .item-wrap .item-price-wrap {
    left: 20px;
    bottom: 15px
}

.property-carousel-module-v1-4cols .item-wrap .labels-wrap, .property-carousel-module-v1-5cols .item-wrap .labels-wrap {
    bottom: auto;
    top: 15px;
    right: 20px
}

.team-module {
    overflow: hidden;
    text-align: center
}

    .team-module:hover .team-content-wrap-after {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    .team-module:hover .team-content-wrap-before {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

.team-content-wrap-after {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    background-color: rgba(255,255,255,.9);
    z-index: 3
}

    .team-content-wrap-after .team-content {
        top: 50%;
        -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        transform: translate(0,-50%)
    }

.team-content-wrap-before {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    color: #fff
}

    .team-content-wrap-before .team-social a {
        color: #fff
    }

    .team-content-wrap-before .team-content {
        padding: 30px
    }

.team-content {
    padding: 30px
}

.team-social a {
    font-size: 18px
}

.team-mobile-link {
    z-index: 4
}

.partner-item {
    background-color: #fff;
    padding: 35px 15px;
    text-align: center;
    margin-left: 0
}

.blog-post-item {
    margin-bottom: 8px;
    background-color: #fff
}

    .blog-post-item .blog-post-content-wrap {
        padding: 10px 20px 20px
    }

    .blog-post-item .blog-post-body {
        color: #636363;
        font-size: 13px;
        line-height: 21px
    }

    .blog-post-item .blog-post-title h3 {
        font-size: 16px;
        line-height: 24px
    }

    .blog-post-item .blog-post-author {
        font-size: 12px;
        color: #636363
    }

        .blog-post-item .blog-post-author a {
            color: #636363
        }

    .blog-post-item .blog-post-link {
        font-size: 13px;
        line-height: 21px
    }

    .blog-post-item .blog-post-author, .blog-post-item .blog-post-meta {
        font-size: 12px
    }

.blog-post-item-v1 {
    padding: 8px 0
}

    .blog-post-item-v1 .blog-post-thumb {
        margin: 0 8px
    }

    .blog-post-item-v1 .blog-post-author, .blog-post-item-v1 .blog-post-meta {
        color: #636363
    }

    .blog-post-item-v1 .blog-post-author {
        border-top: 1px solid #dce0e0;
        padding: 8px 20px 0
    }

.blog-post-item-v2 .blog-post-meta {
    margin-bottom: 0
}

.blog-post-item-v2 .blog-post-meta, .blog-post-item-v2 .blog-post-title {
    color: #fff
}

    .blog-post-item-v2 .blog-post-meta a, .blog-post-item-v2 .blog-post-meta time, .blog-post-item-v2 .blog-post-title a, .blog-post-item-v2 .blog-post-title time {
        color: #fff
    }

.blog-post-item-v2 .blog-post-author {
    padding: 8px 20px
}

.blog-post-item-v2 .blog-post-content-wrap {
    bottom: 30px
}

.property-grid-item {
    border-left: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    height: 290px;
    background-size: cover;
    background-position: center center;
    width: 25%
}

@media (max-width:767.98px) {
    .property-grid-item {
        width: 100% !important
    }
}

.property-grid-item .item-inner-wrap {
    padding: 20px
}

.property-grid-item .item-title {
    max-width: 80%;
    margin-bottom: 10px
}

.property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(4n+1), .property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(4n+2) {
    width: 50%
}

.property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(3n), .property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(4n), .property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(5n), .property-grids-module-v1 .property-grids-module-row .property-grid-item:nth-child(6n) {
    width: 25%
}

@media (max-width:991.98px) {
    .property-grids-module-v1 .property-grids-module-row .property-grid-item {
        width: 50%
    }
}

@media (max-width:991.98px) {
    .property-grids-module-v2 .property-grids-module-row .property-grid-item {
        width: 50%
    }
}

.property-grids-module-v2 .property-grids-module-row .property-grid-item:nth-child(1), .property-grids-module-v2 .property-grids-module-row .property-grid-item:nth-child(6) {
    width: 50%
}

@media (max-width:991.98px) {
    .property-grids-module-v2 .property-grids-module-row .property-grid-item:nth-child(1), .property-grids-module-v2 .property-grids-module-row .property-grid-item:nth-child(6) {
        width: 100%
    }
}

@media (max-width:991.98px) {
    .property-grids-module-v3 .property-grids-module-row .property-grid-item {
        width: 50%
    }
}

.property-grids-module-v3 .property-grids-module-row .property-grid-item:nth-child(1), .property-grids-module-v3 .property-grids-module-row .property-grid-item:nth-child(2), .property-grids-module-v3 .property-grids-module-row .property-grid-item:nth-child(3) {
    width: calc(100% / 3)
}

.property-grids-module-v4 .property-grids-module-row .property-grid-item:nth-child(1), .property-grids-module-v4 .property-grids-module-row .property-grid-item:nth-child(4) {
    width: 60%
}

.property-grids-module-v4 .property-grids-module-row .property-grid-item:nth-child(2), .property-grids-module-v4 .property-grids-module-row .property-grid-item:nth-child(3) {
    width: 40%
}

.advanced-search-module .row {
    margin-right: 5px;
    margin-left: 5px
}

    .advanced-search-module .row [class*=col-] {
        padding-left: 5px !important;
        padding-right: 5px !important
    }

.advanced-search-module .advanced-search-module-title {
    font-size: 18px
}

.advanced-search-module .features-list-wrap {
    padding-top: 0
}

.houzez-ele-search-form-wrapper .auto-complete {
    top: 55px
}

.elementor-field-custom-search {
    padding: 5px 14px 5px 40px
}

    .elementor-field-custom-search + .search-icon {
        position: absolute;
        top: 0
    }

.location-trigger.with-tabs {
    top: auto;
    bottom: 0;
    right: 5px
}

.contact-form-wrap, .estimation-form-wrap {
    padding: 40px;
    background-color: #fff;
    margin-bottom: 30px
}

@media (max-width:767.98px) {
    .contact-form-wrap, .estimation-form-wrap {
        padding: 20px
    }
}

.contact-form-wrap p:last-of-type {
    margin-bottom: 0
}

.ele-form-messages {
    margin-top: 10px
}

    .ele-form-messages .alert {
        padding: 8px 10px 8px 10px
    }

@media (min-width:768px) {
    .agent-v2-grid-module {
        margin-right: -15px;
        margin-left: -15px
    }
}

@media (min-width:992px) {
    .agent-v2-grid-module.agent-v2-grid-3-cols .agent-grid-wrap {
        width: calc(100% / 3)
    }
}

.agent-v2-grid-module.agent-v2-grid-3-cols .agent-grid-wrap.with-background .agent-details {
    padding: 20px
}

@media (min-width:992px) {
    .agent-v2-grid-module.agent-v2-grid-4-cols .agent-grid-wrap {
        width: 25%
    }
}

.agent-v2-grid-module.agent-v2-grid-4-cols .agent-grid-wrap.with-background .agent-details {
    padding: 30px 20px
}

.agent-v2-grid-module.agent-v2-grid-4-cols .agent-details .d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.agent-v2-grid-module.agent-v2-grid-4-cols .agent-details .agent-information {
    text-align: center;
    padding-left: 0;
    margin-top: 15px
}

.agent-v2-grid-module.agent-v2-grid-4-cols .agent-details .agent-image {
    margin: 0 auto
}

@media (min-width:768px) {
    .agent-v2-grid-module .agent-grid-wrap {
        padding-left: 15px;
        padding-right: 15px;
        float: left
    }
}

.agent-v2-grid-module .agent-grid-wrap.with-background .agent-details {
    background-color: #fff
}

.agent-v2-grid-module .agent-details {
    margin-bottom: 30px
}

.agent-v2-grid-module .agent-name {
    margin-bottom: 6px;
    line-height: 20px;
    font-weight: 500
}

.agent-v2-grid-module .agent-email-wrap, .agent-v2-grid-module .agent-phone-wrap {
    margin-bottom: 0;
    line-height: 20px
}

    .agent-v2-grid-module .agent-email-wrap .houzez-icon {
        top: 2px
    }

div#login-register-form {
    z-index: 9999
}

.login-register-form .modal-content {
    border: none
}

.login-register-form .modal-dialog {
    max-width: 430px
}

.login-register-form .modal-header {
    overflow: hidden;
    border: none;
    border-radius: 4px 4px 0 0
}

    .login-register-form .modal-header .close {
        padding: 15px 20px;
        color: #fff;
        opacity: 1;
        text-shadow: none;
        border-left: 1px solid rgba(255,255,255,.2)
    }

        .login-register-form .modal-header .close span {
            top: -2px
        }

    .login-register-form .modal-header .login-register-tabs .nav-link, .login-register-form .modal-header .login-register-tabs .nav-tabs {
        border: none
    }

    .login-register-form .modal-header .login-register-tabs .nav-link {
        border-right: 1px solid;
        border-color: rgba(255,255,255,.2);
        padding: 15px 30px;
        color: #fff
    }

        .login-register-form .modal-header .login-register-tabs .nav-link:hover {
            border-color: rgba(255,255,255,.2)
        }

.login-register-form .modal-body {
    padding: 30px
}

.form-tools .control {
    color: #636363
}

.form-tools a {
    min-height: 24px;
    font-size: 14px;
    font-weight: 500
}

.login-form-wrap, .register-form-wrap {
    background-color: #fff;
    border: 1px solid #dce0e0
}

    .login-form-wrap .form-group-field:after, .register-form-wrap .form-group-field:after {
        font-family: houzez-iconfont;
        color: #636363;
        top: 10px;
        left: 18px
    }

    .login-form-wrap .form-group-field input, .register-form-wrap .form-group-field input {
        padding-left: 42px;
        border: none
    }

    .login-form-wrap .form-group, .register-form-wrap .form-group {
        border-bottom: 1px solid #dce0e0
    }

        .login-form-wrap .form-group:last-of-type, .register-form-wrap .form-group:last-of-type {
            border-bottom: none
        }

    .login-form-wrap .username-field:after, .register-form-wrap .username-field:after {
        content: ""
    }

    .login-form-wrap .password-field:after, .register-form-wrap .password-field:after {
        content: ""
    }

    .login-form-wrap .email-field:after, .register-form-wrap .email-field:after {
        content: ""
    }

    .login-form-wrap .phone-field:after, .register-form-wrap .phone-field:after {
        content: ""
    }

@media (min-width:768px) {
    .elementor-column.elementor-col-15, .elementor-column[data-col="15"] {
        width: 15%
    }

    .elementor-column.elementor-col-35, .elementor-column[data-col="35"] {
        width: 35%
    }

    .elementor-column.elementor-col-45, .elementor-column[data-col="45"] {
        width: 45%
    }

    .elementor-column.elementor-col-55, .elementor-column[data-col="55"] {
        width: 55%
    }

    .elementor-column.elementor-col-65, .elementor-column[data-col="65"] {
        width: 65%
    }
}

@media (max-width:479px) {
    .elementor-column.elementor-xs-15 {
        width: 15%
    }

    .elementor-column.elementor-xs-35 {
        width: 35%
    }

    .elementor-column.elementor-xs-45 {
        width: 45%
    }

    .elementor-column.elementor-xs-55 {
        width: 55%
    }

    .elementor-column.elementor-xs-65 {
        width: 65%
    }
}

@media (max-width:767px) {
    .elementor-column.elementor-sm-15 {
        width: 15%
    }

    .elementor-column.elementor-sm-35 {
        width: 35%
    }

    .elementor-column.elementor-sm-45 {
        width: 45%
    }

    .elementor-column.elementor-sm-55 {
        width: 55%
    }

    .elementor-column.elementor-sm-65 {
        width: 65%
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .elementor-column.elementor-md-15 {
        width: 15%
    }

    .elementor-column.elementor-md-35 {
        width: 35%
    }

    .elementor-column.elementor-md-45 {
        width: 45%
    }

    .elementor-column.elementor-md-55 {
        width: 55%
    }

    .elementor-column.elementor-md-65 {
        width: 65%
    }
}

.print-page {
    font-size: 14px
}

.print-main-wrap {
    background-color: #fff
}

.print-wrap {
    max-width: 768px;
    margin: 0 auto
}

.print-logo-wrap, .print-title-wrap {
    padding: 30px 0
}

.print-logo-wrap {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #dce0e0
}

    .print-logo-wrap .logo {
        margin: 0 0 10px
    }

.print-title-wrap h1 {
    font-size: 24px;
    margin-bottom: 3px
}

.print-title-wrap .item-address {
    margin-bottom: 0
}

.print-title-wrap .item-price-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    color: #000
}

    .print-title-wrap .item-price-wrap .item-price {
        font-size: 20px
    }

    .print-title-wrap .item-price-wrap .item-sub-price {
        font-size: 14px
    }

.print-banner-wrap .qr-code {
    background-color: #fff;
    padding: 15px 0 0 15px
}

.print-content .print-section {
    border-top: 1px solid #dce0e0;
    margin-top: 20px
}

.print-content .print-title {
    padding-top: 40px
}

.print-content .block-content-wrap .list-1-cols li, .print-content .block-content-wrap .list-2-cols li, .print-content .block-content-wrap .list-3-cols li {
    padding: 0;
    border-bottom: none;
    line-height: 32px;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial
}

    .print-content .block-content-wrap .list-1-cols li span, .print-content .block-content-wrap .list-2-cols li span, .print-content .block-content-wrap .list-3-cols li span {
        float: none
    }

    .print-content .block-content-wrap .list-1-cols li .houzez-icon, .print-content .block-content-wrap .list-2-cols li .houzez-icon, .print-content .block-content-wrap .list-3-cols li .houzez-icon {
        line-height: 32px
    }

.print-content .floor-plan-wrap {
    border: 1px solid #dce0e0;
    margin-bottom: 30px
}

.print-content .floor-plan-top {
    padding: 20px 30px;
    border-bottom: 1px solid #dce0e0
}

.print-content .floor-plan-description {
    padding: 20px 30px
}

.print-title {
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 18px
}

a:active, a:focus, a:hover, button:active, button:focus, button:hover, input:active, input:focus, input:hover {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle, .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .form-control:focus, .show > .btn-light.dropdown-toggle:focus {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    top: 10px
}

.bootstrap-select .bs-ok-default:after, .bootstrap-select .dropdown-toggle::after {
    font-family: houzez-iconfont;
    border-style: none
}

.bootstrap-select .dropdown-toggle::after {
    content: "";
    font-size: 10px;
    font-weight: 700
}

.bootstrap-select .bs-ok-default:after {
    content: "";
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.bootstrap-select > .dropdown-toggle:after {
    margin-top: 0
}

.bootstrap-select .dropdown-menu.inner {
    text-transform: none
}

.actions-btn {
    height: auto
}

.bootstrap-select .btn {
    font-weight: 400
}

.dropdown-toggle::after {
    margin-left: 15px
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #a1a7a8
}

.bt-full-width-content-wrap {
    margin-bottom: 30px
}

.ui-button, .ui-slider-horizontal .ui-slider-range, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
    background: #fff;
    border: 1px solid #dce0e0
}

.ui-widget.ui-widget-content {
    height: 9px
}

.ui-slider-horizontal .ui-slider-handle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: -11px;
    text-align: center;
    border-radius: 4px
}

    .ui-slider-horizontal .ui-slider-handle:after {
        font-size: 11px;
        content: "";
        font-family: houzez-iconfont;
        top: -1px;
        left: -1px;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .ui-slider-horizontal .ui-slider-handle:hover {
        cursor: pointer
    }

@media (min-width:992px) {
    .ui-slider-horizontal .ui-slider-handle:last-of-type {
        margin-left: -22px
    }
}

.ui-slider-horizontal .ui-slider-handle.ui-state-active {
    color: #222
}

.ui-slider-horizontal {
    height: 5px
}

    .ui-slider-horizontal .ui-slider-range {
        height: 3px;
        top: 2px;
        border: none
    }

.ui-state-focus {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

.ui-widget.ui-widget-content {
    border: 1px solid #dce0e0
}

.nav-pills .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 2px 0 0;
    border-radius: 4px 4px 0 0;
    padding: 12px 20px
}

@media (max-width:767.98px) {
    .nav-pills .nav-link {
        padding: 15px 20px
    }
}

.nav-pills .nav-link.active {
    background-color: #fff;
    color: #000
}

.nav-pills .nav-link.active {
    background-color: #fff;
    color: #000
}

.nav-pills .nav-link input[type=radio] {
    left: -10000px
}

.top-banner-wrap .nav-pills .nav-link.active {
    background-color: #fff !important;
    color: #000 !important
}

.modal {
    z-index: 1080
}

.card {
    border: none;
    background-color: transparent
}

.fc-event, .fc-event:hover {
    color: #fff !important
}

.fc-unthemed th {
    background-color: transparent;
    border-color: transparent;
    color: #111313;
    padding: 0 0 20px
}

.fc-head .fc-head-container, .fc-unthemed thead {
    background-color: transparent;
    border-color: transparent
}

.fc-head .fc-head-container {
    border-bottom: 2px solid #dce0e0
}

.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td {
    border-color: #fff
}

.fc-body {
    background-color: #fff
}

.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
    margin-left: 10px
}

.fc-unthemed td.fc-today {
    background-color: #edfbf0
}

.fc-event {
    padding: 5px 10px
}

.fc-day-grid-event {
    margin: 2px 5px
}

.os-scrollbar, .os-scrollbar-handle, .os-scrollbar-track {
    height: 20px !important;
    border-radius: 0 !important
}

.os-scrollbar-handle {
    background: #ced4d4 !important
}

.os-scrollbar-track {
    background: #fff !important
}

.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal, .os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden > .os-scrollbar-horizontal {
    top: calc(100% - 20px)
}

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
    background-image: none
}

.page-item.disabled .page-link {
    border-color: transparent;
    color: #636363
}

.leaflet-popup-content {
    margin: 0 !important
}

.leaflet-popup-content-wrapper {
    border-radius: 0 !important;
    padding: 0 !important
}

#houzez-properties-map a.leaflet-popup-close-button {
    color: #fff;
    background: #000;
    height: 20px;
    padding: 0;
    width: 20px;
    line-height: 18px;
    right: -20px
}

.elementor-widget-houzez_elementor_search .form-group {
    margin-bottom: 0
}

.advanced-search-shortcode .advanced-search-filters .form-group, .elementor-widget-container .advanced-search-widget .form-group {
    margin-bottom: 15px
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder {
    opacity: 1
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-moz-placeholder {
    opacity: 1
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual:-ms-input-placeholder {
    opacity: 1
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-ms-input-placeholder {
    opacity: 1
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::placeholder {
    opacity: 1
}

.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder {
    opacity: 1
}

.leaflet-container {
    z-index: 0
}

.lSAction > a {
    z-index: 1 !important
}
/*Houzez Styling Options.css*/
.accordion-title:before, .agent-list-wrap .agent-list-contact li a:hover, .agent-list-wrap .agent-list-content h2 a:hover, .agent-nav-wrap .nav-pills .nav-link, .blog-post-content-widget h4 a:hover, .board-message-icon-wrap.active, .btn-apply, .btn-clear, .btn-primary-outlined, .btn-primary-outlined:before, .chart-nav .nav-pills .nav-link.active, .dashboard-side-menu-wrap .side-menu-dropdown a.active, .dashboard-statistic-block h3 .fa, .item-title a:hover, .item-wrap-v6 .item-price-wrap, .listing-switch-view .switch-btn.active, .listing-v6 .list-view .item-body .item-price-wrap, .menu-edit-property li a.active, .menu-edit-property li a:hover, .page-link, .page-link:hover, .post-title-wrap h2 a:hover, .primary-text, .sort-by .bootstrap-select .bs-placeholder, .sort-by .bootstrap-select > .btn, .sort-by .bootstrap-select > .btn:active, .statistic-referrals-list li a:hover, a, a:active, a:focus, a:hover {
    color: #1976d2
}

    .agent-nav-wrap .nav-pills .nav-link.active, .board-message-icon-wrap .notification-circle, .btn-primary-outlined:hover, .compare-table .table-hover > tbody > tr:hover, .control input:checked ~ .control__indicator, .datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled], .fc-event, .fc-event-dot, .login-register-form .modal-header, .mobile-property-tools .nav-pills .nav-link.active, .page-item.active .page-link, .post-tag, .primary-label, .slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover, .top-banner-wrap .nav-pills .nav-link, .ui-slider-horizontal .ui-slider-range {
        background-color: #1976d2
    }

    .agent-nav-wrap .nav-pills .nav-link, .agent-nav-wrap .nav-pills .nav-link.active, .btn-primary-outlined, .chart-nav .nav-pills .nav-link.active, .control input:checked ~ .control__indicator, .dashaboard-snake-nav .step-block.active, .fc-event, .fc-event-dot, .mobile-property-tools .nav-pills .nav-link.active, .page-item.active .page-link, .save-search-form-wrap {
        border-color: #1976d2
    }

.slick-arrow:hover {
    background-color: rgba(0,174,255,.65)
}

.slick-arrow {
    background-color: #1976d2
}

.property-banner .nav-pills .nav-link.active {
    background-color: rgba(0,174,255,.65) !important
}

.property-navigation-wrap a.active {
    color: #1976d2;
    -webkit-box-shadow: inset 0 -3px #1976d2;
    box-shadow: inset 0 -3px #1976d2
}

.table-new td {
    background-color: rgba(0,174,255,.05)
}

.btn-primary, .fc-button-primary {
    color: #fff;
    background-color: #1976d2;
    border-color: #1976d2
}

    .btn-primary:focus, .btn-primary:focus:active, .fc-button-primary:focus, .fc-button-primary:focus:active {
        color: #fff;
        background-color: #1976d2;
        border-color: #1976d2
    }

    .btn-primary:hover, .fc-button-primary:hover {
        color: #fff;
        background-color: #33beff;
        border-color: #33beff
    }

    .btn-primary:active, .btn-primary:not(:disabled):not(:disabled):active, .fc-button-primary:active, .fc-button-primary:not(:disabled):not(:disabled):active {
        color: #fff;
        background-color: #33beff;
        border-color: #33beff
    }

.btn-secondary {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

    .btn-secondary:focus, .btn-secondary:focus:active {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745
    }

    .btn-secondary:hover {
        color: #fff;
        background-color: #34ce57;
        border-color: #34ce57
    }

    .btn-secondary:active, .btn-secondary:not(:disabled):not(:disabled):active {
        color: #fff;
        background-color: #34ce57;
        border-color: #34ce57
    }

.btn-primary-outlined {
    color: #1976d2;
    background-color: transparent;
    border-color: #1976d2
}

    .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
        color: #1976d2;
        background-color: transparent;
        border-color: #1976d2
    }

    .btn-primary-outlined:hover {
        color: #fff;
        background-color: #33beff;
        border-color: #33beff
    }

    .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
        color: #1976d2;
        background-color: rgba(26,26,26,0);
        border-color: #33beff
    }

.btn-secondary-outlined {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745
}

    .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
        color: #28a745;
        background-color: transparent;
        border-color: #28a745
    }

    .btn-secondary-outlined:hover {
        color: #fff;
        background-color: #34ce57;
        border-color: #34ce57
    }

    .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
        color: #28a745;
        background-color: rgba(26,26,26,0);
        border-color: #34ce57
    }

.btn-call {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745
}

    .btn-call:focus, .btn-call:focus:active {
        color: #28a745;
        background-color: transparent;
        border-color: #28a745
    }

    .btn-call:hover {
        color: #28a745;
        background-color: rgba(26,26,26,0);
        border-color: #34ce57
    }

    .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
        color: #28a745;
        background-color: rgba(26,26,26,0);
        border-color: #34ce57
    }

.header-v1 .header-inner-wrap, .header-v1 .navbar-logged-in-wrap {
    line-height: 60px;
    height: 60px
}

.header-v2 .header-top .navbar {
    height: 110px
}

.header-v2 .header-bottom .header-inner-wrap, .header-v2 .header-bottom .navbar-logged-in-wrap {
    line-height: 54px;
    height: 54px
}

.header-v3 .header-top .header-contact-wrap, .header-v3 .header-top .header-inner-wrap {
    height: 80px;
    line-height: 80px
}

.header-v3 .header-bottom .header-inner-wrap, .header-v3 .header-bottom .navbar-logged-in-wrap {
    line-height: 54px;
    height: 54px
}

.header-v4 .header-inner-wrap, .header-v4 .navbar-logged-in-wrap {
    line-height: 90px;
    height: 90px
}

.header-v5 .header-top .header-inner-wrap, .header-v5 .header-top .navbar-logged-in-wrap {
    line-height: 110px;
    height: 110px
}

.header-v5 .header-bottom .header-inner-wrap {
    line-height: 54px;
    height: 54px
}

.header-v6 .header-inner-wrap, .header-v6 .navbar-logged-in-wrap {
    height: 60px;
    line-height: 60px
}

#main-wrap, body {
    background-color: #f8f8f8
}

.agent-information .agent-phone span a, .agent-list-wrap .agent-list-contact li a, .agent-list-wrap .agent-list-content h2 a, .blog-post-content-widget h4 a, .blog-post-item-v1 .blog-post-title h3 a, .bootstrap-select .text, .btn-light-grey-outlined:hover, .chart-nav .nav-pills .nav-link, .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder, .dashboard-table-properties td .property-payment-status, .deals-nav-tab.nav-pills .nav-link, .form-control, .fw-property-features-left li a, .fw-property-floor-plans-wrap .floor-plans-tabs a, .item-parallax-wrap .item-price-wrap, .item-title a, .item-wrap-v2 .item-amenities li span, .item-wrap-v2 .item-amenities li:before, .lead-nav-tab.nav-pills .nav-link, .lightbox-content-wrap .item-price-wrap, .list-view .item-body .item-price-wrap, .listing-tabs .nav-tabs .nav-link, .login-register-form .modal-header .login-register-tabs .nav-link.active, .menu-edit-property li a, .mobile-property-title .item-price-wrap .item-price, .page-title-wrap .item-price-wrap, .payment-method-block .radio-tab .control-text, .post-title-wrap h2 a, .property-item-widget .right-property-item-widget-wrap .item-price-wrap, .property-overview-wrap ul li strong, .property-slider-item .item-price-wrap, .statistic-referrals-list li a, body, button:not(.bs-placeholder) .filter-option-inner-inner {
    color: #222
}

.main-nav .navbar-nav .nav-item .dropdown-menu {
    background-color: #fff
}

.main-nav .navbar-nav .nav-item .nav-item a {
    color: #004274;
    border-bottom: 1px solid #dce0e0
}

    .main-nav .navbar-nav .nav-item .nav-item a:active, .main-nav .navbar-nav .nav-item .nav-item a:hover {
        color: #1976d2
    }

.header-v1 {
    background-color: #004274;
    border-bottom: 1px solid #004274
}

    .header-v1 a {
        color: #fff
    }

        .header-v1 a:active, .header-v1 a:hover {
            color: #1976d2;
            background-color: rgba(0,174,255,.1)
        }

.header-v2 .header-contact-wrap, .header-v2 .header-top {
    background-color: #fff
}

.header-v2 .header-bottom {
    background-color: #004274;
    border-color: rgba(0,174,255,.2)
}

.header-v2 .header-contact-wrap .header-contact-right {
    color: #004274
}

.header-v2 .header-contact-left {
    color: #004274
}

.header-v2 .navbar-nav > li, .header-v2 .navbar-nav > li:first-of-type {
    border-color: rgba(0,174,239,.2)
}

.header-v2 a {
    color: #fff
}

    .header-v2 a:active, .header-v2 a:hover {
        color: #1976d2;
        background-color: rgba(0,174,255,.1)
    }

.header-v2 .header-social-icons a {
    color: #004274
}

.header-v3 .header-top {
    background-color: #004274
}

.header-v3 .header-bottom {
    background-color: #004274
}

.header-v3 .header-contact, .header-v3-mobile {
    background-color: #1976d2;
    color: #fff
}

.header-v3 .header-bottom, .header-v3 .login-register, .header-v3 .navbar-nav > li, .header-v3 .navbar-nav > li:first-of-type {
    border-color: rgba(0,174,239,.2)
}

.header-v3 a {
    color: #fff
}

    .header-v3 a:active, .header-v3 a:hover {
        color: #1976d2;
        background-color: rgba(0,174,255,.1)
    }

.header-v3 .header-social-icons a {
    color: #004274
}

.header-v4 {
    background-color: #fff
}

    .header-v4 a {
        color: #004274
    }

        .header-v4 a:active, .header-v4 a:hover {
            color: #1976d2;
            background-color: rgba(0,174,255,.1)
        }

.header-v5 .header-top {
    background-color: #fff
}

.header-v5 .header-bottom {
    background-color: #004274
}

.header-v5 .header-bottom, .header-v5 .navbar-nav > li, .header-v5 .navbar-nav > li:first-of-type {
    border-color: rgba(0,174,239,.2)
}

.header-v5 a {
    color: #fff
}

    .header-v5 a:active, .header-v5 a:hover {
        color: #1976d2;
        background-color: rgba(0,174,255,.1)
    }

.header-v5 .header-social-icons a {
    color: #004274
}

.header-v6 .header-top {
    background-color: #004274
}

.header-v6 a {
    color: #fff
}

    .header-v6 a:active, .header-v6 a:hover {
        color: #1976d2;
        background-color: rgba(0,174,255,.1)
    }

.header-v6 .header-social-icons a {
    color: #fff
}

.switcher-wrap .dropdown-menu, .top-bar-wrap {
    background-color: #000
}

    .switcher-wrap .dropdown-menu, .top-bar-contact, .top-bar-slogan, .top-bar-wrap .btn, .top-bar-wrap .navbar-toggler, .top-bar-wrap a {
        color: #fff
    }

        .switcher-wrap .dropdown-menu li:active, .switcher-wrap .dropdown-menu li:hover, .top-bar-wrap .btn:active, .top-bar-wrap .btn:hover, .top-bar-wrap a:active, .top-bar-wrap a:hover {
            color: #1976d2
        }

.header-transparent-wrap .header-v4 {
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.2)
}

    .header-transparent-wrap .header-v4 a {
        color: #fff
    }

        .header-transparent-wrap .header-v4 a:active, .header-transparent-wrap .header-v4 a:hover {
            color: #fff;
            background-color: rgba(255,255,255,.1)
        }

    .header-transparent-wrap .header-v4 .btn-create-listing {
        color: #fff;
        border: 1px solid #fff;
        background-color: rgba(255,255,255,.2)
    }

        .header-transparent-wrap .header-v4 .btn-create-listing:active, .header-transparent-wrap .header-v4 .btn-create-listing:hover {
            color: #fff;
            border: 1px solid #1976d2;
            background-color: rgba(0,174,255,.65)
        }

.header-main-wrap .btn-create-listing {
    color: #fff;
    border: 1px solid #1976d2;
    background-color: #1976d2
}

    .header-main-wrap .btn-create-listing:active, .header-main-wrap .btn-create-listing:hover {
        color: #fff;
        border: 1px solid #1976d2;
        background-color: rgba(0,174,255,.65)
    }

.header-mobile {
    background-color: #004274
}

    .header-mobile .toggle-button-left, .header-mobile .toggle-button-right {
        color: #fff
    }

.nav-mobile .main-nav, .nav-mobile .navi-login-register {
    background-color: #fff
}

.nav-mobile .houzez-megamenu-inner .sub-menu .sub-menu li:last-of-type a, .navi-login-register .houzez-megamenu-inner .sub-menu .sub-menu li:last-of-type a {
    border-color: #dce0e0
}

.nav-mobile .main-nav .nav-item a, .navi-login-register .main-nav .nav-item a {
    color: #004274;
    border-color: #dce0e0;
    background-color: #fff
}

.nav-mobile .main-nav .sub-menu a, .navi-login-register .main-nav .sub-menu a {
    background-color: #f9f9f9;
    color: #000
}

.nav-mobile .btn-create-listing, .navi-login-register .btn-create-listing {
    color: #fff;
    border: 1px solid #1976d2;
    background-color: #1976d2
}

    .nav-mobile .btn-create-listing:active, .nav-mobile .btn-create-listing:hover, .navi-login-register .btn-create-listing:active, .navi-login-register .btn-create-listing:hover {
        color: #fff;
        border: 1px solid #1976d2;
        background-color: rgba(0,174,255,.65)
    }

.logged-in-nav a {
    color: #004274;
    border-color: #dce0e0;
    background-color: #fff
}

    .logged-in-nav a:active, .logged-in-nav a:hover {
        color: #1976d2;
        background-color: rgba(0,174,255,.1);
        border-color: #dce0e0
    }

.advanced-search ::-webkit-input-placeholder, .advanced-search-banner-wrap ::-webkit-input-placeholder, .bootstrap-select > .btn, .form-control::-webkit-input-placeholder, .overlay-search-advanced-module ::-webkit-input-placeholder, .search-banner-wrap ::-webkit-input-placeholder {
    color: #a1a7a8
}

.advanced-search ::-webkit-input-placeholder, .advanced-search-banner-wrap ::-webkit-input-placeholder, .bootstrap-select > .btn, .form-control::placeholder, .overlay-search-advanced-module ::-webkit-input-placeholder, .search-banner-wrap ::-webkit-input-placeholder {
    color: #a1a7a8
}

.advanced-search ::-moz-placeholder, .advanced-search-banner-wrap ::-moz-placeholder, .overlay-search-advanced-module ::-moz-placeholder, .search-banner-wrap ::-moz-placeholder {
    color: #a1a7a8
}

.advanced-search :-ms-input-placeholder, .advanced-search-banner-wrap ::-ms-input-placeholder, .overlay-search-advanced-module ::-ms-input-placeholder, .search-banner-wrap :-ms-input-placeholder {
    color: #a1a7a8
}

.advanced-search :-moz-placeholder, .advanced-search-banner-wrap :-moz-placeholder, .overlay-search-advanced-module :-moz-placeholder, .search-banner-wrap :-moz-placeholder {
    color: #a1a7a8
}

.advanced-search .bootstrap-select > .btn, .advanced-search .form-control, .advanced-search-banner-wrap .bootstrap-select > .btn, .advanced-search-banner-wrap .form-control, .advanced-search-v2 .advanced-search-btn, .advanced-search-v2 .advanced-search-btn:hover, .location-trigger, .overlay-search-advanced-module .bootstrap-select > .btn, .overlay-search-advanced-module .form-control, .search-banner-wrap .bootstrap-select > .btn, .search-banner-wrap .form-control, .step-search-wrap .bootstrap-select > .btn, .step-search-wrap .form-control, .vertical-search-wrap .bootstrap-select > .btn, .vertical-search-wrap .form-control {
    border-color: #dce0e0
}

.advanced-search-nav, .overlay-search-advanced-module, .search-expandable {
    background-color: #004274
}

.advanced-search-btn {
    color: #1976d2;
    background-color: #fff;
    border-color: #dce0e0
}

    .advanced-search-btn:active, .advanced-search-btn:hover {
        color: #fff;
        background-color: #1976d2;
        border-color: #1976d2
    }

    .advanced-search-btn:focus {
        color: #1976d2;
        background-color: #fff;
        border-color: #dce0e0
    }

.bootstrap-select .dropdown-item:focus, .bootstrap-select .dropdown-item:hover {
    background-color: rgba(0,174,255,.1)
}

.control--checkbox, .control--radio, .features-list-wrap .btn-features-list, .features-list-wrap .control--checkbox, .overlay-search-advanced-module .overlay-search-module-close, .overlay-search-advanced-module .search-title, .range-text {
    color: #222
}

.dashboard-side-wrap {
    background-color: #002b4b
}

.side-menu a {
    color: #839eb2
}

    .side-menu a.active, .side-menu a:hover, .side-menu-dropdown a {
        color: #fff
    }

.label-featured {
    background-color: #77c720;
    color: #fff
}

.detail-wrap {
    background-color: rgba(0,174,255,.1);
    border-color: #1976d2
}

.footer-top-wrap {
    background-color: #004274
}

.footer-bottom-wrap {
    background-color: #00335a
}

    .footer-bottom-wrap, .footer-bottom-wrap a, .footer-top-wrap, .footer-top-wrap .blog-post-content-widget, .footer-top-wrap .blog-post-content-widget h4 a, .footer-top-wrap .form-tools .control, .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities, .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap, .footer-top-wrap .slick-dots li button::before, .footer-top-wrap .slick-dots li.slick-active button:before, .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span, .footer-top-wrap a {
        color: #fff
    }

        .footer-bottom-wrap a:hover, .footer-top-wrap .blog-post-content-widget h4 a:hover, .footer-top-wrap a:hover {
            color: #1976d2
        }

body {
    font-family: Roboto,sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 300;
    text-align: left;
    text-transform: none
}

.btn {
    font-family: Roboto,sans-serif;
    font-size: 15px;
    font-weight: 500
}

.bootstrap-select .text, .form-control, .sort-by-title {
    font-family: Roboto,sans-serif;
    font-size: 15px;
    font-weight: 400
}

b, label, strong {
    font-weight: 600
}

.btn-create-listing, .dropdown-menu, .logged-in-nav, .login-register, .main-nav {
    font-family: Roboto,sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-transform: none
}

.item-title, h1, h2, h3, h4, h5, h6 {
    font-family: Roboto,sans-serif;
    font-weight: 500;
    text-transform: inherit
}

.post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
    font-weight: 700;
    text-transform: inherit;
    text-align: inherit
}

.switcher-wrap .dropdown-menu, .top-bar-wrap, .top-bar-wrap .dropdown-menu {
    background-color: #000
}

    .switcher-wrap .dropdown-menu, .top-bar-contact, .top-bar-slogan, .top-bar-wrap .btn, .top-bar-wrap .dropdown-menu, .top-bar-wrap .navbar-toggler, .top-bar-wrap a {
        color: #fff
    }

        .switcher-wrap .dropdown-menu li:active, .switcher-wrap .dropdown-menu li:hover, .top-bar-wrap .btn:active, .top-bar-wrap .btn:hover, .top-bar-wrap .dropdown-menu li:active, .top-bar-wrap .dropdown-menu li:hover, .top-bar-wrap a:active, .top-bar-wrap a:hover {
            color: #1976d2;
            background-color: transparent
        }
