.InfoBoxes {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  box-sizing: border-box;
} /*
.InfoBoxes[data-visible='true'] {
    opacity:1;
}*/
.ContentPane > .InfoBoxes {
  background: rgb(231, 207, 167);
  color: #000;
}
.PageTemplate {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.PageTemplate > .PageTitle {
  margin-top: 40px;
}
.PageTemplate > .PaginatedList {
  width: 100%;
}
.PageTemplate > .PaginatedList > .PageTitle {
  font-size: 28px;
}
.PageTemplate > .PaginatedList > .PageTitle:after {
  margin: 20px 0;
}
.PageTemplate > .PaginatedList + .RelatedArticles {
  background: rgb(231, 207, 167);
  padding: 0;
  margin-top: 40px;
}
.PageTemplate > .PaginatedList + .RelatedArticles .InfoBox > .Wrap > .title {
  color: #000;
}
.PageTemplate > .PaginatedList + .RelatedArticles .InfoBox > .Wrap > .content {
  color: #000;
}
.List.info-boxes {
  width: 80%;
}
.Privacy-Banner {
  z-index: 2;
}
.ContactBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.ContactBox .ContactSchema {
  font-size: 20px;
}
.ContactBox > .Wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  background: #260b11;
}
.ContactBox > .Wrap > .title {
  padding: 80px 40px;
  font-size: 48px;
  font-family: Heading, sans-serif;
  text-align: center;
  background: #33191f;
  color: rgb(231, 207, 167);
}
/*.ContactSchema {
    display:flex;
    width:100%;
    height:100%;
    flex:1;
    align-items:center;
    justify-content:center;
}*/

.Lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 100ms ease-out;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.InfoBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 350px;
  min-width: 350px;
  opacity: 0;
  transition: opacity 750ms ease-out, transform 250ms ease-out;
}
.InfoBox[data-href] {
  cursor: pointer;
}
.InfoBox > .Wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  flex: 1;
}
.InfoBox > .Wrap > .title {
  font-size: 34px;
  color: rgb(231, 207, 167);
  text-align: center;
  font-family: Heading, sans-serif;
}
.ContentPane > .InfoBoxes > .InfoBox {
  max-width: 800px;
}
.ContentPane > .InfoBoxes > .InfoBox > .Wrap > .title {
  color: #000;
}
.InfoBox > .Wrap > .stripe {
  width: 70px;
  height: 3px;
  margin: 20px 0 0;
  background: #fc3a3a;
}
.InfoBox > .Wrap > .content {
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
  text-align: center;
}
.InfoBox > .Wrap > .content:empty {
  display: none;
}
.InfoBox > .Image {
  width: 100%;
  height: 300px;
}
.InfoBox.semi-transparent {
  background: #260b11;
}

.InfoBoxes.space-evenly {
  justify-content: space-evenly;
  padding: 20px;
}
.InfoBoxes.space-evenly > .ContactBox,
.InfoBoxes.space-evenly > .InfoBox {
  margin: 30px;
  height: 530px;
}
.InfoBoxes.space-evenly {
  padding: 30px;
}
.PaginatedList {
  display: flex;
  flex-flow: column;
  align-items: center;
  box-sizing: border-box;
}
.PaginatedList > .Wrap {
  width: 80%;
}
.List {
  display: grid;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr);
  align-self: center;
}
.ListItem {
  display: flex;
  flex-direction: column;
  margin: 20px;
  background: #1a0307;
  align-items: center;
  padding-bottom: 40px;
  opacity: 0;
  transition: opacity 100ms ease-out;
  position: relative;
}
.ListItem[data-href] {
  cursor: pointer;
}
.ListItem > .Image {
  width: 100%;
  height: 270px;
}
.ListItem > h3 {
  padding: 40px 30px 0;
  font-size: 34px;
  color: rgb(231, 207, 167);
  font-family: Heading, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  font-weight: 400;
}
.ListItem > h3:after {
  content: "";
  width: 60px;
  height: 3px;
  margin: 20px 0;
  background: #fc3a3a;
}
.ListItem span {
  font-family: Regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
}
.List:empty {
  display: none;
}
@media screen and (max-width: 1200px) {
  .List {
    grid-template-columns: repeat(2, 1fr);
  }
  .PaginatedList > .Wrap {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .ListItem > h3 {
    overflow-wrap: anywhere;
  }
  .PaginatedList {
    width: 100%;
  }
  .PaginatedList > .Wrap {
    width: 100%;
  }
  .List {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .ContactBox > .Wrap > .title {
    font-size: 32px;
  }
}
.EstateTopInfo {
  display: flex;
  flex-flow: column;
  flex: 1;
  align-items: center;
  position: relative;
}
.EstateTopInfo .Gallery:not(.gallery-fullscreen) .image-text {
  display: none !important;
}
.EstateTopInfo > .Gallery {
  position: relative;
}
.EstateDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 100px;
  box-sizing: border-box;
  pointer-events: none;
}
.EstateContent > .EstateDetails {
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translate3d(0, -130px, 0) !important;
  z-index: 4;
  transition: transform 350ms ease-out, opacity 150ms ease-out;
}
.EstateContent > .EstateDetails[data-visible="true"] {
  opacity: 1 !important;
  transform: translate3d(0, -150px, 0) !important;
}
.ListItem[data-type="solgt"] > .Image:after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(/naering/gfx/solgt.svg) rgba(0, 0, 0, 0.4) no-repeat center 60px / 150px 150px;
  content: "";
}

