:root {
    --main-color: #333;
    --oats: #cfa574;
    --sand: #e5c89e;
    --grey: #eef1f3;
    --blue-100: #abe0fb;
    --blue-400: #0098db;
    --blue-700: #00314f;
    --green: hsl(33deg 33% 89% / 50%);
    --warm: #7bd45a;
    --font-header: sweet-sans-pro, sans-serif;
    --font-body: "Rethink Sans", sans-serif;
    --font-bt: "Rethink Sans", sans-serif;
    --mw-super: calc(1240px + 2rem);
    --mw-full: calc(1120px + 2rem);
    --mw-md: calc(960px + 2rem);
    --mw-sm: calc(800px + 2rem);
    --fade-bt: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    --br: 4px;
    interpolate-size: allow-keywords;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,
::after,
::before {
    box-sizing: border-box;
}
body.home,
html.home {
    height: 100%;
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
    font-variant-numeric: lining-nums;
    -moz-font-feature-settings: "lnum";
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}
img,
svg,
video {
    display: block;
    max-width: 100%;
}
button,
input {
    font: inherit;
    color: var(--main-color);
}
fieldset {
    margin: 0;
    padding: 0;
    border-width: 0;
}
*,
h5,
h6,
p {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
    padding: 0;
}
p {
    margin-bottom: 1rem;
    text-wrap: pretty;
}
ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
body {
    color: var(--main-color);
    background-color: #fff;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5em;
    width: 100%;
    position: relative;
    font-optical-sizing: auto;
}
main {
    position: relative;
}
h1,
h2,
h3,
h4 {
    line-height: 1.2em;
    text-wrap: balance;
    margin-bottom: 0.5em;
    font-weight: normal;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 2px;
}
h1 {
    font-size: 3rem;
}

.mt05{margin-top: .5rem;}
.mt1 {margin-top: 1rem;}
.mt15{margin-top: 1.5rem;}
.mt2 {margin-top: 2rem;}
.mt3 {margin-top: 3rem;}
.mt4 {margin-top: 4rem;}
.mt5 {margin-top: 5rem;}

.mb0 {margin-bottom: 0;}
.mb1 {margin-bottom: 1rem;}
.mb2 {margin-bottom: 2rem;}
.mb3 {margin-bottom: 3rem;}
.mb4 {margin-bottom: 4rem;}

.pt1 {padding-top: 1rem;}
.pt2 {padding-top: 2rem;}
.pb1 {padding-bottom: 1rem;}
.pb2 {padding-bottom: 2rem;}
.pb3 {padding-bottom: 3rem;}
.pl1 {padding-left: 1rem;}
.pr3 {padding-right: 3rem;}
.px2 {padding-left: 2rem; padding-right: 2rem}

.mxauto {margin-left: auto; margin-right: auto;}
.grid   {display: grid}
.flex   {display: flex;}
.center {justify-content: center;}
.left   {justify-content: flex-start;}
.right  {justify-content: flex-end;}
.justify{justify-content: space-between;}
.vcenter{align-items: center;}
.vtop   {align-items: flex-start;}
.gap0   {gap: 0}
.gap1   {gap: 1rem}
.gap2   {gap: 2rem}
.gap3   {gap: 3rem}
.gap4   {gap: 4rem}
.gap5   {gap: 5rem}
.gap6   {/* gap: 6rem; */}

.col.d6 {flex: 0 0 50%;}

.d-hide {display: none!important;}
.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-header);
}

a {
    color: var(--blue-400);
    text-decoration: none;
}
p a {
    text-decoration: underline;
}
b,
strong {
    font-weight: 500;
}
.button.hidden,
.hidden {
    display: none;
}
.bt-gr {
    display: flex;
    gap: 1rem;
}
.button {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #000;
    border-width: 0;
    border: 1px solid #ddd;
    font-size: 11px;
    cursor: pointer;
    line-height: 1;
    height: 40px;
    text-align: center;
    position: relative;
}
.button.ghost {
    /* background: 0 0; */
    /* color: var(--blue-400); */
    /* border: 1px solid var(--blue-100); */
    /* background: #fff; */
}
.button.white {
    border-color: #fff;
    color: #fff;
}
.button.dark {
    background: var(--cherry-dark);
    color: #ddd;
}
.button.submitting span {
    position: relative;
}
.button.submitting span:before {
    background: url(/images/loading.gif) no-repeat 0rem 50%/1rem;
    content: '';
    width: 1rem;
    height: 1rem;
    display: block;
    position: absolute;
    left: -1.5rem;
}
.button.show-map {
    display: none;
}
.ol-wide .button.show-map {
    display: block;
    background: var(--oats);
}
.button.lg {
    padding: 0 1.5em 0;
    height: 64px;
    font-size: 21px;
}

.button.sm {
    font-size: 11px;
    height: 40px;
}

.ol-filters button {
    font-size: 11px;
    height: 36px;
    /* background: hsl(0deg 0% 0% / 50%); */
    color: var(--main-color);
    border: 1px solid transparent;
    padding: 0;
}

.ol-filters button:hover {
    /* border-color: #ddd; */
}

.w-input, .w-select {
    width: 100%;
    height: 44px;
    color: #333;
    vertical-align: middle;
    background-color: var(--beige-medium);
    border: 1px solid transparent;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
}
.wrapper {
    margin: 0;
    position: relative;
}
.header {
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 10;
    padding: 4rem;
    align-items: flex-end;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(2 0 36 / 60%), rgb(2 0 36 / 0));
}

.logo {
    width: 380px;
}

footer .logo {
    width: 200px;
    margin-bottom: 1rem;
}

.header.naked {
    background: hsl(0deg 0% 100% / 80%);
    justify-content: center;
    transition: padding .5s;
    padding: 2rem;
    position: fixed;
}

.header.naked.scrolled {
    position: fixed;
    padding: 2rem;
}

.header.naked .logo {
    width: 200px;
    transition: width 0.5s;
}

.header.naked.scrolled .logo, .body-default .logo {
    width: 160px;
}

.start .header.naked {
    /* min-height: 100svh; */
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: auto; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
    /* gap: 3rem; */
    /* position: relative; */
    /* background: #fff; */
}

.start .header.naked>a {
    /* width: 80%; */
    /* margin: 0 auto; */
    /* max-width: 800px; */
}

.start .header.naked>a>img {
    /* width: 100%; */
    /* margin: auto; */
}

span.slogan {
    display: flex;
    align-items: center;
}

span.slogan:before, span.slogan:after {
    content: '';
    height: 4px;
    width: 105px;
    display: block;
    background: #000;
    margin: 0 2rem 0 0;
    border-radius: 20px;
}

span.slogan:after {
    margin: 0 0 0 2rem;
}

