#view-on-map {
    color: #c0000d;
    font-family: 'DM Sans' !important;
    text-decoration: none;
    cursor: pointer;
}

.kre8tive-gallery {
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.kre8tive-gallery:not([data-list="true"]) {
    height: 100%;
}

.kre8tive-gallery__main {
    width: 100%;
    height: 100%;
}

.kre8tive-gallery__image {
    display: block;
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
}

.kre8tive-gallery-list {
    display: flex;
    margin: 0;
    padding: 0;
}

.kre8tive-gallery-list__item {
    cursor: pointer;
    list-style: none;
    position: relative;
}

.kre8tive-gallery-list__item.active:after {
    content: none;
}

.kre8tive-gallery-list__item:after {
    background-color: rgba(0, 0, 0, .7);
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.kre8tive-gallery-list__image {
    display: block;
    width: 100%;
}

.kre8tive-gallery-prev,
.kre8tive-gallery-next {
    background-color: rgba(0, 0, 0, 0.4);
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -21px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.35s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
    -webkit-user-select: none;
    z-index: 1;
}

.kre8tive-gallery-prev:hover,
.kre8tive-gallery-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.kre8tive-gallery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.kre8tive-tab-wrap {
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.kre8tive-tab-wrap:hover {
    box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19);
}

.kre8tive-tab {
    display: none;
}

.kre8tive-tab:checked:nth-of-type(1)~.kre8tive-tab__content:nth-of-type(1) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.kre8tive-tab:checked:nth-of-type(2)~.kre8tive-tab__content:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.kre8tive-tab:checked:nth-of-type(3)~.kre8tive-tab__content:nth-of-type(3) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.kre8tive-tab:checked:nth-of-type(4)~.kre8tive-tab__content:nth-of-type(4) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.kre8tive-tab:checked:nth-of-type(5)~.kre8tive-tab__content:nth-of-type(5) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.kre8tive-tab:first-of-type:not(:last-of-type)+label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.kre8tive-tab:not(:first-of-type):not(:last-of-type)+label {
    border-radius: 0;
}

.kre8tive-tab:last-of-type:not(:first-of-type)+label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.kre8tive-tab:checked+label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
}

.kre8tive-tab:checked+label:hover {
    box-shadow: 0 -1px 0 #fff inset;
    background-color: #fff;
}

.kre8tive-tab+label {
    box-shadow: 0 -1px 0 #eee inset;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
    flex-grow: 3;
    text-align: center;
    background-color: #f2f2f2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 50px;
    box-sizing: border-box;
    padding: 15px;
}

.kre8tive-tab+label:hover {
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset;
}

.kre8tive-tab__content {
    padding: 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    border-radius: 6px;
}

#preload-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    z-index: 999;
}

#preloader {

    background-image: url('https://realtor.viib.ca/details/preloader.svg');
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
}

.dmTable .table-wrapper tbody tr:first-child th {
    border-top: none !important;
}

.dmTable .table-wrapper tbody tr:last-child td {
    border-bottom: none !important;
}
.dmTable .table-wrapper tbody tr:last-child{
    border: none !important;
}
.dmTable .table-wrapper tbody tr:first-child {
    border: none !important;
}
.dmTable .table-wrapper tbody{
    border: none !important;
}
.dmTable .table {
    border: none !important;
}
.dmTable .table-wrapper {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}