.ListItem[data-type="utleid"] > .Image:after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(/naering/gfx/utleid.svg) rgba(0, 0, 0, 0.4) no-repeat center 60px / 150px 150px;
  content: "";
}
.EstateStatusIcon {
  background: no-repeat center;
  background-size: cover;
}
.EstateStatusIcon[data-type="solgt"] {
  background-image: url(/naering/gfx/solgt.svg);
}
.EstateStatusIcon[data-type="utleid"] {
  background-image: url(/naering/gfx/utleid.svg);
}
.EstateDetails > .EstateStatusIcon {
  width: 270px;
  height: 270px;
  position: absolute;
  top: -350px;
}

/*.EstateDetails[data-visible='true'].slide-anim {
    position:relative;
    padding:0;
    transform:none!important;
    bottom:unset!important;
    top:0!important;
}*/
.EstateDetails > .Wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px;
  box-sizing: border-box;
  width: 100%;
  background: rgb(231, 207, 167);
  color: #000;
  /*height:300px;*/
  pointer-events: all;
  position: relative;
}
.EstateDetails > .Wrap > .Wrap {
  width: 50%;
}
.EstateDetails > .Wrap > .first-wrap {
  margin-right: 20px;
  align-items: flex-start;
}
.EstateDetails .address-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.EstateDetails .address-wrap > .title {
  font-size: 44px;
  line-height: 45px;
  font-weight: 400;
  font-family: Heading, sans-serif;
  position: relative;
}
.EstateDetails .address-wrap > .subtitle {
  font-family: Regular;
  font-size: 22px;
  margin-top: 10px;
}
.EstateDetails .address-wrap:after {
  content: "";
  width: 63px;
  height: 4px;
  background: #fc3a3a;
  margin: 30px 0;
}
.EstateDetails .description {
  font-family: Regular;
  font-size: 22px;
}
.EstateDetails > .Wrap > .first-wrap > button {
  margin-top: 20px;
}
.PageEstateSchema {
  opacity: 0;
  transition: opacity 150ms ease-out;
}
.PageEstateSchema .PageTitle {
  margin-bottom: 20px;
}
.PageEstateSchema > .Wrap {
  flex-direction: row;
  padding: 40px 100px 0;
  box-sizing: border-box;
}
.PageEstateSchema > .Wrap > .ContactSchemaEstate {
  margin-right: 20px;
}
.PageEstateSchema > .Wrap > .EstateAgents {
  margin-left: 20px;
}
@media screen and (max-width: 1200px) {
  .PageEstateSchema > .Wrap {
    flex-direction: column;
    padding: 40px;
  }
  .PageEstateSchema > .Wrap > .ContactSchemaEstate {
    margin-right: 0;
  }
  .PageEstateSchema > .Wrap > .EstateAgents {
    margin-left: 0;
    margin-top: 40px;
  }
}