.hero video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
}
.hero-content {
    margin: auto;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    flex-direction: column;
    padding: 6rem 0;
    background: var(--fade-bt);
}
.hero-content:has(h1 + span) {
    background: hsl(0deg 0% 0% / 25%);
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content span {
    font-size: 1.75rem;
    max-width: 40ch;
    display: block;
    text-wrap: balance;
    line-height: 1.2;
    margin: auto;
}
.ham {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
    padding-bottom: 6px;
    position: fixed;
    right: 2rem;
    top: 2.9rem;
}
.ham span {
    background: #000;
    height: 3px;
    display: block;
}
.ham span:nth-child(2) {
    opacity: 0.75;
}
.ham span:nth-child(2) {
    /* margin-left: 5px; */
}
.ham span:nth-child(3) {
    /* margin-left: 10px; */
    opacity: 0.5;
}
.ham-nav {
    position: fixed;
    width: 40vw;
    right: -40vw;
    top: 0;
    min-height: 100svh;
    background: #fff;
    transition: right ease 0.5s;
    z-index: 9999;
    font-size: 1rem;
    max-width: 800px;
}
.ham-nav.nav-open {
    box-shadow: -1px 1px 40px hsl(var(--shadow-color) / 0.6);
    --shadow-color: 0deg 0% 50%;
    right: 0;
}
.ham-nav-wrapper {
    display: flex;
    /* padding: 5rem 3rem 0; */
    flex-wrap: wrap;
    /* gap: 2rem; */
    /* flex-direction: column; */
    justify-content: space-between;
    flex: 0 0 100%;
}
.ham-nav-wrapper a {
    display: block;
    padding: 0.5em 1em;
    color: inherit;
}
.main-menu a:hover,
.sub-menu a:hover {
    background: hsl(201deg 91% 83% / 20%);
}
.ham-nav-wrapper .main-menu a:nth-child(4),
.ham-nav-wrapper .main-menu a:nth-child(6) {
    /* margin-top: 1rem; */
}
.main-sub {
}
.main-sub {
    align-items: flex-start;
    gap: 0;
    width: 100%;
    flex: 0 0 100%;
    padding: 5rem 3rem 0;
}
.ham-social {
    margin-left: 1rem;
}
.sub-menu {
    font-size: 18px;
}
.ham-social a {
    padding: 0 0.5em 0.5em;
}
span.close-ham {
    position: absolute;
    right: 2rem;
    top: 2rem;
    cursor: pointer;
}
.ham-street h3 {
    margin-bottom: 0.25rem;
    font-family: var(--font-bt);
    font-weight: 500;
}
.ham-contact-social {
    font-size: 1rem;
}
.ham-contact {
    display: flex;
    gap: 2rem;
    color: #777;
    padding-left: 1.5rem;
    margin-top: 1rem;
}
.ham-contact a {
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.tel-mail a {
    padding: 0;
}
.tel-mail {
    padding-left: 1.5rem;
}
.ham-social img {
    width: 2rem;
}
.main-menu a,
.sub-menu a {
    opacity: 0;
}
.nav-open .main-menu a.animatein,
.nav-open .sub-menu a.animatein {
    animation-name: animatein;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}
@keyframes animatein {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.animatein:first-child {
    animation-delay: 60ms;
}
.animatein:nth-child(2) {
    animation-delay: 0.12s;
}
.animatein:nth-child(3) {
    animation-delay: 0.18s;
}
.animatein:nth-child(4) {
    animation-delay: 0.24s;
}
.animatein:nth-child(5) {
    animation-delay: 0.3s;
}
.animatein:nth-child(6) {
    animation-delay: 0.36s;
}
.animatein:nth-child(7) {
    animation-delay: 0.42s;
}
.ol-wrapper {
    max-width: var(--mw-super);
    margin: 2rem auto;
    align-items: flex-start;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.filters-container {
    width: calc(66.66% - 0.75rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ol-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    transition: width 0.5s;
}
.ol-map {
    width: calc(33.33% - 0.75rem);
    transition: width 0.5s;
    position: sticky;
    top: 2rem;
    border-radius: 4px;
    height: calc(100vh - 4rem);
    z-index: 1;
}
.the-map {
    height: 100%;
    border-radius: var(--br);
}
span.close-map {
    position: absolute;
    right: -1rem;
    top: -1.5rem;
    background: #fff;
    border-radius: 50%;
    width: 2.5rem;
    cursor: pointer;
}
.ol-map img.oc-img {
    max-width: 100%;
    margin-top: -1rem;
}
.ol-map .oc-content {
    padding: 1rem 1rem 0.5rem;
    font-size: 13px;
}
.ol-map .oc-content h2.oc-sub-title,
.ol-map .oc-price {
    font-size: 1rem;
}
.ol-map .oc-content h3 {
    font-size: 14px;
}
.ol-wrapper.ol-wide .ol-map {
    overflow: hidden;
    width: 0;
    display: none;
}
.ol-wrapper.ol-wide .ol-container {
    grid-template-columns: 1fr 1fr 1fr;
}
.ol-wrapper.ol-wide .filters-container {
    transition: width 0.5s;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ol-filters {
    padding: 8.5rem 1.5rem 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: var(--mw-super);
    margin: 0 auto 4rem;
    align-items: center;
    justify-content: center;
}
.ol-filters fieldset {
    display: flex;
    gap: 2rem;
    position: relative;
}
.ol-filters button.mixitup-control-active {
    border-bottom: 1px solid #ddd;
}
.oc-price {
    text-align: right;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
}
.oc-img-wrapper img {
    object-fit: cover;
    aspect-ratio: 3/2;
    border-radius: 4px 4px 0 0;
    filter: grayscale(1);
}
.oc-link:hover .oc-img-wrapper img {
    filter: none;
}
.oc-link {
    color: inherit;
    background: #fff;
}
.oc-img-wrapper {
    position: relative;
}
.oc-facts {
    display: flex;
    text-align: center;
    justify-content: space-between;
    gap: 0.5rem;
    line-height: 1;
    margin-top: .5rem;
    color: #777;
}
.oc-fact {
    white-space: nowrap;
    font-size: 11px;
}
.oc-content {
    display: flex;
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
}
.oc-content img {
    margin-right: 0.5rem;
    display: inline-block;
}
.oc-content h2.oc-sub-title,
.oc-content h3 {
    font-size: 11px;
    margin: 0;
    line-height: 1;
}
.oc-content h3 {
    color: #777;
    font-size: 11px;
    line-height: 1;
}
.oc-tag-wrapper,
.oc-tag.t-kommande {
    position: absolute;
    right: 0;
    top: 1rem;
    z-index: 1;
    display: flex;
    gap: 0.5rem;
}
.oc-tag.t-kommande {
    background: 0 0;
    width: 6rem;
    height: auto;
    right: auto;
    left: 0.5rem;
}
.oc-tag.t-kommande img {
    aspect-ratio: auto;
}
.oc-first-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-bt);
}
.oc-second-row {
    display: flex;
    justify-content: space-between;
    color: #777;
}
.oc-tag {
    display: flex;
    background: #000;
    color: #fff;
    text-align: center;
    align-items: center;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    height: 26px;
    padding: 0 0.5rem;
}
.t-bid {
    background: var(--oats);
}
.t-viewing {
    background: var(--blue-400);
}
.container {
    max-width: var(--mw-full);
    width: 100%;
    padding: 0 1rem;
    align-items: flex-start;
}
.ob-hero-wrapper {
    max-height: calc(100svh - 2rem);
    overflow: hidden;
    position: relative;
}
.ob-hero-wrapper figure img {
    object-fit: cover;
    width: 100%;
    max-height: 90svh;
}
.ob-short-facts h2,
.ob-short-facts h3 {
    font-size: 3rem;
    margin: 0;
    font-weight: 500;
}
.selling {
    padding-right: 4.75rem;
    flex: 0 0 66.66%;
    letter-spacing: -.25px;
}
.ob-short-facts h2.selling-header {
    margin: 0 0 .5rem;
    font-weight: 400;
    line-height: 1;
    font-family: var(--font-body);
    font-size: 2rem;
    text-transform: none;
    letter-spacing: 0;
}
.selling-title {
    display: flex;
    flex-wrap: wrap;
}
.selling-title h2,
.selling-title h3 {
    color: #777;
    font-family: var(--font-body);
    font-weight: 400;
}
.selling-title h3 {
    flex-basis: 100%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.selling-title h2 {
    font-size: 15px;
    flex-basis: 100%;
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ob-selling {
    font-size: 1.25rem;
    line-height: 1.5;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-column-gap: 1.5rem;
    grid: auto-flow dense/1fr 1fr 1fr;
}
.ob-broker {
    align-items: flex-start;
}
.ob-short-facts > .flex {
    flex-wrap: wrap;
    padding: 0 1.5rem 2.5rem;
    align-items: center;
}
.ob-short-fact-wrapper {
    position: relative;
    text-align: center;
    max-width: var(--mw-full);
}
.ob-short-fact-wrapper .row {
    background: #fff;
    font-size: 1.5rem;
    padding: 1rem;
    border-top: 1px solid #ddd;
}
.ob-short-fact-wrapper .col {
    display: flex;
    gap: 1rem;
    padding: 0 0.5rem;
    justify-content: center;
}
.ob-short-fact-wrapper .col:not(:last-child)::after {
    content: "\2022";
    color: #999;
}
.col.price span {
    position: absolute;
    font-size: 12px;
    background: var(--blue-100);
    color: var(--blue-700);
    top: -33px;
    border-radius: var(--br);
    right: -30px;
    padding: 0 6px;
}
.col.price span:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: var(--blue-100);
    border-width: 4px;
    margin-left: -19px;
}
.ob-short-facts > .flex > .ob-short-fact-wrapper > .col.price {
    flex-basis: 100%;
    font-size: 2rem;
    padding-top: 0;
}
.ob-short-facts {grid-template-columns: 2fr 1fr;max-width: var(--mw-full);margin: 4rem auto;gap: 2rem;padding: 0 2rem;}

.ob-short-facts h3 {
    color: var(--main-color);
}
.ob-short-facts h3::before {
    /* content: ", "; */
    color: var(--main-color);
}
.ob-short-facts h2 + span {
    display: block;
    font-size: 1.25rem;
    color: #777;
}
strong.short-fact-label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--main-color);
}
.ob-short-fact {
    font-size: 1rem;
    color: #777;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: .01em;
}
.broker-wrapper {
    padding: 0 0 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}
.broker {
    padding: 2rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-family: var(--font-bt);
    gap: 1rem;
}

a.broker-link {
    display: block;
    color: inherit;
    font-size: 14px;
}
.broker-img img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 70%;
    border-radius: 50%;
    width: 8rem;
    object-position: top;
}
h3.broker-header {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
}
.broker-title {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #777;
}
.ob-short-facts + .ob-short-facts {
    margin-top: 1rem;
}
.viewing-broker {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 1.5rem;
    flex: 0 0 33.33%;
}
.viewing {
    font-family: var(--font-bt);
}
h2.viewing-header {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
h3.viewing-header.int_view {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.25rem;
    margin-bottom: .5rem;
}
.viewing-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}
.viewing-txt,
.viewing-txt-default {
    color: #777;
    font-size: 14px;
    line-height: 20px;
}
.viewing-txt {
    margin-bottom: 0.5rem;
    color: #777;
    font-size: 1rem;
}

.viewing-txt-default {
    margin: 0.75rem 0 1rem;
}
#map {
    aspect-ratio: 4/2;
    max-width: var(--mw-super);
}
#map iframe {
}
.row-data {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
    flex-wrap: wrap;
    text-align: left;
}
.row-data.leader {
    margin: 0;
    flex-direction: column;
    flex: 0 0 calc(50% - 1rem);
    gap: 0;
}
.row-data.leader.w100 {
    flex: 0 0 calc(100% + 1rem);
    /* background: #F0F0F0; */
}
span.household {
    display: block;
    font-size: 14px;
}
.row-data.leader .col {
    padding: 0;
}
.col.d4 {
    flex: 1;
}
.col.d8 {
    flex: 1;
}
.col.rel-flex {
    flex: 1;
}
.col {
    position: relative;
    padding-right: 1rem;
    padding-left: 1rem;
    flex: 1;
}
.tabs .row-data.leader span {
    z-index: 999;
    position: relative;
}
.row-data.leader .col + .col {
    font-family: var(--font-bt);
    text-wrap: balance;
}
.buyer-info,
.docs-link-wrapper,
.general-interior,
.text-col {
    padding: 0 0 2rem;
    border-radius: 4px;
}