.EstateTexts {
  display: flex;
  flex-flow: column;
  position: relative;
}
.EstateTexts > .EstateTextItem {
  display: flex;
  flex-flow: column;
  opacity: 0;
  transition: opacity 150ms ease-out;
}
.EstateTexts > .EstateTextItem[data-visible="true"] {
  opacity: 1;
}
.EstateTexts > .EstateTextItem + .EstateTextItem {
  margin-top: 60px;
}
.EstateTexts > .EstateTextItem > .title {
  font-family: Heading;
  font-size: 28px;
  color: rgb(231, 207, 167);
}
.EstateTexts > .EstateTextItem > .content {
  font-family: Regular;
  font-size: 16px;
  line-height: 22px;
  margin: 20px 0 0;
}
.EstateTexts > .EstateTextItem > .content > a {
  color: #fff;
}
.NotFound {
  padding: 40px;
  box-sizing: border-box;
  font-size: 30px;
  font-family: Regular;
  width: 50%;
  align-self: center;
  text-align: center;
}
.EstateMap {
  margin-top: 60px;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.EstateMap:empty {
  display: none;
}
.EstateMap .Leaflet {
  width: 100%;
  height: 100%;
}
.Lightbox > .AgentSchema {
  width: 600px;
  max-width: 80%;
  background: rgb(231, 207, 167);
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
.Lightbox > .AgentSchema > .close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 25px;
  background: url(/gfx/close-black.svg) no-repeat center / 30%;
  cursor: pointer;
}
.Lightbox > .AgentSchema > .Agent {
  padding: 0 0 20px;
}
.Lightbox > .AgentSchema > .Agent,
.Lightbox > .AgentSchema > .Agent > .name {
  color: #000;
}
.Lightbox > .AgentSchema > .Schema {
  align-items: flex-start;
}
.Lightbox > .AgentSchema > .Schema > .Input {
  width: 100%;
}
.EstateContent .ContactSchemaEstate,
.EstateContent .StakeholderButton {
  margin-top: 40px;
}
.ContactSchemaEstate {
  width: 100%;
  display: flex;
  padding: 40px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  background: rgb(231, 207, 167);
  color: #000;
}
.ContactSchemaEstate .Schema > .Consents {
  margin: 0 0 20px;
}
.ContactSchemaEstate > .title {
  color: #000;
  margin-top: 0;
}
.ContactSchemaEstate > .Schema {
  margin-top: 20px;
}
.ContactSchemaEstate > .Schema > .Input > input,
.ContactSchemaEstate > .Schema > .Input > textarea {
  color: #000;
}
.ContactBox .schema-wrap {
  padding: 20px 20px 20px 0;
}
.ContactSchemaSimple .Schema > .Consents,
.ContactSchemaFront .Schema > .Consents {
  margin: 0 20px;
  text-align: left;
  color: #777;
}
/*.ContactSchemaFront > .Schema {
    flex-flow: row wrap;
    justify-content:space-between;
}
.ContactSchemaFront > .Schema > .Input {
    margin:20px;
}*/
.Agent {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  font-family: Regular;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .Agent {
    padding: 20px 40px;
  }
  .EstateDetails .address {
    font-size: 34px;
  }

  .EstateStatusIcon {
    margin-top: 140px;
  }
}
.EstateAgents {
  width: 100%;
}
.EstateAgents > .Agent + .Agent {
  margin-top: 40px;
}
.Agent > .Image {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  margin-top: 20px;
  background-color: #eee;
  background-position: 50% 20%;
  background-size: cover;
}
.Agent > .name {
  color: rgb(231, 207, 167);
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
}
.Agent > .title {
  font-weight: 400;
  margin: 20px 0;
}
.Agent.dark > .name {
  color: #000;
}
.Agent.dark > .title {
  color: #000;
}
.Agent > .email {
  background: url(/naering/gfx/email.svg) no-repeat center;
  cursor: pointer;
  padding: 30px;
  box-sizing: border-box;
}
.EstateAgents .Agent {
  border: solid 1px #fc3a3a;
}
.EstateContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2e040d;
  min-height: 300px;
  position: relative;
}
.EstateContent > .content-wrap {
  display: flex;
  flex-flow: row;
  width: 100%;
  flex: 1;
  box-sizing: border-box;
  padding: 220px 160px 160px;
}
.EstateDetails[data-visible="true"].slide-anim + .content-wrap {
  padding: 60px;
}
.EstateContent > .content-wrap > .first-wrap {
  margin-right: 80px;
}
.EstateContent > .content-wrap > .second-wrap {
  position: relative;
  width: 80%;
  min-width: 500px;
}
.EstateContent .ContactSchema {
  padding: 40px;
}
.EstateViewings {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.EstateViewings > h2 {
  margin-top: 0;
}
.EstateViewings > .list-wrap {
  display: flex;
  flex-direction: column;
}
.EstateViewings > .list-wrap + button {
  margin-top: 30px;
  align-self: flex-start;
}
.ValueItemWrap + .ValueItemWrap {
  margin-top: 30px;
}
.ValueItemWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ValueItem {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ValueItem > .title {
  font-family: Bold;
  font-size: 25px;
  margin-bottom: 10px;
}
.ValueItem > .value {
  font-family: Regular;
  font-size: 18px;
}
.PageTemplate > .Image {
  width: 100%;
  height: 600px;
}
.Video {
  width: 100%;
  height: 600px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.Video[data-visible="true"] {
  opacity: 1;
}
.Video > video {
  position: relative;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 2;
  transform: translateX(-50%) translateY(-50%);
  background: #000;
  background-size: cover;
  transition: 1s opacity;
}
.Dev {
  padding: 40px;
  max-width: 500px;
}
.Dev .Schema {
  padding: 40px;
  box-sizing: border-box;
}
.Schema {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.Schema .button-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 30px;
  align-items: center;
}
.Schema .button-wrap > button + .success-message {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition: opacity 350ms ease-out, transform 150ms ease-out;
  font-size: 18px;
  margin-left: 20px;
}
.Schema .button-wrap > button + .error-message {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition: opacity 350ms ease-out, transform 150ms ease-out;
  font-size: 18px;
  margin-left: 20px;
  color: red;
}
.Schema > .Select + .Select {
  margin-top: 20px;
}
.Checkbox {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.Checkbox:before {
  content: "";
  width: 26px;
  height: 26px;
  background: #535353;
  margin-right: 10px;
}
.Checkbox:after {
  position: absolute;
  left: 0;
  content: "";
  background: url(/naering/gfx/checked.svg) no-repeat center / 60%;
  opacity: 0;
  transition: transform 150ms ease-out, opacity 150ms ease-out;
  width: 28px;
  height: 28px;
}
.Checkbox.checked:after {
  opacity: 1;
}
.Checklist {
  display: flex;
  flex-direction: column;
}
.Checklist > .checkbox-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.Checklist > label + .checkbox-wrap {
  margin-top: 10px;
}
.Checklist > .checkbox-wrap > .Checkbox + .Checkbox {
  margin-bottom: 8px;
}
.Checklist > .checkbox-wrap > .Checkbox:nth-child(odd) {
  margin-right: 20px;
}

.Checklist.grid > .checkbox-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .Checklist.grid > .checkbox-wrap {
    display: flex;
    flex-flow: column;
  }
  .Checklist > .checkbox-wrap > .Checkbox:nth-child(odd) {
    margin: 0 0 6px;
  }
}
.Input {
  display: flex;
  flex-direction: column;
  border-bottom: solid 3px #fc3a3a;
  text-align: left;
}
.Editor > label,
.ImageFile > label,
.Checklist > label,
.Input > label {
  display: flex;
  flex-flow: row wrap;
  user-select: none;
  font-weight: 600;
}
.Editor > label > .error,
.ImageFile > label > .error,
.Checklist > label > .error,
.Input > label > .error {
  color: red;
  margin-left: 10px;
}
@media screen and (max-width: 400px) {
  .Checklist > label {
    flex-flow: column;
  }
  .Checklist > label > .error {
    margin-left: 0;
  }
}
.Input.short {
  width: 70px;
}
.Input > textarea,
.Input > input {
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  font-size: 16px;
  box-sizing: border-box;
  border: none;
  color: #fff;
  font-family: Regular;
}
.Input > textarea {
  width: 100%;
  height: 80px;
  min-height: 80px;
  max-height: 150px;
  resize: vertical;
}
.Schema > .Editor,
.Schema > .Checklist,
.Schema > .Input {
  margin-bottom: 30px;
}
.Schema.bright > .Input > label {
  color: #000;
}
.Schema > .Consents {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.schema-wrap > .Schema > .Consents {
  margin: 0 20px;
}
.Schema button {
  background: #e0c18d;
  padding: 16px;
  border: none;
  font-size: 18px;
  align-self: flex-start;
  font-family: Regular;
  cursor: pointer;
}
.Schema button + button {
  margin-left: 10px;
}
.Schema button.button-delete {
  background: #ff0000;
  color: #fff;
}
/*.Video {
    position:relative;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    opacity:0;
    transition:opacity 200ms ease-out;
}
.Video > video {
    position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 2;
    transform: translateX(-50%) translateY(-50%);
    background: #000;
    background-size: cover;
    transition: 1s opacity;
}*/

.WidgetDummy {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #260b11;
}

.PageNewsArticle .ContactSchema {
  font-size: 30px;
  background: #55555560;
  width: 500px;
  align-self: center;
}
@media screen and (max-width: 1600px) {
  .ValueItemWrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .List > .Wrap {
    width: 100%;
  }
  .List > .Wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .EstateContent {
    padding-top: 0;
  }
  .EstateContent > .content-wrap {
    padding: 0;
    flex-flow: column;
  }
  .EstateContent > .content-wrap > .first-wrap {
    padding: 40px;
    box-sizing: border-box;
    margin: 0;
  }

  .EstateContent .EstateAgents .Agent {
    border: none;
  }
  .EstateDetails > .Wrap {
    flex-flow: column;
    height: 100%;
    padding: 40px;
  }
  .EstateDetails > .Wrap > .Wrap {
    width: 100%;
  }
  .EstateDetails > .Wrap > .second-wrap {
    margin-top: 40px;
  }
  .EstateContent > .content-wrap > .second-wrap {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .EstateContent > .content-wrap > .second-wrap > .ContactSchemaEstate {
    max-width: 600px;
  }
  .EstateDetails {
    transition: none;
  }
  .EstateViewings {
    width: 600px;
  }
  .EstateContent > .EstateDetails[data-visible="true"] {
    position: relative;
    padding: 0;
    transition: none;
    transform: none !important;
    bottom: unset !important;
    top: 0 !important;
  }
  .EstateMap {
    width: 100%;
  }
}
.OfficeAgents {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: center;
  align-self: center;
  max-width: 900px;
  transition: opacity 150ms ease-out;
  opacity: 0;
}

.OfficeAgents[data-visible="true"] {
  opacity: 1;
}
.OfficeAgents > .Agent {
  flex: 1;
}
.OfficeHeader {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 60px 0 0;
  box-sizing: border-box;
}
.OfficeLogo {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: 340px;
  height: 140px;
}
.OfficeLogo.large {
  width: 500px;
  height: 250px;
}
.OfficeLogo.large > .office-name {
  font-size: 26px;
}
.OfficeLogo > .Image {
  width: 100%;
  height: 100%;
  background: center no-repeat;
  position: absolute;
  top: 0;
}
.logo-text {
  float: left;
  text-transform: uppercase;
  font-size: 16px;
  font-family: Regular;
  font-weight: 400;
  background: linear-gradient(to right, rgb(193, 126, 84) 0%, rgb(241, 192, 135) 50%, rgb(185, 113, 73) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: 0;
  user-select: none;
  transition: opacity 250ms ease-out;
  opacity: 0;
}

.OfficeLogo[data-visible="true"] > .office-name {
  opacity: 1;
}
.PageAgent {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.PageAgent > .Agent {
  padding: 0 20px 40px;
}
.PageAgent > .AgentSchema {
  width: 600px;
  max-width: 100%;
  /*background:rgb(231, 207, 167);*/
  padding: 30px;
  box-sizing: border-box;
}
.PageAgent > .AgentSchema > .Schema > button {
  align-self: flex-start;
}
.PageOfficeContact {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.OfficeText {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
}
.OfficeText:after {
  width: 100%;
  content: "";
  height: 1px;
  background-color: rgb(231, 207, 167);
  margin: 60px 0 0;
  transition: width 150ms ease-out;
}
@media screen and (max-width: 900px) {
  .OfficeText:after {
    width: 80%;
  }
  .OfficeText {
    padding: 40px;
    max-width: 100%;
  }
  .OfficeText > h1 {
    font-size: 30px;
  }
}
.OfficeHeader .address {
  padding: 30px 0 0;
  text-align: center;
}
.OfficeHeader > .contact-wrap {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.OfficeHeader > .contact-wrap > .email {
  background: url(/naering/gfx/email.svg) no-repeat center;
  cursor: pointer;
  padding: 30px;
  box-sizing: border-box;
}

.PageTitle {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-family: Heading, sans-serif;
  font-size: 48px;
  font-weight: 400;
  padding: 40px 0 0;
  color: rgb(231, 207, 167);
  text-align: center;
  transition: opacity 250ms ease-out;
  opacity: 0;
}
@media screen and (max-width: 900px) {
  .PageTitle {
    font-size: 30px;
    padding: 40px 20px 0;
  }
}
.PageTitle[data-visible="true"] {
  opacity: 1;
}
.PageTitle:after {
  width: 100px;
  height: 3px;
  background: #fc3a3a;
  content: "";
  margin: 30px 0;
}
.Video + .PageTitle {
  margin-top: 40px;
}
.ContentPane {
  display: flex;
  flex-direction: column;
  background: rgb(231, 207, 167);
  width: 100%;
}
.ContentPane > .PageTitle {
  color: #000;
}
.TextContent {
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-sizing: border-box;
  background: rgb(231, 207, 167);
  color: #000;
  font-family: Regular;
  font-size: 16px;
  align-items: center;
}
.TextContent > div {
  width: 80%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}
.RelatedArticles {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
.RelatedArticles > .List,
.RelatedArticles > .InfoBoxes {
  max-width: 80%;
}
.RelatedArticles > h2 {
  margin: 20px;
}
.RelatedArticles > .List {
  padding: 0;
  width: 100%;
}
.NewsArticle {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #000;
  transition: opacity 250ms ease-out;
  opacity: 0;
}
.NewsArticle > .Image {
  height: 600px;
}
.NewsArticle[data-visible="true"] {
  opacity: 1;
}
.NewsArticle > .Wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}
.NewsArticle > .Wrap.agent-schema-wrap {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 0 0 40px;
}
.NewsArticle > .Wrap.agent-schema-wrap > .Agent {
  background: #2e040d;
  margin-right: 20px;
  width: 400px;
  height: 536px;
}
.NewsArticle > .Wrap.agent-schema-wrap > .AgentSchema {
  width: 400px;
  margin-left: 20px;
}
@media screen and (max-width: 900px) {
  .NewsArticle > .Wrap.agent-schema-wrap {
    flex-flow: column;
    width: 100%;
    padding-bottom: 0;
  }
  .NewsArticle > .Wrap.agent-schema-wrap > .Agent {
    width: 100%;
    margin: 0;
    height: 100%;
    padding-bottom: 40px;
  }
  .NewsArticle > .Wrap.agent-schema-wrap > .AgentSchema {
    width: 100%;
    margin: 0;
    padding: 40px;
    box-sizing: border-box;
  }
}
.NewsArticle > .Wrap > .timestamp {
  color: #000;
}
.NewsArticle > .Wrap > .PageTitle {
  color: #000;
  padding-top: 0;
}
.NewsArticle > .Wrap > .timestamp + .PageTitle {
  margin-top: 20px;
  padding: 0 20px;
  line-height: 34px;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap {
  max-width: 840px;
  display: flex;
  align-items: center;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .ingress {
  width: 80%;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-flow: row;
  justify-content: center;
  text-align: center;
}
.NewsArticle > .Wrap > .content-outer-wrap {
  display: flex;
  flex-direction: row;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .ingress + .content {
  margin-top: 20px;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .content {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .content > button {
  margin-top: 20px;
}
.NewsArticle.align-left > .Wrap {
  align-items: flex-start;
}
.NewsArticle.align-left > .Wrap > .PageTitle {
  align-items: flex-start;
}
.NewsArticle.align-left > .Wrap > .content-outer-wrap > .content-wrap > .ingress {
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}
.NewsArticle.align-left > .Wrap > .content-outer-wrap > .content-wrap > .content {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.schema-wrap .Schema {
  flex-flow: row wrap;
}
.schema-wrap .Schema > .Checklist,
.schema-wrap .Schema > .Input {
  width: calc(100% - 20px);
  margin-left: 20px;
}
.Schema.bright > .Input > textarea,
.Schema.bright > .Input > input,
.Schema.bright > .Checklist {
  color: #000;
}
.schema-wrap .Schema > .Input.half {
  width: calc(50% - 20px);
}
.schema-wrap .Schema button {
  margin-left: 20px;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap + .schema-wrap {
  width: 450px;
  margin-left: 20px;
}
.NewsArticle > .Wrap > .content-outer-wrap > .content-wrap + .schema-wrap h3 {
  margin-left: 20px;
}
.nordea {
  width: 150px;
  height: 50px;
  background: url(/naering/gfx/nordea.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  margin: 20px;
}
.align-left .nordea {
  margin: 0 0 20px;
}

.Sticky {
  top: 0;
  position: sticky;
  padding: 20px;
  background: #333;
}

@media screen and (max-width: 1300px) {
  .NewsArticle > .Wrap > .content-outer-wrap {
    flex-flow: column;
  }
  .NewsArticle.align-left > .Wrap {
    align-items: center;
  }
  .NewsArticle.align-left > .Wrap > .PageTitle {
    align-items: center;
    margin-top: 0;
    padding: 0 20px;
  }
  .NewsArticle > .Wrap > .ingress + .content-wrap {
    flex-direction: column;
    align-items: center;
  }
  .NewsArticle > .Wrap > .content-outer-wrap > .content-wrap {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .NewsArticle.align-left > .Wrap > .content-outer-wrap > .content-wrap > .ingress {
    justify-content: center;
    text-align: center;
  }
  .NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .content + .schema-wrap {
    margin: 40px 0 0 0;
    width: 100%;
    padding: 0 40px 0 20px;
    box-sizing: border-box;
    top: 0;
  }
  .NewsArticle > .Wrap > .content-outer-wrap > .content-wrap + .schema-wrap {
    padding: 30px 30px 0 0;
    box-sizing: border-box;
    width: calc(100% - 10px);
    margin-left: 10px;
  }
}
@media screen and (max-width: 800px) {
  .RelatedArticles > .List,
  .RelatedArticles > .InfoBoxes {
    max-width: 100%;
  }
  .EstateContent > .content-wrap > .second-wrap {
    min-width: 100%;
  }
  .EstateViewings {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .ValueItemWrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .ValueItemWrap > .ValueItem {
    padding: 0 30px 30px 0;
  }
  .Video {
    height: 400px;
  }
  .NewsArticle > .Wrap > .content-outer-wrap > .content-wrap > .ingress {
    width: 100%;
  }
  .EstateContent > .content-wrap > .second-wrap > .ContactSchemaEstate {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .RelatedArticles {
    width: 100%;
  }
  .List.info-boxes {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .NotFound {
    width: 100%;
  }
  .ListItem + .ContactBox,
  .ListItem + .ListItem {
    margin-top: 0;
    padding-top: 0;
  }
  .RelatedArticles {
    padding: 0;
  }
  .RelatedArticles > .List > .ListItem {
    margin: 20px 20px 0;
  }
  .NewsArticle > .Wrap {
    padding: 30px 0;
  }
  .NewsArticle > .Image {
    height: 300px;
  }
  .TextContent > div {
    width: 100%;
    max-width: 100%;
  }
  .List > .Wrap {
    grid-template-columns: 1fr;
  }
  .ContactSchemaEstate {
    padding: 40px;
  }
  .schema-wrap .Schema > .Input.half {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .InfoBox,
  .ContactBox {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .InfoBox > .Image {
    max-width: 100%;
  }
  .InfoBoxes.space-evenly {
    padding: 0;
  }
  .InfoBoxes.space-evenly > .ContactBox,
  .InfoBoxes.space-evenly > .InfoBox {
    margin: 0;
  }
  .EstateDetails > .EstateStatusIcon {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -350px;
  }
}