.text-col h3:first-child {
    /* margin-top: 2rem; */
}

.docs-link-wrapper {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.general-interior {
    padding: 0 0 2rem;
    font-family: var(--font-bt);
}
.nobreak {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}
.data-plain-txt {
    padding: 0;
    font-family: var(--font-bt);
    text-wrap: balance;
    flex: 0 0 100%;
}
.col-divider,
.comment-fee {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    flex: 0 0 100%;
    font-family: var(--font-bt);
    text-wrap: balance;
    color: #777;
}
.comment-fee {
    line-height: 1.25;
    color: #777;
}
.docs-link-wrapper h3,
.general-interior h3,
.maincontent-data h3,
.maincontent-data h4,
.tabs h3 {
    margin: 0 0 1rem;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    padding: 2rem 0 10px;
    font-size: 1rem;
}
.buyer-info {
    padding-top: 2rem;
    font-family: var(--font-bt);
}
.buyer-info h4 {
    font-size: 1.25rem;
    width: 100%;
    margin-bottom: 0.5rem;
    padding-top: 0;
    font-family: var(--font-body);
}
.buyer-info h4::first-child {
    margin-bottom: 2rem;
}
li.wide {
    max-width: 1200px;
}
.tabs-menu {
    display: flex;
    padding: 1rem 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    list-style: none;
    justify-content: center;
    gap: 1rem;
    background: #fff;
}
.tabs-link:hover {
    opacity: 0.75;
}
.tabs-link img,
.tabs-link svg {
    height: 1.5rem;
    margin: 0 auto 0.5rem;
}
.tabs-link a {
    white-space: nowrap;
    display: block;
    align-items: center;
    gap: 0.5rem;
    display: flex;
}
.tabs-link.active a {
    background: var(--main-color);
    color: #eee;
    border-color: var(--main-color);
}
.tabs {
    height: auto !important;
    max-width: var(--mw-super);
    list-style: none;
    position: relative;
    z-index: 1;
}
.tabs > li {
    display: none;
}
.tabs > li.active {
    display: list-item;
}
.booking .modal-header,
.interest-modal,
.viewing-modal {
    background-color: var(--beige-medium);
}
h3.viewing-header {
    font-family: var(--font-bt);
    font-weight: 400;
}
.interest-modal,
.modal,
.viewing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: auto;
    z-index: 1000;
}
.booking .modal-header,
.interest-modal,
.viewing-modal {
    background-color: hsl(0deg 0% 0% / 20%);
}
.close-interest-modal,
.close-modal,
.close-viewing-modal {
    display: flex;
    position: absolute;
    right: 1rem;
    align-items: center;
    cursor: pointer;
    top: 1rem;
}
.booking-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 92px);
    margin-top: -46px;
}
.booking-form {
    max-width: 640px;
    background: #fff;
    padding: 3rem;
    font-size: 15px;
    position: relative;
}
h2.booking-header {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.interest {
    font-size: 14px;
}
.interest .row {
    grid-row-gap: 0.5rem;
    margin: 0 -0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.i-wrapper .col,
.interest .col {
    padding: 0 0.5rem;
}
.interest .w-input,
.viewing .w-input,
.interest .w-select, 
.viewing .w-select {
    background-color: var(--grey);
}
label.radio-bt-group {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}
span.checkbox-label {
    margin-left: 0.5rem;
    line-height: 1;
}
.beskrivning .bid {
    padding: 0 0 2rem;
    font-size: 1rem;
    flex: 0 0 100%;
}
span.the-bid {
    color: #ed695f;
}
.bud {
    margin-top: -1px;
}
.bud .row {
    padding: 0.25rem 0;
}
.bud .row:has(.bid-col):not(:first-child) {
    border-top: 1px solid #ddd;
}
.col.bid-col {
    font-size: 11px;
}
.bid-col:nth-child(1) {
    flex: 0 0 40%;
    padding: 0;
}
.bid-col:nth-child(2) {
    flex: 0 0 25%;
    text-align: center;
    padding: 0;
}
.bid-col:nth-child(3) {
    flex: 0 0 37%;
    padding: 0;
    text-transform: uppercase;
}
.short-fact-label {
    gap: 0.5rem;
}
.docs-link-wrapper a {
    background: url(/images/ic_doc.svg) no-repeat 1rem 50%/1rem;
    padding: .5rem 1.5rem .5rem 2.75rem;
    display: block;
    border: 1.5px solid #000;
    font-size: 12px;
    color: #000;
}
.img-item {
    position: relative;
}
.img-item img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    max-width: 100px;
    border: 5px solid #fff;
    box-shadow: 0 0 20px 0 rgb(23 23 25 / 30%);
}

.ob-selling-tabs .img-item:nth-child(1) {
    transform: rotate(-12deg);
}

.ob-selling-tabs .img-item:nth-child(2) {
    transform: rotate(-5deg);
    margin-left: -2rem;
}

.ob-selling-tabs .img-item:nth-child(3) {
    transform: rotate(4deg);
    margin-left: -2rem;
}

.ob-selling-tabs .img-item:nth-child(4) {
    transform: rotate(-3deg);
    margin-left: -2.5rem;
}

.ob-selling-tabs .img-item:nth-child(5) {
    transform: rotate(6deg);
    margin-left: -2.1rem;
}

.ob-selling-tabs .img-item:nth-child(6) {
    transform: rotate(3deg);
    margin-left: -2.1rem;
}

.img-col .img-item:first-child {
    display: none;
}
.floorplans {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.beskrivning .oc-tag.bid {
    flex-basis: 5rem;
    padding: 0.5rem 0 0;
    position: absolute;
    top: 3.4rem;
    left: -2rem;
    background: 0 0;
}
.beskrivning .oc-tag.bid img {
    width: 5rem;
}
a.top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9;
    width: 2rem;
    height: 2rem;
}
.content-divider {
    background: var(--grey);
    margin: 0 -1rem 6rem;
    padding: 7rem 2rem 6rem;
    font-size: 18px;
    line-height: 1.5;
}
.content-divider > div {
    max-width: 800px;
}
.content {
    max-width: 760px;
    margin: 4rem auto 0;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 2rem;
}
.content h2 {
    font-size: 1.1rem;
    font-weight: 400;
    /* font-family: var(--font-body); */
    /* color: var(--blue-700); */
    margin-bottom: 1rem;
}
.content h2 a {
    border-bottom: 1px solid;
}

.integritetspolicy .content {
    grid-template-columns: 1fr;
}

.integritetspolicy .content .content-intro {
    max-width: 100%;
}
.gallery {
    gap: 1.5rem;
    max-width: var(--mw-full);
}
.gallery-col {
    flex-wrap: wrap;
    gap: 1.5rem;
}
.gallery-col:nth-child(1) {
    flex: 0 0 calc(66.66% - 1.5rem);
}

.gallery h3 {
    font-size: 36px;
    font-family: var(--font-header);
    margin-bottom: 0;
}
.gallery .txt {
    background: var(--fade-bt);
    border-radius: 0 0 var(--br) var(--br);
    padding: 3rem 2rem;
}
.gallery .txt-wrapper {
    height: 100%;
    position: relative;
}
.txt span {
    display: block;
    text-wrap: balance;
    margin-top: 0.5rem;
}
.gallery .gallery-col:nth-child(2) {
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 33.33%;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

img.puff-img {
    max-width: calc(100% + 2rem);
    margin: 1.5rem -1rem -1rem;
    border-radius: 0 0 12px 12px;
}
.circle-nav {
    justify-content: space-between;
}
.circle-nav img {
    height: 40px;
}
.circle-nav.circle-small {
    align-items: center;
}
.circle-nav.circle-small img {
    height: 32px;
}
.gallery-sold h2 {
    font-size: 4rem;
    color: var(--blue-400);
    text-align: center;
}
.gallery.gallery-sub {
    flex-direction: column;
}
.gallery.gallery-sub .gallery-col:nth-child(2) {
    flex-direction: row;
    justify-content: flex-start;
}
.gallery.gallery-sub a {
    border-radius: var(--br);
    color: #fff;
}
.p-valuation {
    flex: 0 0 calc(58.33% - 1.5rem);
    background: url(/images/p-about.jpg) no-repeat 100% 50% / cover;
}
.spec-buy {
    flex: 0 0 calc(41.66% - 1.5rem);
    flex-direction: column;
    gap: 1.5rem;
}
.p-company h3,
.spec-buy h3 {
    font-size: 2rem;
}
.p-about .txt-wrapper,
.p-valuation .txt-wrapper {
    justify-content: flex-end;
    flex-direction: column;
}
.p-buy,
.p-company,
.p-spec {
    background: var(--blue-700);
    min-height: 220px;
}
.p-buy {
    background: var(--blue-400);
}
.p-buy .txt,
.p-spec .txt {
    background: 0 0;
    border-radius: 0;
}
.p-about {
    flex: 0 0 calc(58.33% - 1.5rem);
    background: url(/images/p-valuation.jpg) no-repeat 50% / cover;
}
.p-company {
    flex: 0 0 calc(41.66% - 1.5rem);
    background: var(--oats);
}
.gallery .p-company .txt {
    color: #fff;
}
.carousel-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}
.carousel {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1rem;
    will-change: transform;
    transition: transform 0.3s ease-out;
}
.slide {
    flex: 0 0 auto;
}
.slide img {
    display: block;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--br);
}
.next-btn,
.prev-btn {
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
    background: 0 0;
    padding: 1rem;
}
.next-btn img,
.prev-btn img {
    width: 1.5rem;
}
.prev-btn img {
    transform: rotate(180deg);
}
.next-btn:hover,
.prev-btn:hover {
    opacity: 1;
}
.prev-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.next-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.slide a {
    position: relative;
}
.slide span {
    display: block;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-family: var(--font-header);
    font-size: 1.5rem;
    width: 100%;
    border-radius: 0 0 var(--br) var(--br);
    background: var(--fade-bt);
    text-align: center;
    padding: 2rem 0;
}
.content-divider h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}
.content-divider ul p {
    margin: 0;
    font-size: 1rem;
    background: url(/images/check.svg) no-repeat 0 3px/1.5rem;
    padding: 0.25rem 0 0.25rem 2rem;
}
.content-divider p {
    text-wrap: balance;
}
.bl-img,
.bl-txt {
    flex: 0 0 50%;
    font-size: 18px;
    line-height: 1.5;
}
.bl-txt p a {
    color: inherit;
}
.bl-txt ol {
    list-style: decimal;
    padding-left: 18px;
}
.bl-txt {
    padding: 0 3rem 0 0;
}
.bl-img {
    row-gap: 2rem;
    flex-wrap: wrap;
}
.bl-txt img {
    max-width: 180px;
    float: right;
    margin: 0 0 2rem 2rem;
}
.bl-img:empty,
.bl-txt:empty {
    width: 0;
    padding: 0 !important;
    flex: 0;
}
.bl-txt:has(+ .bl-img:empty) {
    flex-basis: 100%;
    margin: auto;
    background: var(--grey);
    padding: 5rem;
}
.bl-txt:empty + .bl-img {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
}
.bl-txt h3 {
    font-size: 3rem;
    text-wrap: balance;
}
.bl-txt p {
    text-wrap: pretty;
    max-width: 75ch;
}
.bl-txt h4 {
    font-weight: 600;
    font-size: 1.5rem;
}
.bl-txt ul + h4,
.bl-txt ul + p {
    margin-top: 2rem;
}
.content-summary {
    /* font-size: 18px; */
    /* color: #999; */
    text-wrap: balance;
    line-height: 1.4;
    text-wrap: balance;
}

.content-summary,
.content-summary p {
    /* text-wrap: balance; */
    /* max-width: 490px; */
    margin: 0 1rem 1rem 0;
}
input#gdpr {
    margin-top: 1px;
}
.ob-hero-wrapper:has(.hero-movie-wrapper) {
    min-height: calc(100svh - 2rem);
}
.video-wrapper {
    min-height: calc(100svh - 2rem);
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.video-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.br-puff-info img {
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1/2;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}
.br-puff-info {
    text-align: center;
    margin: auto;
}
.br-puff-info h2 {
    font-size: 1.75rem;
}
.img-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.all-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}
.img-wrapper .img-item:nth-child(1) {
    flex: 0 0 100%;
}
.dr-scroll-container {
    overflow: hidden;
    background: #fff;
}
.dr-scroll {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}
.dr-scroll figure {
    width: 100%;
    display: inline-block;
    flex-shrink: 0;
}
.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--cherry);
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.25;
}
.carousel-dot.active {
    opacity: 1;
}
footer {
    padding: 5rem;
    background: #F0F0F0;
    text-align: center;
}
address {
    font-style: normal;
}
footer h3 {
    font-size: 1.5rem;
    color: var(--blue-100);
}
footer h4 {
    font-size: 18px;
    margin-bottom: 0;
}
.ft-row {
    max-width: var(--mw-full);
    align-items: flex-start;
    gap: 5rem;
    justify-content: center;
}
.ft-row>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 14px;
    line-height: 1.5;
}
footer img {
    width: 4rem;
}
footer address p {
    white-space: nowrap;
}
.flex:has(> address) {
    gap: 2rem;
}
.address {
    gap: 2rem;
}
.ol h1 {
    max-width: 53ch;
    font-size: 2.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-align: left;
    padding: 0 0 0 4rem;
}
.tabs-col {
}
.img-col {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: sticky;
    top: 1.5rem;
}
.tabs {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
}
.tabs details {
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 1px solid #ddd;
}
details[open] {
    border: 1px solid #ddd;
    box-shadow: 10px 10px 10px 0 hsl(0deg 0% 93.33% / 50%);
}

details[open] summary {
    background: #eee;
}
.tabs details::details-content {
    block-size: 0;
    transition: block-size 0.7s, content-visibility 0.7s;
    transition-behavior: allow-discrete;
}
.tabs details[open]::details-content {
    block-size: auto;
}
.tabs summary {
    font-size: 1rem;
    color: #fff;
    background: #fff;
    padding: 1.75rem 2rem;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    letter-spacing: 2px;
    color: var(--main-color);
    /* border-top: 1px solid #ddd; */
}
.tabs summary:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 2rem;
    transition: 0.5s transform ease;
    width: 16px;
    height: 10px;
    background: transparent url(/images/arrow-down.svg) no-repeat 50% / cover;
}
.tabs details[open] > summary:before,
.accordion-item-bid[open] > summary:before {
    transform: rotate(180deg);
}
.tabs summary::-webkit-details-marker,
.tabs summary::marker,
.biddhistory summary::-webkit-details-marker,
.biddhistory summary::marker {
    display: none;
    content: "";
}
.maincontent-data.nobreak {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: flex-start;
}
.data-plain-txt strong,
.tabs .row-data.leader span strong {
    font-size: 10px;
    text-transform: uppercase;
    font-family: var(--font-header);
    letter-spacing: 1px;
    color: #777;
}
.row-data.leader .col {
    line-height: 1.4;
}
.map {
    margin-top: 1.5rem;
    border: 1px solid #ddd;
}
.beskrivning h1 {
    font-size: clamp(1rem, 2vw, 1rem);
    font-family: var(--font-header);
    margin: 0;
    padding: 3rem 2rem 1rem;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0!important;
    bottom: 95px!important;
}

.fancybox-thumbs {
    top: auto!important;
    width: auto!important;
    bottom: 0!important;
    left: 0;
    right: 0!important;
    height: 135px;
    padding: 10px 10px 5px 10px!important;
    box-sizing: border-box!important;
    background: transparent!important;
}

.fancybox-thumbs__list a {
    background-size: auto 100%;
    transition: all .5s ease;
}

.fancybox-thumbs__list a {
    margin: 10px!important;
    width: 95px!important;
    height: 95px!important;
}

.fancybox-thumbs__list a:before {
    border: 4px solid #999;
}

.ob-facts-viewing-broker {
    align-self: start;
    position: sticky;
    top: 117px;
}

.beskrivning h1 span:not(:first-child)::before {
    content: "\2022";
    color: #999;
    margin: 0 1rem;
}

.ob-hero-wrapper .all-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin: 0;
}

.logo.light {
    display: none;
}

.beskrivning .logo.light {
    display: block;
}

.short-facts-project {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: left;
    gap: 1rem;
    padding: 0 2rem;
    max-width: var(--mw-md);
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.short-facts-project .col {
    justify-content: flex-start;
    padding: 0;
}

.short-facts-project .ob-short-fact {
    font-size: 14px;
}

.short-facts-project .col:not(:last-child)::after {
    content: '';
}

.beskrivning table.prislista {
    font-size: 1rem;
    width: 100%;
    line-height: 1.5em;
    /* margin: 2rem 0 4rem; */
}

.beskrivning table.prislista .left {
    text-align: left;
}

.beskrivning table.prislista .center {
    text-align: center;
}

.beskrivning table.prislista th, .beskrivning table.prislista td {
    text-align: right;
    border-top: 1px solid #ddd;
}

.beskrivning table.prislista th, .beskrivning table.prislista td {
    padding: .75em;
}

.beskrivning table.dataTable thead th, .beskrivning table.dataTable thead td, .beskrivning table.dataTable.no-footer {
    border-bottom-width: 0;
}

.beskrivning table.prislista td.prislista__status {
    padding-left: 1em;
}

.prislista__status::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.prislista__status.reserverad::before {
    background: #e1e353;
}

.prislista__status.sald::before {
    background: #c75d38;
}

.prislista__status.tillsalu::before {
    background: #75a459;
}

table.dataTable tbody tr {
    background-color: transparent;
}

.prislista a {
    display: inline-block;
}

.prislista a.project-link {
    background: url(/images/arrow-right.svg) no-repeat 100% 53%/8px;
    padding-right: 1.25rem;
}

.prislista a.project-link.bofakta {
    background: url(/images/download.svg) no-repeat 0 50%/auto 14px;
    padding-left: 1.25rem;
}

.prislista a.project-link.planritning {
    margin-left: 1rem;
}

/*.prislista tbody tr:hover {
    background: var(--light-beige);
}*/

.beskrivning table.prislista th.price_th {
    padding-right: 2rem;
}

.limited-height {
    height: 210px;
    overflow: hidden;
    transition: height .3s ease;
    interpolate-size: allow-keywords;
    position: relative;
}

.limited-height:after {
    content: "";
    background: linear-gradient(180deg, #fff0, #fff);
    position: absolute;
    bottom: 0;
    height: 6rem;
    width: 100%;
    left: 0;
}

.limited-height.expanded {
    height: auto;
}

.limited-height.expanded:after {
    background: none;
}

.brokers .ol-container {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin: 4rem auto;
    max-width: var(--mw-sm);
    /* gap: 3rem; */
    grid-column: span 2;
}

.brokers .oc-img-wrapper img {
    width: 100%;
    /* border: 10px solid #fff; */
    /* box-shadow: 0 0 20px 0 rgb(23 23 25 / 30%); */
    border-radius: 5px;
    filter: grayscale(1);
    object-position: top;
}

.brokers .oc-first-row, 
.brokers .oc-second-row {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.brokers .oc-second-row span {
    flex-basis: 100%;
    font-size: 13px;
    line-height: 1.5;
}

.brokers .oc-content h2.oc-sub-title {
    font-family: var(--font-header);
}

.brokers .oc-img-wrapper {
    border: 10px solid #fff;
    border-radius: 10px;
    /* box-shadow: 0 0 20px 0 rgb(23 23 25 / 30%); */
}

.nohero .header {
    /* position: static; */
    /* background: #fff; */
}

.image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 400px;
}

.default-image,
.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* justerar bilden sÃ¥ den fyller hela ytan snyggt */
  transition: opacity 0.5s ease;
}

.hover-image {
  opacity: 0;
}

.image-container:hover .hover-image {
  opacity: 1;
  filter: none;
}

.image-container:hover .default-image {
  opacity: 0;
}

form.kontaktform {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 1rem;
    font-size: 14px;
    display: grid;
}

form.kontaktform .input-group:nth-child(3) {
    grid-row-start: 2;
}

form.kontaktform .input-group:nth-child(4) {
    grid-row-start: 3;
}

form.kontaktform .input-group:nth-child(6) {
    grid-row: span 3;
}

form.kontaktform .input-group:nth-child(7), form.kontaktform .input-group:nth-child(8), form.kontaktform .bt-gr {
    grid-column: span 2;
}

form.vardering .w-input,
form.vardering .w-select,
form.kontaktform .w-input,
form.kontaktform .w-select,
form.kontaktform textarea {
    background: #eee;
    font-family: var(--font-body);
}

form.kontaktform textarea {
    height: calc(100% - 0.5rem);
}

form.vardering .input-group {
    grid-column: span 2;
}

form.vardering .input-group:nth-child(4),
form.vardering .input-group:nth-child(6),
form.vardering .input-group:nth-child(7) {
    grid-row-start: 2;
}

form.vardering .input-group:nth-child(8),
form.vardering .input-group:nth-child(9),
form.vardering .input-group:nth-child(10) {
    grid-row-start: 3;
}

form.vardering .input-group:nth-child(11) {
    grid-row-start: 4;
    grid-column: span 5;
    font-size: 14px;
}

form.vardering .input-group:nth-child(12) {
    grid-row-start: 5;
    grid-column: span 6;
}

.input-group:has(input[name=additionalEmail]) {
    display: none;
}

form.kontaktform textarea {
    height: calc(100% - .5rem);
}

.body-default h1 {
    /* text-align: center; */
    font-size: 15px;
    margin-bottom: 2rem;
}

.content-intro:has(.float-right) {
    grid-column: span 2;
    width: 100%;
}

.content-summary:has(.float-right) {
    width: 100%;
    max-width: 100%;
}

.content-summary .float-right ~ p {
    max-width: 100%;
}

img.float-right {
    float: right;
    max-width: 580px;
    margin-left: 2rem;
}

.content:has(.float-right) {
    /* max-width: var(--mw-full); */
}

.ham-contact-social {
    width: 100%;
    height: auto;
    background: #F0F0F0;
}

.start .ham-contact-social footer, .ham-contact-social footer {
    height: 100%;
    margin-top: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header .ham-nav .logo {
    width: 200px;
    display: block;
}

.start footer {
    margin: 100vh 0 0;
}

.bt-gr.submit-vitec {
    flex-direction: column;
    justify-content: center;
}

.error,
.success {
    text-align: center;
}

.success {
    color: #0c9f0c;
}

.error {
    color: red;
}

.data {
    width: 100%;
    margin-top: -0.9rem;
}

.slide-wrapper .button {
    background: none;
    color: var(--main-color);
    white-space: nowrap;
    font-size: 11px;
    border-width: 0;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single, .irs--round .irs-min, .irs--round .irs-max {
    font-size: 12px;
    background: var(--main-color);
}

.irs--round .irs-handle {
    border-color: #333;
    background: var(--main-color);
    box-shadow: none;
    width: 15px;
    height: 15px;
    top: 30px;
    border-width: 1px;
}

.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
    background-color: var(--main-color);
}

.irs--round .irs-bar, .irs--round .irs-line {
    background: #333;
    height: 1px;
    top: 37px;
}

.irs--round .irs-min, .irs--round .irs-max {
    visibility: hidden!important;
}

.irs--round .irs-from:before, .irs--round .irs-single:before, .irs--round .irs-to:before {
    border-top-color: #333;
}

.irs--round .irs-grid-text {
    font-size: 10px;
    color: #999;
}

.irs--round .irs-from, .irs--round .irs-to, 
.irs--round .irs-single {
    color: #fff;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    background: #333;
}

.slide-wrapper {
    width: 100%;
}

.content-wrapper {
    /* padding-top: 9rem; */
}

.content-wrapper img {
    max-height: 100svh;
    width: 100%;
    object-fit: cover;
}

.ol-wrapper.scrolled {
    position: static;
}

.ol-wrapper.scrolled+footer {
    margin-top: 0;
}

/* cookies */

body .cookiefirst-root * {
    font-size: 14px!important;
    text-align: center;
}

.cf1XPf.cf2L3T .cf8Oal {
    font-size: 1.5rem!important;
}

.cf3Tgk.cf2pAE.cfAdwL.cf1IKf .cf1lHZ.cf2MAH {
    flex: 1!important;
    max-width: fit-content;
}

.cf3Tgk.cf2pAE.cfAdwL.cf1IKf .cf1lHZ.cf2MAH button span,
span.cf1y60 {
    font: 600 10px/1rem var(--font-sans)!important;
    padding: .75em 1.25em;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px !important;
}

.cfGMLl {
    bottom: 1rem!important;
}

.cf3E9g {
    padding: 2rem!important;
}

.cflmka.cf2Ma- .cfiaEW h2, .cfiaEW .cfEa3L h2, .cfiaEW .cfEa3L + h3 {
    padding-top: 1.5rem!important;
}

.cfiaEW div h3 {
    padding-top: 1.5rem!important;
}

.cookiefirst-root .cfAycx h3 {
    font-size: 14px!important;
    font-weight: 700!important;
}

h4.cfAycx {
    font-size: 1rem !important;
    padding-top: 1rem !important;
}

.cfAycx:has(h4) {
    padding-top: 1rem!important;
}

.cookiefirst-root h2#cookie-preference-panel-title {
    font-size: 1rem !important;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

span.cf1y60 {
    max-width: fit-content;
}

span.cf8Oal.cfZo2x.cf1y60 {
    padding-left: 0;
}

.cfAfdC svg {
    font-size: 1.5rem!important;
}

button.cf3Mob.cf2Lf6.cf8Oal span.cf1y60 {
    padding: 0;
}

.cf1lHZ.cf2MAH.cf3l36 .cf2Lf6 {padding: 4px 0!important}


.cf2pAE button {
    white-space: nowrap!important;
}

span.cf1f8N.cf1uIq {
    display: none!important;
}

.cookiefirst-root .cfZo2x.cfaR15.cf8Oal h2 {
    font: 1.5rem / 1.5rem sweet-sans-pro, sans-serif!important;
    margin: 1rem 0!important;
}

.cf3Tgk.cf2pAE.cfAdwL.cf1IKf {
    justify-content: center;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 1px solid #ddd;
    /* margin-bottom: 0.5em; */
}
.accordion-item.open {
    border: 1px solid #ddd;
    box-shadow: 10px 10px 10px 0 hsl(0deg 0% 93.33% / 50%);
    margin-bottom: .5rem;
}
.accordion-summary {
    font-size: 1rem;
    color: var(--main-color);
    background: #fff;
    padding: 1.75rem 2rem;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    letter-spacing: 2px;
    width: 100%;
    border: none;
    text-align: left;
    font-weight: bold;
    transition: background 0.2s;
}
.accordion-item.open .accordion-summary {
    background: #eee;
}
.accordion-summary:before,
.accordion-summary-bid:before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 2rem;
    transition: 0.5s transform ease;
    width: 16px;
    height: 10px;
    background: transparent url(/images/arrow-down.svg) no-repeat 50% / cover;
}
.accordion-item.open .accordion-summary:before {
    transform: rotate(180deg);
}
.accordion-content {
    padding: 0.5em 2rem 1em 2rem;
    display: none;
    background: hsl(0deg 0% 93% / 15%);
}
.accordion-item.open .accordion-content {
    display: block;
}
.accordion-summary::-webkit-details-marker,
.accordion-summary::marker {
    display: none;
    content: '';
}

.biddhistory .accordion-summary-bid {
    font-size: 11px;
    padding: .75rem 0;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.biddhistory .accordion-item-bid.open .accordion-content {
    padding: 0;
}

.biddhistory .accordion-summary-bid:before {
    right: 1rem;
    width: 11px;
    height: 6px;
}

.biddhistory .accordion-item.open {
    border-color: transparent;
    box-shadow: none;
    margin-bottom: .5rem;
}

.biddhistory .accordion-item.open .accordion-summary {
    background: none;
}

.biddhistory .accordion-content-bid {
    position: absolute;
    background: #fff;
    width: 284px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    z-index: 1;
}

.accordion-item-bid[open] {
    border-width: 0;
    box-shadow: none;
}

.accordion-item-bid[open] summary {
    background: none;
}

.social img {
    width: 2rem;
}

.social {
    gap: 1rem;
}


@media (max-width: 767px) {

    .m-hide {display: none;}
    .d-hide {display: flex;}
    img.logo.d-hide {width: 110px;}

    .xmt0 {margin-top: 0;}
    .xmt05{margin-top: 0.5rem;}
    .xmt1 {margin-top: 1rem;}
    .xmt2 {margin-top: 2rem;}
    .xmt3 {margin-top: 3rem;}
    .xmt4 {margin-top: 4rem;}
    .xmb0 {margin-bottom: 0;}
    .xmb1 {margin-bottom: 1rem;}
    .xmb2 {margin-bottom: 2rem;}
    .xmb3 {margin-bottom: 3rem;}
    .xmb4 {margin-bottom: 4rem;}
    .xmx05{margin-left: 0.5rem;margin-right: 0.5rem;}
    .xmx1 {margin-left: 1rem;margin-right: 1rem;}
    .xmx15{margin-left: 1.5rem;margin-right: 1.5rem;}
    .xp0  {padding: 0;}
    .xpb0 {padding-bottom: 0;}
    .xpb1 {padding-bottom: 1rem;}
    .xpx2 {padding-left: 2rem;padding-right: 2rem;}
    .xpx15{padding-left: 1.5rem;padding-right: 1.5rem;}
    .xwrap {flex-wrap: wrap;}
    .w100 {flex-basis: 100%;}
    .x1col {grid-template-columns: repeat(1, 1fr);}

    .wrapper {
        margin: 0;
    }
    .text-col {
        column-count: 1;
    }
    h1 {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    .selling-title h2 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        display: block;
    }
    .selling-title h2:before {
        content: "";
    }
    .selling-title h3 {
        font-size: 1.25rem;
    }
    .ob-selling {
        font-size: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .selling-title {
        display: block;
    }
    .header {
        padding: 1.5rem;
        width: 100%;
    }
    .broker-wrapper {
        border-width: 0;
        padding: 1rem 0 0;
        flex: 0 0 100%;
        background: #fff;
    }
    .broker {
        gap: 1rem;
        padding: 0 1.5rem 1.25rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .broker-img img {
        max-width: 100px;
        border-radius: 50%;
        margin: 0 auto;
    }
    .broker-info {
        font-size: 13px;
    }
    .ob-short-facts > .flex {
        padding: 2rem 1rem;
    }
    .ob-short-facts h2 {
        font-size: 1.5rem;
    }
    .ob-short-facts h2 + span {
        font-size: 1rem;
        line-height: 1.25;
        margin-top: 0.25em;
    }
    .ob-short-facts > .flex {
        padding: 2rem 1.5rem;
    }
    .ob-short-facts h2 {
        font-size: 1.5rem;
    }
    .ob-short-facts h2 + span {
        font-size: 15px;
        line-height: 1.25;
        margin-top: 0;
    }
    .tabs-link a {
        font-size: 13px;
    }
    .img-caption {
        text-align: center;
        font-size: 14px;
        padding-top: 0.5rem;
    }
    .text-col {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        padding: 0 0 2rem;
    }
    .ob-short-facts + .ob-short-facts {
        margin: 0;
    }
    .viewing {
        padding: 1.5rem;
        /* background: #eee; */
        flex: 0 0 100%;
    }
    .ob-short-facts + .ob-short-facts h2 {
        font-size: 1.25rem;
        background-size: 1.25rem;
    }
    .bt-gr .button {
        justify-content: center;
        flex: 0 0 auto;
        margin: auto;
    }
    #map {
        border-left-width: 0;
        /* aspect-ratio: 1; */
        margin: 0;
    }
    .hero-content span {
        font-size: 1rem;
        padding: 0.5rem 3rem 0;
    }
    .selling-title h1 {
        margin-bottom: 1rem;
    }
    .hero-content {
        padding: 0 5rem;
    }
    .booking-form-wrapper {
        margin: 0;
    }
    .booking-form {
        padding: 3rem 1.5rem 2rem;
        font-size: 14px;
        line-height: 1.5;
    }
    span.checkbox-label {
        font-size: 13px;
        line-height: 1.4;
    }
    input#gdpr {
        margin-top: 3px;
    }
    .ham-nav {
        width: 100vw;
        top: 0;
        right: -100vw;
        font-size: 18px;
        border-width: 0;
    }
    .ham-nav.nav-open {
        right: 0;
    }
    .ham-nav-wrapper {
        /* padding: 2.75rem 1.5rem 0; */
        /* align-items: flex-start; */
        gap: 0;
    }
    .content-summary {
        font-size: 15px;
        text-wrap: pretty;
        margin: 0;
    }
    .bl-img,
    .bl-txt {
        flex: 0 0 100%;
        font-size: 1rem;
    }
    .bl-txt {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    .bl-txt h4 {
        font-size: 1.25rem;
        padding-top: 0.5rem;
    }
    .content-divider {
        font-size: 1rem;
        padding: 2rem 1.5rem;
        margin: 0;
    }
    .img-wrapper {
        margin: 0 1.5rem;
        gap: 1rem;
    }
    h2.viewing-header {
        font-size: 1rem;
    }
    .viewing-txt {
        padding-left: 0;
        font-size: 12px;
        text-wrap: balance;
        line-height: 1.25;
    }
    .bt-gr {
        gap: 0.5rem;
    }
    .ob-short-facts > .flex > .ob-short-fact-wrapper > .col {
        flex: 0 0 50%;
        padding: 0.5rem 0 0;
    }
    .selling-header {
        line-height: 1.2;
        margin: 0;
        font-size: 1.5rem;
    }
    .ob-short-fact-wrapper .col {
        gap: .5rem;
        flex: 0;
        padding: 0 .5rem 0 0;
    }
    .ob-short-fact-wrapper .row {
        margin: 0 1.5rem 0;
        /* border-width: 0; */
        padding: 0.5rem 0 .5rem;
        justify-content: center;
    }
    .selling {
        font-size: 1rem;
        flex: 0 0 100%;
    }
    .selling {
        font-size: 15px;
        flex: 0 0 100%;
    }
    .broker-title {
        font-size: 13px;
        margin-bottom: .25rem;
    }
    .viewing-broker {
        flex: 0 0 100%;
    }
    .viewing .bt-gr .button {
        flex: 0 0 100%;
        margin: 0;
        padding: 0 .5rem;
        height: 37px;
    }
    .tabs-img-wrapper {
        padding: 0;
        margin: 0 -1rem;
    }
    .tabs-col {
        flex: 0 0 100%;
        padding: 0;
    }
    .tabs summary {
        padding: 1rem 1rem;
        font-size: 14px;
    }
    .map {
        border-width: 0;
        margin-top: .5rem;
    }
    .ob-short-fact-wrapper .col:nth-child(3)::after,
    .ob-short-fact-wrapper .col:nth-child(5)::after {
        content: "";
    }
    .img-col {
        order: -1;
        position: static;
        gap: 0.5rem;
        padding: 0 0.5rem 0.5rem;
    }
    .img-item {
        /* flex: 0 0 calc(50% - 0.25rem); */
    }
    .img-item .button {
        font-size: 10px;
        height: 3em;
    }
    .floorplans .img-item {
        flex: 0 0 100%;
    }
    .floorplans {
        margin: 0.5rem;
    }
    a.broker-link {
        font-size: 13px;
        line-height: 1.25;
        color: #777;
    }
    .ob-footer h4 {
        font-size: 0.75rem;
    }

    .ob-hero-wrapper .all-img {
        align-items: flex-end;
        padding-bottom: 2rem;
    }

    .ob-hero-wrapper .all-img .button,
    .viewing button.button {
        font-size: 11px;
        height: 40px;
    }

    .viewing button.button {
        background: transparent;
    }

    .beskrivning .header a:has(.logo) {
        margin: auto;
    }

    .beskrivning .oc-tag.bid {
        font-size: 11px;
        top: auto;
        bottom: -2.5rem;
    }

    .ob-selling-tabs .img-item:nth-child(5), .ob-selling-tabs .img-item:nth-child(6) {
        display: none;
    }

    .all-img {
        flex: 0 0 100%;
        margin: 0;
    }

    .ob-short-facts {
        grid-template-columns: 1fr;
        margin: 0 1.5rem;
        gap: 0.5rem;
        padding: 0;
    }

    .beskrivning h1 {
        font-size: 1rem;
        display: flex;
        flex-wrap: wrap;
        padding: 1.5rem 1.5rem 1rem;
        justify-content: center;
        text-align: center;
    }

    .beskrivning h1 span:nth-child(2), .beskrivning h1 span:nth-child(3) {
        order: -1;
        font-size: 14px;
        color: #777;
        margin-top: .25rem;
    }

    .beskrivning h1 span:nth-child(1) {
        order: 2;
        margin-top: .25rem;
        font-size: 14px;
        flex: 0 0 100%;
    }

    .beskrivning h1 span:nth-child(2)::before {
        content: '';
        margin-left: 0;
        display: block;
    }

    .beskrivning h1 span:not(:first-child)::before {
        margin: 0 .5rem;
    }

    .ob-short-fact {
        font-size: 12px;
        flex: 0;
        text-align: left;
    }

    .gallery-wrapper {
        justify-content: center;
        margin: 1rem 0;
    }

    .ob-facts-viewing-broker {
        order: -1;
        position: static;
        display: flex;
        margin: 1rem -1.5rem 0;
        flex-wrap: wrap;
        background: linear-gradient(180deg, #eee, #fff);
    }

    h3.broker-header {
        font-size: 14px;
    }

    .docs-link-wrapper {
        padding: 1rem;
    }

    .docs-link-wrapper a {
        width: 100%;
    }

    .data-plain-txt strong, .tabs .row-data.leader span strong {
        font-size: 11px;
    }

    .beskrivning .logo.light {
        width: 100px;
    }

    .beskrivning .ham {
        top: 1.25rem;
        right: 1.25rem;
    }

    h3.viewing-header.int_view {
        font-size: 1rem;
    }

    .start .ol-wrapper {
        grid-template-columns: repeat(1, 1fr);
        max-width: 100%;
        gap: 1rem;
    }

    .ham-contact-social footer {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .header .ham-nav .logo {
        width: 130px;
    }

    .header .ft-row>div {
        gap: .5rem;
    }

    .main-sub {
        gap: 0;
        padding: 2.75rem 1.5rem 0;
    }

    .beskrivning footer {
        margin-top: 2rem;
    }

    .body-default h1 {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .content {
        display: flex;
        flex-wrap: wrap;
        margin: 1.5rem 1.5rem 1rem;
        gap: 1rem;
    }

    .content-summary p {
        margin: 0 0 1rem;
    }

    form.kontaktform {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    form.kontaktform textarea {
        height: 130px;
    }

    img.float-right {
        float: none;
        margin-left: 0;
        max-width: 100%;
    }

    .start footer,
    .start footer.mt5 {
        margin-top: 0;
        /*padding: 1rem 0;*/
    }

    .brokers .ol-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .brokers .oc-img-wrapper {
        border-width: 0;
        max-height: none;
    }

    .ol-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ol-filters {
        padding: 4.6rem 1.5rem 1rem;
        flex-wrap: wrap;
        overflow: hidden;
        gap: 2rem;
        margin-bottom: 0;
    }

    .ol-filters fieldset {
        flex-wrap: wrap;
        gap: 0 1rem;
        justify-content: center;
    }

    .ol-filters button {
        justify-content: center;
    }

    .slide-wrapper .button {
        position: absolute;
        top: -10px;
        height: auto;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .header.naked .logo {
        width: 100px;
    }

    .header.naked {
        padding: 1.5rem;
    }

    .ham {
        top: 1.5rem;
        right: 1.5rem;
    }

    .content-wrapper {
        /* padding-top: 6rem; */
    }

    span.slogan {
        font-size: 11px;
        margin: 0 -2rem;
    }

    span.slogan:before, span.slogan:after {
        margin: 0 12px 0 0;
        width: 24px;
        height: 2px;
    }

    span.slogan:after {
        margin: 0 0 0 12px;
    }

    .start .header.naked {
        gap: 2rem;
    }

    .cf3Tgk.cf2pAE.cfAdwL.cf1IKf .cf1lHZ.cf2MAH button span,
    span.cf1y60 {
        padding: .75em 1em;
        font-size: 11px !important;
    }

    .cf2pAE button {
        white-space: normal!important;
    }

    .cookiefirst-root h2#cookie-preference-panel-title {
        font-size: 1rem !important;
        text-transform: none;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .accordion-summary {
        padding: 1.5rem;
    }

    .accordion-content {
        padding: 0.5em 1.5rem 1em;
    }

    .ob-short-facts h2.selling-header {
        font-size: 1.5rem;
    }

    .viewing .bt-gr {
        flex-wrap: wrap;
    }

    button.button.open-viewing-modal.uppercase {
        background: #000;
        border-color: #000;
        color: #fff;
    }

    .beskrivning .bid {
        padding: 1.5rem 1.5rem 0;
    }

    .biddhistory .accordion-content-bid {
        background: #fff;
        padding: 0 .5rem;
        border: 1px solid #ddd;
    }

    .general-interior {
        font-size: 14px;
    }


}

