@font-face{
  font-family:"Lato";
  font-display: swap;
  src:url("/static/common/fonts/Lato.ttf?5ead22d4920d");
}

@-webkit-keyframes fadeIn
{
  100%
  {
    opacity:1;
  }
}

@keyframes fadeIn
{
  100%
  {
    opacity:1;
  }
}
@-webkit-keyframes popIn
{
  100%
  {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);

    opacity:1;
  }
}

@keyframes popIn
{
  100%
  {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);

    opacity:1;
  }
}

@-webkit-keyframes alert
{
  100%
  {
    background-color:RGB(242, 222, 222);
  }
}

@keyframes alert
{
  100%
  {
    background-color:RGB(242, 222, 222);
  }
}

@-webkit-keyframes slidefadeIn
{
  0%
  {
    opacity:0;

    -webkit-transform:translateY(-5%);
    -moz-transform:translateY(-5%);
    transform:translateY(-5%);
  }
  100%
  {
    opacity:1;
  }
}

@keyframes slidefadeIn
{
  0%
  {
    opacity:0;

    -webkit-transform:translateY(-5%);
    -moz-transform:translateY(-5%);
    transform:translateY(-5%);
  }
  100%
  {
    opacity:1;
  }
}

@-webkit-keyframes scaleIn
{
  0%
  {
    opacity:0;

    -webkit-transform:scale(0.9);
    -moz-transform:scale(0.9);
    transform:scale(0.9);
  }
  100%
  {
    opacity:1;
  }
}

@keyframes scaleIn
{
  0%
  {
    opacity:0;

    -webkit-transform:scale(0.9);
    -moz-transform:scale(0.9);
    transform:scale(0.9);
  }
  100%
  {
    opacity:1;
  }
}

@keyframes pulse {
  0% { transform: rotate(0deg);}
  20% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@media screen
{

  html
  {
    position:relative;
    height:100%;
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
  }

  body
  {
    margin:auto;
    font-family: "Lato", "Trebuchet MS", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:17px;

    color:#231f20;

    width:100%;
    max-width:1140px;

    padding:16px;
    box-sizing:border-box;

    overflow-x:hidden;
  }

  body .landfactor{
    z-index: 10001;

    background-color: #405218;
    color: #FFF;

    font-size: 22px;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
  }

  body .landfactor div a::before{
    display: inline-block;
    content: "";
    height: 100%;
    vertical-align: middle;
  }

  body .landfactor div{
    position: relative;
    box-sizing: border-box;

    margin: auto;

    max-width: 1140px;
  }

  body .landfactor div p{
    display: inline-block;
    padding: 16px;

    margin: 0;
    margin-right: 20px;
  }

  body .landfactor div a{
    position: absolute;
    padding: 16px;
    box-sizing: border-box;
    vertical-align: middle;

    right: 0;
    top: 0;
    height: 100%;
  }


  h1
  {
      font-size: 30px;
      font-weight: 500;
  }

  h2
  {
      font-size: 24px;
      font-weight: 500;
  }

  body a
  {
    color:rgb(255, 105, 0);

    text-decoration:none;
  }

  body a:hover
  {
    text-decoration:underline;
  }

  body a:visited
  {
    color:rgba(255, 105, 0,.6);
  }

  /* Lazyloader adds this class to give a nice loading animation */
  [class*="holder"].loader,
  [class*="thumbnail"].loader{
    position: relative;
    text-align: center;
    min-width: 60px;
    min-height: 60px;
  }

  [class*="holder"].loader::before,
  [class*="thumbnail"].loader::before{
    display: inline-block;
    content: "";
    height: 100%;
    vertical-align: middle;
  }

  [class*="holder"].loader::after,
  [class*="thumbnail"].loader::after{
    position: absolute;
    display: inline-block;
    content: "";
    vertical-align: middle;

    border-color: #AAA;
    border-top-color: #003a70;

    border-width:2px;
    border-style:solid;
    border-radius: 50%;

    width:50px;
    height:50px;

    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    flex:0;
    animation: pulse 1s ease-in-out infinite;

    background-color: transparent;
  }

  /* Lazyloader will fall over to this if an image fails to load */
  [class*="holder"].loader.failed::after,
  [class*="thumbnail"].loader.failed::after{
    animation: none;

    font-family: "Font Awesome 5 Pro";
    font-size: 22px;
    content:"\f071";

    border-color: #F99;
    color: #F99;

    line-height: 42px;
    box-sizing: border-box;
  }

  .property .thumbnail noscript[data-src]
  {
    max-width:inherit;
  }

  .logo
  {
    display:inline-block;
  }

  .logo img
  {
    display: inline-block;
    max-height:45px;
  }

  img{
    opacity:1;

    -webkit-transition:0.2s;
    -moz-transition:0.2s;
    transition:0.2s;
  }

  img[data-src] {
    opacity:0;
  }

  noscript[data-src]
  {
    display:flex;

    width:100%;
    height:100%;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  #navtog
  {
    display:none;
  }

  .navtoghold
  {
    display:none;
    background-color:#FFF;

    position:fixed;

    top:0;
    left:0;
    width:100%;

    height:44px;

    z-index:1001;
  }

  .navtog
  {
    -webkit-transition:background-color 0.4s;
    -moz-transition:background-color 0.4s;
    transition:background-color 0.4s;

    display:none;

    position:absolute;

    background:#FFF;

    top:0;
    right:0;

    z-index:1001;

    padding:8px;
    height:44px;

    border-radius:0px 0px 0px 2px;
    box-sizing:border-box;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .navtog i {
    font-size:32px;
  }

  .nav {
    display:flex;
    top:0;
    left:0;

    width:100%;
    height:55px;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    justify-content: flex-end;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .nav .navinner
  {
    display:flex;
    flex:1;

    height:25px;
    text-align: right;
  }

  .nav .navinner:first-child img
  {
    max-width: 150px;
    padding: 8px;
  }

  .nav .navinner ul
  {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    justify-content: flex-end;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    margin:0;
    padding:0;

    height:100%;
    width:100%;
  }

  .nav .navinner ul li
  {
    display: inline-block;
    list-style:none;

    height:100%;
  }

  .nav .navinner ul li:not(:last-child)
  {
    border-width:0px 1px 0px 0px;
    border-style:solid;
    border-color:#FF6900;
  }

  .nav .navinner ul li a
  {
    display:inline-flex;

    font-size:16px;
    font-weight:400px;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    text-decoration: none;
    color: #003a70;

    padding:0px 8px;
    margin-left: 7px;
    margin-right: 7px;
    height:100%;

    box-sizing: border-box;
  }
  .nav .navinner ul li a:hover {
    text-decoration: underline;
    text-decoration-color: #FF6900;
    color: #FF6900;
  }


  .mid-nav-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: space-between;
    text-align: left;
    max-width:100%;
  }

  .mid-nav-wrapper .tagline
  {
    display:flex;
    flex-shrink:1;
    overflow:hidden;

    padding:8px 16px;

    box-sizing:border-box;
  }

  .mid-nav-wrapper > div {
    margin-top: 30px;
    margin-right: 0px;
    padding-right: 0px;
    flex-shrink: 0;
  }
  .social-links {
    display: flex;
    flex-flow: row nowrap;
    -webkit-flex-flow: row nowrap;
    align-content: flex-end;
    opacity: 1;
    padding:0;
  }
  .social-item {
    display: inline-flex;
    margin-left:6px;
  }
  #space_from_logo {
    margin-left: 30px;
    margin-top:20px;
  }

  .modal-open {
    overflow: hidden;
  }

  .about-header {
    font-weight: 400;
    font-style: normal;
    font-size: 20;
  }
  .about-vspace {
    height: 20px;
  }
  #contact-vspace {
    height: 40px;
  }
  #contact-header {
    font-size: 26px;
    font-weight: bold;
  }

  .contact-form .alert ul
  {
    list-style:none;
    padding:0;
    margin:0;
  }

  .contact-form .alert ul li::before
  {
    display:inline-block;

    font-family:"Font Awesome 5 Pro";
    content:"\f071";

    font-weight:900;
    font-size:16px;

    padding:8px 16px;
    margin-right:8px;

    background:#FFF;
  }

  .contact-form .alert ul li
  {
    -webkit-animation:alert 2s .6s forwards;
    -moz-animation:alert 2s .6s forwards;
    animation:alert 2s .6s forwards;

    margin-bottom:16px;

    background-color:RGB(242, 174, 174);

    border-width:1px;
    border-style:solid;
    border-color:#ebccd1;
    border-radius:4px;

    overflow:hidden;
  }

  .contact-form form {
    flex: 1;
    background-color: #e7e7e7;
    padding: 35px;
  }
  .contact-form form .control-group {
    padding-bottom: 13px;
  }

  .contact-form form .control-group span {
    font-weight: bold;
    font-size: 14px;
  }
  .contact-form form .control-group #id_name {
    font-weight: bold;
    font-size: 14px;
  }

  .contact-form form input[type="text"], .contact-form form input[type="email"]
  {
    padding:8px;

    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-radius:4px;

    outline:none;
  }

  .contact-form form input[type="text"]:focus, .contact-form form input[type="email"]:focus
  {
    border-color:#003a70;
  }

  .control-group#div_id_category .controls,
  .control-group#div_id_service_id .controls,
  .control-group#div_id_location .controls
  {
    position:relative;
  }

  .control-group#div_id_category .controls select,
  .control-group#div_id_location .controls select,
  .control-group#div_id_service_id .controls select
  {
    padding:4px 8px;

    background:#FFF;

    outline:none;

    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-radius:4px;

    -webkit-appearance:none;

    height:33px;

    box-sizing:border-box;

    box-shadow:none !important;
  }

  .control-group#div_id_location .controls select:focus,
  .control-group#div_id_category .controls select:focus,
  .control-group#div_id_service_id .controls select:focus
  {
    border-color:#003a70;
  }

  .control-group#div_id_location .controls select:hover,
  .control-group#div_id_category .controls select:hover,
  .control-group#div_id_service_id .controls select:hover
  {
    cursor: pointer;
  }

  .control-group#div_id_location .controls::after,
  .control-group#div_id_category .controls::after,
  .control-group#div_id_service_id .controls::after  {
    overflow:hidden;
    position: absolute;

    width:34px;
    height:100%;
    right: 0;
    top: 0;

    padding:6px;
    padding-top:4px;
    box-sizing:border-box;

    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;

    background-color:#003a70;
    color:#FFF;
    font-size: 20px;
    font-weight:bold;
    text-align:center;
    content:"\f078";
    display:inline-block;

    pointer-events:none;

    border-style:solid;
    border-color:transparent;
    border-radius:0px 4px 4px 0px;
  }

  .contact-form .control-group #id_category:hover {
    cursor: pointer;
  }
  .contact-form .control-group .checkbox {
    margin-left: 2em;
    height: 2em;
    width: auto;
  }
  .contact-form .control-group .checkbox:hover {
    cursor: pointer;
  }
  .contact-form .form-actions #submit-id-send-message {
    height: 30px;
    border-radius: 10px;
    border: 1px;

    background-color: #FF6900;
    color: white;
    font-weight: bold;

    -webkit-appearance:none;
  }
  .contact-form .form-actions #submit-id-send-message:hover {
    background-color: #003a70;
    cursor: pointer;
  }
  .contact-form #map {
    flex: 1;
  }
  .contact-hidden {
    display: none;
    visibility: hidden;
  }

  .contact-link
  {
    color: #FFF;
  }

  #div_id_name, #div_id_email, #div_id_telephone, #div_id_message {
    display: none;
    visibility: hidden;
  }


  #empty-space {
    height: 200px;
  }
  .contact-locations-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;

    height: auto;
    width: 100%;
  }
  .contact-locations-item {
    align-self: center;
    height: 260px;
    width: 300px;
    flex-grow: 1;
    margin-top:  5px;
    margin-right: 5px;
    background-color: #e7e7e7;
  }
  .contact-locations-item a {
    text-decoration: none;
  }
  .contact-locations-item a:hover {
    text-decoration: underline;
  }
  .office-info {
    margin: 17px;
    max-width: 275px;

    font-size: 10px;
    text-align: left;
  }
  .office-info p {
    font-size: 14px;
  }
  body.office .content {
    border-bottom: 1px solid #797979;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
  }
  body.office .address-details {
    font-size: 16px;
  }
  #office-location {
    font-size: 24px;
    font-weight: normal;
    color: #FF6900;
    margin-bottom: 15px;
  }
  #office-telephone-number {
    margin-bottom: 5px;
  }
  #office-telephone-number a
  {
    padding-left:10px;
  }
  #office-email {
    margin-bottom: 5px;
  }
  #office-email a
  {
    padding-left:10px;
  }
  body.office .opening-hours h4 {
    margin-bottom: 0;
  }
  body.office .opening-hours {
    margin-bottom: 30px;
  }
  #office-pin {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    font-size:20px;
    padding-top:16px;
  }
  #office-pin a
  {
    padding-left:8px;
  }


  #vertical-space {
    height: 18px;
  }
  #paint-me-white {
    background-color: white;
  }

  .controls .checkbox {
    display: inline-block;
    width: 100%;
  }



  .footer-row {
    display: flex;
    background-color: #efefef;
    position: absolute;
    left: 0;
    width: 100%;
    justify-content: center;
  }
  .empty-space {
    height: 25px;
  }

  .footer {
    display: flex;
    background-color: #efefef;

    max-width: 1140px;
    min-height: 280px;
    height: auto;
    width: 100%;
  }

  .footer hr
  {
    width:100%;
    margin:10px 0px;
    border:0;

    border-width:1px 0px 0px 0px;
    border-style:solid;
  }

  .footer-column {
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    padding-top: 20px;
    width:100%;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }
  .footer-container {
    display: -webkit-box;
    display: -moz-box;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;
    box-sizing: border-box;

    justify-content: center;
    align-items: flex-start;

    padding: auto;
    margin: auto;
    list-style: none;

    width: 100%;
  }
  .footer-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column wrap;
    padding: auto;
    width: 50%;
    text-align: left;
    font-style: normal;
    font-size: 15px;
    margin-bottom: 24px
  }

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

  .footer-container img
  {
    max-width:100%;
  }

  .box0 {
    order:0;
    flex-basis: 50%;
  }
  .box1 {
    order:1;
    flex-basis: 50%;
  }
  .box2 {
    order:2;
    width: 100%;

    flex-basis: 100%;
    flex-flow: column;

    justify-content: flex-start;
    align-items: flex-start;

    text-align: left;
    font-size: 11px;
  }
  .footer-title {
    font-style: normal;
    font-size: 24px;
  }
  #footer-near-office{
    text-decoration: none;
    font-size: 24px;
  }
  #footer-near-office:hover {
    text-decoration: underline;
  }
  #footer-anchor{
    text-decoration: none;
  }
  #footer-anchor:hover {
    text-decoration: underline;
  }
  .footer-link
  {
    display: inline-flex;
    color: #231f20;
    text-decoration: none;
  }
  .footer-link:hover
  {
    text-decoration: underline;
  }
  .footer-link:visited {
    color: #231f20;
  }


  .admin-toolbar
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    position:fixed;
    display:flex;

    top:0;
    left:0;

    width:100%;
    height:50px;

    z-index:10000;

    background-color:#EAEAEA;
    box-shadow:0 2px 4px rgba(0,0,0,.2);
  }

  .admin-toolbar .user
  {
    display:inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    height:100%;
    box-sizing:border-box;

    padding:8px 16px;

    background-color:#FAFAFA;
  }

  .admin-toolbar .user i
  {
    padding-right:8px;
    color:#333;

    text-shadow:0 1px 2px rgba(50,50,50,.2);
  }

  .admin-toolbar .path
  {
    display:inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    height:100%;

    box-sizing:border-box;

    padding:8px 16px;
  }

  .admin-toolbar .pullright
  {
    display:inline-block;
    position:absolute;

    height:100%;
    right:0;

    box-sizing:border-box;
  }

  .admin-toolbar .pullright i
  {
    padding:16px;

    cursor:pointer;
  }

  .admin-toolbar .editsave
  {
    list-style:none;

    display:inline-block;

    height:100%;
  }

  .admin-toolbar .editsave a, .admin-toolbar label
  {
    display:inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    text-decoration:none;
    color:#FFF !important;
    background-color:#003a70;

    cursor:pointer;

    padding:8px 20px;
    box-sizing: border-box;
    height:100%;
  }

  .admin-toolbar .editsave a.error,
  .admin-toolbar .editsave label.error
  {
    background-color:#F33;
    color:#FFF !important;
  }

  .admin-toolbar .editsave a.saving,
  .admin-toolbar .editsave label.saving
  {
    background-color:#FFF;
    color:#333 !important;
  }

  .admin-toolbar .editsave a.saving span,
  .admin-toolbar .editsave label.saving span
  {
    padding-right:8px;
  }

  .admin-toolbar .editsave a.saving i,
  .admin-toolbar .editsave label.saving i
  {
    padding:0;
  }

  .admin-toolbar .path span
  {
    margin-left:4px;

    border-radius:4px;
    border-style:solid;
    border-width:1px;
    border-color:#CACACA;

    padding:4px;

    background-color:#FFF;
  }

  .admin-toolbar .path span a
  {
    color:#003a70;
    padding:4px;
  }

  #admintog
  {
    display:none;
  }

  .admintog
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    position:fixed;
    display:inline-block;

    top:52px;
    left:0;
    right:0;
    width:36px;

    cursor:pointer;

    text-align:center;

    margin:auto;

    z-index: 10000;
  }

  .admintog i
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    font-size:26px;

    color:#FF6900;
  }

  /* Moves admintog button if checkbox is checked */
  #admintog:checked ~ .admintog
  {
    -webkit-transform:translateY(-52px);
    -moz-transform:translateY(-52px);
    transform:translateY(-52px);
  }

  /* Flip icon inside admintog button if checkbox is checked */
  #admintog:checked ~ .admintog i
  {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    transform:rotate(180deg);
  }

  /* Actually slide admin-toolbar out of view if checkbox is checked */
  #admintog:checked ~ .admin-toolbar
  {
    -webkit-transform:translateY(-100%);
    -moz-transform:translateY(-100%);
    transform:translateY(-100%);
  }

  #admintog:checked ~ .nav
  {
    padding-top:0 !important;
  }

  .midnav
  {
    margin-bottom:20px;
  }

  .subnav-holder
  {
    margin-bottom:30px;
  }

  .subnav
  {
    display:flex;
  }

  .subnav div, .subnav span
  {
    position:relative;
    min-width:75px;
    height:36px;

    display:inline-flex;
    flex-grow:1;
  }

  .subnav span.mobile
  {
    display:none;
  }

  .subnav div:not(:last-of-type)
  {
    margin-right:4px;
  }

  .subnav div > a, .subnav span > a
  {
    display:inline-flex;
    padding:0px 16px;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
    background-color:#003a70;
  }

  .subnav div a, .subnav span a
  {
    text-decoration:none;

    width:100%;
  }

  .subnav div h2, .subnav span h2
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    margin:0;
    /* padding:10px 32px; */
    box-sizing:border-box;

    font-size:16px;
    line-height:16px;
    font-weight:normal;

    min-width:100%;

    white-space:nowrap;
    text-align:center;
    color:#FFF;
  }

  .subnav div::before
  {
    display: inline-block;
    content: "";
    vertical-align: middle;
    height: 100%;
  }

  .subnav div ul, .subnav span ul
  {
    display:none;
    min-width:100%;

    position:absolute;
    margin:0;

    left:0;
    top:35px;

    padding:0;
    padding-top:4px;

    list-style:none;
  }

  .subnav div.disabled, .subnav span.disabled
  {
    pointer-events:none;
  }

  .subnav div.disabled h2, .subnav div.disabled h2
  {
    background-color:#CACACA;
  }

  .MsoNormal {
    margin-right: 0;
  }

  form.search
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    background-color:#E8E8E8;
    padding:20px;
  }

  form hr
  {
    width: 100%;
    border-width: 1px 0px 0px 0px;
    height: 0px;

    margin:0;
  }


  form.search input[type="text"]
  {
    border-width:1px;
    border-style:solid;
    border-color:#CACACA;

    outline:none;
    height:29px;
    box-sizing: border-box;

    padding:0px 6px;
    margin:0;
  }

  form.search .radioswitch #lettings + label
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    flex:1;

    background:#003a70;
  }

  form.search .radioswitch #lettings + label::before,   form.search .radioswitch #lettings + label::after
  {
    flex:1;

    text-align:center;
  }

  form.search input[type="text"]:focus
  {
    box-shadow:inset 0px 0px 1px 0px rgba(0,0,0,.4)
  }

  form.search input[type="submit"] {
    -webkit-transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -moz-transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 0;
    border-radius: 4px;
    height:29px;
    box-sizing:border-box;
    padding:6px 6px;
    outline:none;
    margin-left:auto;
    background-color:rgba(255,104,0,1);
    color:#FFF;
    max-width:120px !important;
    min-width:auto !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
  }

  form.search input[type="submit"]:hover {
    background-color: #003a70;
  }

  form.search input[type="submit"]:active
  {
    -webkit-transition:none;
    -moz-transition:none;
    transition:none;

    -webkit-transform:scale(0.96);
    -moz-transform:scale(0.96);
    transform:scale(0.96);
  }

  form.search .multi-select
  {
    position:relative;

    outline:none;
    user-select:none;

    height:29px;
  }

  form.search .multi-select h2
  {
    font-size:16px;
    font-weight:normal;

    margin:0;
  }

  form.search .multi-select div
  {
    overflow:hidden;
    z-index:5;

    outline:none;

    position:absolute;
    margin-top:26px;

    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    background:#FFF;

    border-width:1px;
    border-style:solid;
    border-color:#CACACA;
    opacity:0;
    box-sizing:border-box;

    max-height:0;
    min-width:100%;
  }

  form.search .multi-select div label
  {
    overflow:hidden;
    flex-shrink:0;
  }

  form.search .multi-select div + .close
  {
    display:none;
  }

  form.search .multi-select .header + label
  {
    display:flex;
    position:relative;
    padding:4px;
    z-index:0;

    height:29px;

    outline:none;

    background:#FFF;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    border-width:1px;
    border-style:solid;
    border-color:#CACACA;
    box-sizing:border-box;
  }

  .multi-select:focus .header + label,
  .multi-select.focus-within .header + label
  {
    border-color:#003a70 !important;
  }

  .multi-select:focus-within .header ~ label
  {
    border-color:#003a70;
    border-style:solid;
  }

  form.search .multi-select .header + label::after
  {
    -webkit-transition:0.2s;
    -moz-transition:0.2s;
    transition:0.2s;

    position:absolute;
    display:flex;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    margin-top:1px;
    right:0;
    top:0;

    height:100%;

    padding:4px;
    padding-bottom:6px;
    box-sizing:border-box;

    font-family:"Font Awesome 5 Pro";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;

    content:"\f054";
  }

  form.search .multi-select:focus,
  form.search .multi-select.focus-within
  {
    pointer-events:none;
  }

  form.search .multi-select:focus-within
  {
    pointer-events:none;
  }

  form.search .multi-select:focus .header + label::after,
  form.search .multi-select.focus-within .header + label::after
  {
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    transform:rotate(90deg);

    margin-right:4px;
    margin-top:0;
  }

  form.search .multi-select:focus-within .header + label::after
  {
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    transform:rotate(90deg);

    margin-right:4px;
    margin-top:0;
  }

  form.search .multi-select:focus .header + label ~ div,
  form.search .multi-select.focus-within .header + label ~ div
  {
    max-height:400px;

    overflow:auto;

    -webkit-transform:translateX(0%);
    -moz-transform:translateX(0%);
    transform:translateX(0%);

    opacity:1;

    pointer-events:all;
  }

  form.search .multi-select:focus-within .header + label ~ div
  {
    max-height:400px;

    overflow:auto;

    -webkit-transform:translateX(0%);
    -moz-transform:translateX(0%);
    transform:translateX(0%);

    opacity:1;

    pointer-events:all;
  }

  form div:not(.radioswitch)
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  form div.multi-select input[type="checkbox"]
  {
    /* DO NOT ASK, CHROME REQUIRES THIS TO ALLOW CHECKBOXES TO BE FOCUSABLE! */
    opacity:0;
    height:0;
    overflow:hidden;
  }

  form div.multi-select input[type="checkbox"]:not(.header) + label
  {
    border-width:1px;
    border-color:transparent;
    border-style:solid;

    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    position:relative;

    display:flex;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    padding-left:0px;

    font-size:12px;
  }

  form div.multi-select input[type="checkbox"]:not(.header):focus + label
  {
    border-color:#003a70;
  }

  form div.multi-select input[type="checkbox"]:not(.header) + label::before
  {
    -webkit-transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    -moz-transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition:0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);

    /*-webkit-transform:scale(0.6);
    -moz-transform:scale(0.6);
    transform:scale(0.6);*/

    -webkit-transform:scale(0.8);
    -moz-transform:scale(0.8);
    transform:scale(0.8);

    font-family:"Font Awesome 5 Pro";

    content:"\f111";

    padding:4px;
    opacity:0.6;
    font-size:16px;
  }

  form div.multi-select input[type="checkbox"]:checked + label::before
  {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);

    content:"\f058";
    font-weight:900;

    opacity:1;
  }

  form .radioswitch
  {
    display:flex;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    min-width:200px;
  }

  /* Should probably have made this two seperate buttons rather than checkbox trickery */

  form .radioswitch #lettings
  {
    display:none;
  }

  form .radioswitch #lettings + label
  {
    display:inline-block;
    position:relative;

    line-height:25px;

    text-align:center;
    z-index:1;

    user-select:none;

    border-radius:4px;
    overflow:hidden;
  }

  form .radioswitch #lettings + label hr
  {
    display:block;
    margin:0;

    width:100%;
    height:10px;

    background-color:#E8E8E8;
    z-index:3;

    border:0;
  }

  form .radioswitch #lettings + label b {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-weight: normal;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 6px #E8E8E8;
    cursor: pointer;
  }

  /*form .radioswitch #lettings + label::before
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);

    content:attr(data-off) "\A" attr(data-on);
    white-space: pre-line;
    line-height:30px;

    display:inline-block;
    color:#FFF;

    z-index:1;
  }*/

  form .radioswitch #lettings + label::first-line
  {
    display:inline-block;

    content:attr(data-off);
  }

  form .radioswitch #lettings + label::after
  {
    will-change:transform;

    -webkit-transition:0.2s;
    -moz-transition:0.2s;
    transition:0.2s;

    color:#FFF;

    background-color:#FF6900;
    content:"";

    height:50%;
    width:100%;
    top:0;
    left:0;

    display:inline-block;
    position:absolute;

    z-index:0;
  }

  form .radioswitch #lettings:checked + label::after
  {
    -webkit-transform:translateY(100%);
    -moz-transform:translateY(100%);
    transform:translateY(100%);
  }

  form #submit-id-page-save
  {
    display:none;
  }

  form .asteriskField
  {
    display:none;
  }

  .list-holder
  {
    display:flex;

    flex-wrap:wrap;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    align-items: stretch;
  }

  .list-holder .list-wrap
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    padding:4px;

    flex:1;

    min-width:45%;
    max-width:50%;

    box-sizing:border-box;
  }

  .list-holder .list-wrap .img-holder
  {
    display:flex;

    max-width:100%;

    height:300px;

    overflow: hidden;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .list-holder .list-wrap .img-holder-staff
  {
    display: flex;
    max-width:100%;

    height:215px;

    overflow: hidden;

    padding: 20px;
  }



  .list-holder .list-wrap .list-item:not(.small)
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    -webkit-align-content: stretch;
    align-content: stretch;

    background-color:#e7e7e7;
    min-height:100%;
    width:100%;
  }

  .list-holder .list-wrap .list-item.small
  {
    display:inline-block;
    height:auto;
    flex:1;

    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:#FF6900;
  }

  .list-holder .list-wrap .list-item.background
  {
    background-color:#e7e7e7;
  }

  .list-holder .list-wrap .list-item.disabled
  {
    opacity:0.3;
  }

  .list-holder .list-wrap .img-holder img
  {
    max-width:100%;
  }

  .list-holder .list-wrap .img-holder-staff img.staff-img
  {
    max-width:100%;
    max-height:100%;
    width: auto;
  }


  .list-holder .list-wrap,  .list-holder .list-wrap:visited
  {
    text-decoration:none;
    color:#000;
  }

  .list-holder .list-wrap h1, .list-holder .list-wrap h2, .list-holder .list-wrap h3
  {
    margin:0;
  }

  .list-holder .list-wrap h2
  {
    font-size:24px;
    font-weight:inherit;

    padding:15px 20px 0px 20px;
    margin-bottom:20px;
  }

  .list-holder .list-wrap p
  {
    padding:0px 20px 10px 20px;
    margin-bottom: 10px;
  }

  .list-holder .list-wrap h3
  {
    padding:0px 20px;
    line-height: 1.5em;
    margin-bottom: 16px;
  }


  .list-holder .list-wrap p, .list-holder .list-wrap h3
  {
    font-size:16px;
    font-weight:inherit;
    white-space:pre-wrap;
  }

  .list-item p
  {
    padding:8px 20px;
  }

  .list-item div.dates {
    padding: 0 20px 8px;
    margin-bottom: 16px;
  }

  .list-item:not(.disabled) div.dates
  {
    /* background-color:#FFF; */
    color:#003a70;
  }

  .list-item.disabled div.dates
  {
    background-color:#AAA;
    color:#FFF;
  }


  .list-holder .list-wrap .list-item .text *
  {
    background:transparent !important;
    background-color:transparent !important;
    font-size:inherit !important;
    font-weight:inherit !important;
    font-family:inherit !important;
    line-height:inherit !important;
    color:inherit !important;
  }


  .list-holder a.list-wrap:hover h1
  {
    text-decoration:underline;
  }

  .list-holder .list-wrap .list-item-people
  {
    display:inline-block;
    background-color:#e7e7e7;
    width:100%;
    flex:1;
  }
  .list-holder .list-wrap .list-item-people .details p:not(:last-of-type)
  {
    margin-bottom:0;
    padding-bottom:0;
  }
  .list-item-people h2 {
    line-height: 1.5em;
  }
  .list-page > h1
  {
    font-size:30px;
    font-weight:500;
  }
  .list-page > h2
  {
    font-size:20px;
    font-weight:normal;
  }


  .page {
    min-height: 100%;
    height: 100%;
  }
  .page.disabled
  {
    background-color:rgba(255,200,200,0.6);
  }
  .footer, .page:after {
    min-height: 280px;
  }

  .page > img
  {
    display:block;
    margin:auto;

    max-width: 100%;
  }

  #carousel-edit .carousel-only {
    visibility: hidden;
    transition: 0.4s;
  }

  .page .image-cta,
  .page .carousel {
    display: block;
    width: 100%;
  }

  .page .image-cta .cta-inner,
  .page .carousel .cta-inner {
    position: relative;
    display: block;
    width: 100%;
  }

  .img-selector .img-wrap{
    position: relative;

    max-height: 200px !important;
    min-width: 24.5% !important;
    max-width: 25%;
  }

  .page .image-cta .cta-inner span.title::before,
  .page .carousel .cta-inner span.title::before,
  .img-selector .img-wrap span.title::before{
    display: inline-block;
    height: 100%;
    content: "";

    vertical-align: middle;
  }

  .page .image-cta .cta-inner span.title,
  .img-selector .img-wrap span.title
  {
    text-align: center;
    vertical-align: middle;
    display: block;
    position: absolute;

    padding:8px;

    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 50px;

    background: rgba(50,50,50,.8);
    color: #FFF;
    box-sizing: border-box;
  }

  .page .image-cta .cta-inner .img-holder:not(.loaded) ~ span.title,
  .page .carousel .slide-inner .img-holder:not(.loaded) ~ span.title {
    display: none;
  }

  .page .img-holder, .page .img-placeholder
  {
    display:flex;
    max-width:100%;
    overflow: hidden;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .page.landing .img-holder
  {
    margin-bottom:0;
  }

  .page .img-switcher
  {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    margin-bottom:24px;
  }

  .page .img-switcher
  {
    overflow:hidden;
    position:relative;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    align-items: stretch;

    height:350px;

    overflow: hidden;
  }

  body.standard.page .img-switcher {
    height: 455px;
  }

  .page .img-switcher .img-wrap
  {
    will-change:transform;
    display:flex;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    -webkit-transition:1.2s ease-in-out;
    -moz-transition:1.2s ease-in-out;
    transition:1.2s ease-in-out;

    width:100%;
  }

  .page.edit .img-switcher .img-wrap
  {
    display:flex;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    width:100%;
  }

  .page.edit .img-switcher .img-buttons {
    visibility: hidden;
  }

  .page .img-switcher .img-buttons
  {
    position:absolute;

    display:flex;

    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    justify-content: space-between;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    pointer-events:none;

    top:0;
    left:0;

    width:100%;
    height:100%;
  }

  .page .img-switcher .img-buttons .button
  {
    padding:16px;
    pointer-events:all;
  }

  .page .img-switcher .img-buttons .button:hover
  {
    text-decoration:none;
  }

  .page .img-switcher .img-buttons .button i
  {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    background-color:rgba(0,0,0,.6);

    width:50px;
    height:50px;

    border-radius:50%;

    font-size:32px;

    color:#FFF;
  }

  .page .img-switcher .cta,
  .page .img-switcher .slide {
    width:100%;
    min-width:100%;
  }
  .home.page.edit .img-switcher .slide {
    min-width: unset;
  }

  .page .img-switcher .cta .cta-details,
  .page .img-switcher .slide .slide-details {
    position:absolute;
    bottom:0;
    left:0;
    padding:20px;
    margin-bottom:30px;
    border-width:0px 0px 0px 10px;
    border-style:solid;
    border-color:#FF6900;
    background-color:rgba(255,255,255,.8);
    color:#003a70;
    max-width: 33vw;
  }

  .page .img-switcher .cta .cta-details h2,
  .page .img-switcher .slide .slide-details h1 {
    margin-top:0;
    margin-bottom:20px;

    font-size:26px;
  }

  .page .img-switcher .cta .cta-details p,
  .page .img-switcher .slide .slide-details h2 {
    font-size:16px;
    font-weight:normal;

    margin-bottom:0;
  }

  .page .img-switcher .slide .slide-details h1,
  .page .img-switcher .slide .slide-details h2 {
    margin: 0;
  }

  .page .img-switcher .cta .img-holder,
  .page .img-switcher .cta .img-placeholder {
    height: 350px;
  }

  .page .img-switcher .slide .img-holder,
  .page .img-switcher .slide .img-placeholder {
    height: 455px;
  }

  .page .img-switcher .cta .img-holder img,
  .page .img-switcher .slide .img-holder img {
    width:100%;
    max-height: none;

    height:auto;
  }

  .page.edit .img-switcher .cta,
  .page.edit .img-switcher .slide {
    width:20%;

    flex:1;

    opacity:0.6;
  }

  .page.edit .img-switcher .cta:hover,
  .page.edit .img-switcher .slide:hover {
    opacity:0.8;
  }

  .page .img-switcher .cta .cta-inner,
  .page .img-switcher .slide .slide-inner {
    display:block;
    position:relative;
  }

  .page .img-switcher .slide .slide-inner {
    height: 455px;
  }

  .page.edit .img-switcher .cta .cta-details
  {
    position:absolute;

    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background-color:rgba(0,0,0,.6);

    color:#FFF;
  }

  .page.edit .img-switcher .cta .cta-details h2,
  .page.edit .img-switcher .slide .slide-details h1 {
    text-align: center;
    font-size:16px;

    margin:0;
  }

  .page.edit .img-switcher .cta .cta-details p,
  .page.edit .img-switcher .slide .slide-details h2 {
    text-align: center;
    font-weight:normal;
    font-size:12px;

    margin:0;
  }

  .page .cta .img-placeholder, .page .cta .img-holder,
  .page .slide .img-placeholder, .page .slide .img-holder {
    min-height:133px;
  }

  .page .cta .img-holder,
  .page .slide .img-holder {
    background:#333;
  }

  .page:not(.landing) .cta .img-holder,
  .page:not(.landing) .cta .img-placeholder {
    height:60px;
  }

  .page .cta-block .cta .img-placeholder,
  .page .cta-block .cta .img-holder,
  .page .slide-block .slide .img-placeholder,
  .page .slide-block .slide .img-holder {
    height:151px;
  }

  .page .img-switcher .cta .img-placeholder,
  .page .img-switcher .cta .img-holder {
    height:250px;
  }

  .home.page .img-switcher .cta .img-holder {
    height: 350px;
  }

  .page .cta .img-holder,
  .page .slide .img-holder {
    background:#FFF;
  }

  .page .pagecta .cta .img-holder
  {
    display: inline-block;
    text-align: center;
  }

  .page .pagecta .cta .img-holder::before{
    display: inline-block;
    content: "";
    vertical-align: middle;
    height: 100%;
  }

  .page .holder .img-placeholder,
  .page .holder .img-holder,
  .page .img-switcher .img-placeholder {
    position: relative;
    height: 250px;
    background: #333;
    color: #FFF;
    margin: 20px;
  }

  .page .img-switcher .img-placeholder {
    margin: 0;
  }

  #carousel-edit i.slide-change {
    cursor: pointer;
  }

  #carousel-edit i.slide-change:hover {
    color: gray;
  }

  #carousel-edit .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  #carousel-edit .header h2 {
    margin-top: auto;
    margin-bottom: auto;
  }

  #carousel-options {
    display: table;
    border-spacing: 25px 15px;
  }

  #carousel-options .row {
    display: table-row;
  }

  #carousel-options .checkbox-wrap {
    display: table-cell;
  }

  #carousel-options .checkbox-wrap label {
    user-select: none;
  }

  #id_autoplay_delay {
    width: 3em;
    padding-top: 2px;
  }

  .page .holder .img-holder .remove
  {
    display:inline-block;

    cursor:pointer;

    position:absolute;
    top:0;
    right:0;

    padding:16px;

    background-color:#F33;
  }

  .page .holder .img-holder .remove i
  {
    font-size:22px;
  }

  .page .holder .img-placeholder i,
  .page .holder .img-holder i,
  .page .img-switcher .img-placeholder i {
    font-size:64px;
  }

  .page .img-switcher .slide:hover {
    text-decoration: none;
  }

  .page .cta .img-holder img
  {
    display: inline-block;
    height:100%;

    width: auto;
    max-width: none;

    vertical-align: middle;
  }

  .page .cta .img-placeholder i
  {
    font-size:64px;
  }

  .split .cta, .split .cta:visited
  {
    box-sizing:border-box;

    width:100%;
    max-width:25%;

    color:#FFF;

    text-decoration:none;
  }

  .split .cta .cta-inner
  {
    display:block;

    background-color:#FF6900;

    min-height:100%;
  }

  .split .cta
  {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .split  .cta h2 {
    display:block;
    overflow:hidden;
    font-size:20px;
    font-weight:400;
    padding:20px 20px 0px 20px;
    margin:0;
  }

  .split .cta p {
    display:block;
    font-size:16px;
    font-weight:400;
    padding:20px 20px 20px 20px;
    margin:0;
  }

  .split .pagecta .cta p {
    height:auto;
  }

  body.edit .split .cta
  {
    opacity:0.6;
  }

  body.edit .split .cta:hover
  {
    opacity:0.8;
  }

  body.edit .basic-cta
  {
    opacity:0.6;
  }

  body.edit .basic-cta:hover
  {
    opacity:1;
  }

  body.edit .image-cta,
  body.edit .carousel
  {
    display:block;
    opacity:0.6;
  }

  body.edit .image-cta:hover,
  body.edit .carousel:hover
  {
    opacity:1;
  }

  body.edit .carousel img {
    width: 100%;
  }

  body.edit .image-cta .img-placeholder,
  body.edit .carousel .img-placeholder
  {
    background-color:#333;
    min-height:400px;

    border-radius:4px;
  }

  body.edit .image-cta .img-placeholder i,
  body.edit .carousel .img-placeholder i
  {
    font-size:128px;
    color:#FFF;

    text-shadow:-1px 1px #000;
  }

  .split .cta:first-child
  {
    padding-right:20px;
  }
  .split .cta:nth-child(2)
  {
    padding-right:10px;
  }
  .split .cta:nth-child(3)
  {
    padding-left:10px;
  }
  .split .cta:last-child
  {
    padding-left:20px;
  }
  body:not(.landing) .maincontent .pagecta .cta .cta-inner h2 {
    color: #FF6900;
  }


  .landing .maincontent .pagecta {
    display: flex;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;
  }

  .landing .maincontent .pagecta .cta {
    display: inline-block;
    height: auto;
    width: auto;
    flex:1;

    max-width:33.333%;
    min-width:33%;
  }



  .landing .maincontent .pagecta .cta .cta-inner {
    display: flex;
    flex-flow: column;
    padding: 0;
    background-color: #FF6900;
  }
  .landing .maincontent .pagecta .cta .cta-inner:hover {
    opacity: 0.8;
  }
  .landing .maincontent .pagecta .cta .cta-inner .cta-details {

    min-height: 125px;

    height: auto;
    width: auto;

    margin-left: 0px;
    margin-right: 0px;

    color: white;
  }
  .landing .maincontent .pagecta .cta .cta-inner .cta-details h2 {
    margin-bottom: 10px;
    margin-top: 10px;

    min-height: 50px;
    max-width: 230px;
    height: auto;
    width: auto;
  }

  .page.landing .cta .img-holder img,
  .page.landing .slide .img-holder img {
    height:auto;
    max-width: 100%;
  }

  .maincontent h1,
  .main-top h1 {
    margin-top: 0;
  }

  .maincontent .pagecta
  {
    display: block;
  }

  .maincontent .pagecta .cta
  {
    display: block;
    padding: 0;
    max-width: 100%;
  }

  .maincontent .pagecta .cta .cta-inner
  {
    display:flex;
    flex:1;
    background-color:#e7e7e7;

    border-width:1px;
    border-style:solid;
    border-color:#d6d6d6;

    margin-bottom:20px;

    padding:16px;

    box-sizing:border-box;
    color:#333;
  }

  .page.landing .maincontent .pagecta .cta .cta-inner
  {
    max-width:calc(100% - 30px);
    margin:0 auto;
  }

  .maincontent .pagecta .cta .cta-inner .cta-details
  {
    display:inline-block;
    vertical-align:top;
  }
  .maincontent .pagecta .cta .cta-inner .cta-details h2
  {
    padding:0px 16px 0px 16px;
  }
  .maincontent .pagecta .cta .cta-inner .cta-details p
  {
    padding:0px 16px 0px 16px;
    margin-bottom: 10px;
  }
  .page .img-holder img
  {
    max-width:100%;
    height:auto;
    width:100%;
  }
  .page .overlay .img-holder img
  {
    width:auto;
  }

  .page .holder .img-selector
  {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    width: 70vw;
    height: 70vh;
    overflow-y: auto;
  }

  #cta-edit .img-selector {
    max-height: 40vh;
  }

  .page .holder .img-wrap
  {
    display:flex;
    flex: 1;
    height: 200px;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    box-sizing: border-box;
    margin-left: 2px;
    margin-right: 2px;
  }

  .img-selector .img-wrap.selected {
    border: 4px solid #FF6900;
  }

  .page .holder .img-wrap img {
    max-width: 100%;
    max-height: 100%;
  }

   p, li {
    line-height: 1.5em;
    margin-top: 0;
  }


  .page blockquote
  {
    padding: 20px 30px 0;
    margin: 20px 0px;
    font-size: 18px;
  }

  .page blockquote::before {
    display:inline;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 20px;
    width: 50px;
    height: 50px;
    color: rgb(255, 105, 0);
  }

  .page blockquote p {
    margin: 0;
    padding: 0 45px 24px;
  }

  .page.create form div:not(:first-of-type) label
  {
    padding-top:16px;
  }

  .page.edit .maincontent form label:not(.checkbox)
  {
    display:none;
  }

  .page.edit form label.checkbox
  {
    display:flex;
    display:-webkit-flex;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .page.edit form input[name="name"], .page.create form input[type="text"]
  {
    -webkit-transition:padding 0.4s;
    -moz-transition:padding 0.4s;
    transition:padding 0.4s;

    font-size:24px;
    font-weight:500;
    font-family:inherit;

    border-width:1px;
    border-style:solid;
    border-color:rgba(255,255,255,0);

    outline:0;
  }

  .page.edit form input[name="name"]:not(:read-only):focus, .page.create form input[type="text"]:not(:read-only):focus
  {
    padding-left:8px;

    border-color:#FF6900;
  }

  .page.create form input[type="text"]:read-only
  {
    pointer-events:none;

    background-color:#AAA;
    opacity:0.6;
  }

  .page.edit form:not(.search) input[type="checkbox"]
  {
    display: inline-block;

    margin:8px 8px 8px 0px;
    height:16px;

    position: relative;
    outline: none;
    border: 0;

    border-color: transparent;
    -webkit-appearance: none;
  }

  .page.edit form:not(.search) input[type="checkbox"]:checked
  {
    border-color:#F90;
  }

  .page.edit form input[type="checkbox"]::before
  {
    display:inline-block;
    content:"";
    width:16px;
    height:16px;

    border-width:1px;
    border-style:solid;
    border-color:#AAA;
    border-radius:3px;

    background-color:#FFF;
  }

  .page.edit form input[type="checkbox"]::after
  {
    -webkit-transition:0.2s ease-in-out;
    -moz-transition:0.2s ease-in-out;
    transition:0.2s ease-in-out;
    position:absolute;

    display:flex;
    display:-webkit-flex;
    font-family:"Font Awesome 5 Pro";

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    content:"\f00c";
    font-size:14px;

    top:0;
    width:16px;
    height:16px;

    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-radius:3px;

    clip:rect(0,0px,16px,0);
  }

  .page.edit form input[type="checkbox"]:checked::after
  {
    clip:rect(0,16px,16px,0);
  }

  .maincontent
  {
    outline:none;
    flex:1;
  }

  .maincontent .breadcrumbs,
  .main-top .breadcrumbs {
    font-size: 16px;
    margin: -14px 0 4px;
  }

  .maincontent .intro
  {
    font-size:20px;
    font-weight:400;

    color:#2e2e2e
  }

  .maincontent .intro *:not(i):not(a)
  {
    font-family:inherit !important;
    font-size:inherit !important;
    color:inherit !important;
    background-color:transparent !important;
  }

  .page #tts
  {
    vertical-align:middle;
    display:inline-block;

    position: relative;
    font-size: 24px;

    height:40px;
  }

  .page #tts:not(:first-child){
    border-width:0px 0px 0px 1px;
    border-style:solid;
    border-color:inherit;
  }

  /* Vertical-align hack/fix */

  .page #tts::before{
    display:inline-block;

    height: 100%;
    vertical-align: middle;

    content:"";
  }

  .page #tts i
  {
    vertical-align: middle;
    padding-left:4px;
  }

  .page #tts:not(:first-child)
  {
    padding-left:8px;
  }

  .page #tts span{
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;

    opacity: 0;
    pointer-events: none;
    display: inline-block;
    vertical-align: middle;

    margin-left: 8px;
    padding: 8px;
    border-radius: 4px;

    background: #333;
    content: "Audio Description";
    font-size: 18px;
    white-space: nowrap;
    box-shadow: 0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);

  }

  .page #tts:hover span, .page #tts:focus span, .page #tts.playing span
  {
    opacity: 1;
  }

  .page .content
  {
    font-weight:400;
    font-size:16px;
  }

  .page .content *:not(i) {
    font-family:inherit !important;
  }

  .page .content p,
  .page .content p span {
    font-size: 16px !important;
  }

  .page .content blockquote,
  .page .content blockquote p {
    font-size: 18px !important;
  }

  .page .maincontent .content:not(.mce-visualblocks) *:not(i) {
    background:transparent !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

  }

  .page .maincontent .content h2
  {
    font-size:24px;
    font-weight:500;
  }

  .page .maincontent .content h2 *
  {
    font-size:inherit !important;
  }

  .page .content ul
  {
    list-style: inside;
    list-style-position: outside;
    padding-left: 16px;
  }

  /* .page .content ul li::before
  {
    font-family:"Font Awesome 5 Pro";
    content:"\f111";

    font-size:4px;
    font-weight:600;

    padding-right:8px;
    padding-left:1.5em;
  } */

  .imageswitchold
  {
    overflow:hidden;
    position:relative;

    margin-top:55px;

    height:calc(100vw/3.18);
  }

  .imageswitch
  {
    position:absolute;

    -webkit-transition:1s;
    -moz-transition:1s;
    transition:1s;

    height:100%;
    width:100%;

    -webkit-transform:translateX(100%);
    -moz-transform:translateX(100%);
    transform:translateX(100%);

    background:url(http://www.ckdgalbraith.co.uk/sites/files/new_hall_stud_0.jpg) no-repeat center center;
    background-size: cover;
  }

  .imageswitch.active
  {
    -webkit-transform:translateX(0%);
    -moz-transform:translateX(0%);
    transform:translateX(0%);

    z-index:2;
  }

  .imageswitch.active.completed
  {
    -webkit-transform:translateX(-100%);
    -moz-transform:translateX(-100%);
    transform:translateX(-100%);

    z-index:1;
  }

  .imgholder
  {
    display:none;
  }

  .property {
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    align-items: stretch;
    overflow: hidden;
    max-height: auto;
    text-decoration: none;
    color: #333;
    border-width: 1px 0px 0px 0px;
    border-style: solid;
    border-color: #CACACA;
    padding: 20px 0;
  }


  input[type="checkbox"]:checked ~ #less_details {
    display:none;
  }
  input[type="checkbox"]:checked ~ #more_details {
    display:block;
  }
  input[type="checkbox"] ~ #less_details {
    display:block;
  }
  input[type="checkbox"] ~ #more_details {
    display:none;
  }
  input[type="checkbox"]:checked ~ #show_more:after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  input[type="checkbox"] ~ #show_more:after {
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: "Font Awesome 5 Pro";
    font-size: 25px;
    content: "\f322";
    display: block;
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    height: 20px;
  }

  input[type="checkbox"] ~ #show_more {
    display: block;
    color:#FF6900;
  }

  .property:hover
  {
    text-decoration:none;
  }

  .property:visited
  {
    color:#333;
  }

  .property .thumbnail {
    max-height: 200px;
    overflow:hidden;
  }

  .property .data
  {
    width:100%;
    box-sizing: border-box;
  }

  .property .data > h1
  {
    text-decoration: none;
    color:#FF6900;
  }

  .property:hover .data > h1
  {
    text-decoration:underline;
  }

  .property .data > h2 {
    margin-top: 8px;
    text-decoration: none;

    font-size:16px;
  }

  .property .data > h3 {
    font-size:16px;
  }

  .property .data > p {
    text-decoration: none;
    margin-right: 5px;
    font-size:16px;
  }

  .property .data > p:not(:first-of-type) {
    margin-top: 15px;
  }

  .property-page ~ .data
  {
    opacity:0;

    -webkit-animation:fadeIn 0.6s .6s forwards;
    -moz-animation:fadeIn 0.6s .6s forwards;
    animation:fadeIn 0.6s .6s forwards;

    position:relative;
    z-index:-1;
  }

  .property-page .data p
  {
    margin-bottom: 10px;
    margin-right: 5px;
    margin-top: 5px;
  }

  .property-page .data hr
  {
    display: block;
    border-top: 1px solid black;
    height: 1px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 0;
    margin: 1em 0;
  }

  .property-page .data hr.top
  {
    border-top: 1px solid #FF6900;
  }

  .properties.home .property
  {
    background:#FFF;

    border:0;

    margin-bottom:48px;

    box-shadow:none;

    max-height:none;
  }

  .properties.home .property .thumbnail
  {
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;
  }

  .property .thumbnail {
    position:relative;
    display:flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;
    min-width:300px;
    max-width:300px;
    background-color: #E8E8E8;
  }

  .property-image-container .image-overlay
  {
    pointer-events:none;
  }

  .property .thumbnail .status, .image-overlay .status
  {
    -webkit-transition:0.2s;
    -moz-transition:0.2s;
    transition:0.2s;

    -webkit-transform-origin:0% 0%;
    -moz-transform-origin:0% 0%;
    transform-origin:0% 0%;

    width:130px;
    font-size:14px;

    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);

    position:absolute;
    display:inline-block;

    top:-14px;
    right:-50px;

    margin:auto;


    padding:4px 16px;
    box-sizing:border-box;

    text-align:center;

    background-color:#FF6900;
    color:#FFF;

    z-index:1;

    text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
  }

  .property .thumbnail .status::before, .image-overlay .status::before
  {
    position:absolute;
    display:inline-block;
    content:"";

    top:0;
    left:calc(1px - 50px);

    width:50px;
    height:100%;

    background:#FF6900;
  }

  .property .thumbnail .status::after, .image-overlay .status::after
  {
    position:absolute;
    display:inline-block;
    content:"";

    top:0;
    right:calc(1px - 50px);

    width:50px;
    height:100%;

    background:#FF6900;
  }

  .property .thumbnail img
  {
    max-width:100%;
    height:auto;
  }

  .data {
    padding-left: 20px;
    background: inherit;
    line-height: 1.5em;
    z-index: 1;
  }

  .data h1
  {
    margin:0;
    font-size:24px;
    font-weight:500;
  }

  .data h2
  {
    margin:0;

    font-size:20px;
    font-weight:normal;
  }

  .data h3
  {
    font-size:18px;
    font-weight:500;
    line-height: 2.3em;
    margin:8px 0px;
  }

  .data p
  {
    margin:0;
  }

  .property-page
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;
  }

  .property-page .property-contact
  {
    display:flex;

    background:#FF6900;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    border-radius:4px;
    padding:16px;

    box-shadow:0px 0px 4px 1px rgba(0,0,0,.4);

    margin-bottom:32px;
  }

  .property-page .property-contact .info
  {
    display:flex;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    padding:0px 16px 0px 0px;
    box-sizing:border-box;
    width:110px;
    color:#FFF;

    border-width:0px 1px 0px 0px;
    border-style:solid;
  }

  .property-page .property-contact .info i
  {
    font-size:40px;
    padding-bottom:16px;
  }

  .property-page .property-contact .info span
  {
    line-height:14px;
  }

  .property-page .property-contact .details
  {
    overflow:hidden;
    padding:0px 16px;
  }

  .property-page .property-contact .details p
  {
    color:#FFF;
    max-width:100%;
  }

  .property-page .property-contact .details p:first-of-type
  {
    font-size:24px;
    font-weight:500;
  }

  .property-page .property-contact .details p:not(:first-of-type)
  {
    font-size:14px;
  }

  .property-page .property-contact .details p a, .property-page .property-contact .details p a:visited
  {
    display:inline-block;
    word-wrap:break-word;

    color:inherit;
    max-width:100%;
  }


  .split
  {
    position:relative;
    display:flex;

    width:100%;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .split.cta-block
  {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    align-items: stretch;
  }

  .split.top
  {
    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;
  }

  .split.stretch
  {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    box-align: stretch;
    align-items: stretch;

    height:100%;
  }

  .contact-form .split.stretch
  {
    height:auto;
  }

  .split.stretch > #map
  {
    height:auto;
    margin-top: 0px;
  }

  .split.stretch > form
  {
    margin-bottom:0;
  }

  .split > div:not([class]), .split > div.home.properties, .split > div.news
  {
    width:100%;
    flex:1;
    margin-top: 20px;
  }

  .split > div:not([class])> h1, .properties.home > h1, .split > div.news > h1
  {
    color:#000;

    box-shadow:none;

    background:transparent;

    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:#000;

    padding:8px;
    padding-bottom:12px;
    margin-bottom:12px;
    margin-top:0;

    font-size:20px;
    font-weight:normal;
  }

  .split > div.news .list-holder
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

  }

  .split > div.news .list-holder .list-wrap
  {
    display:block;

    width:100%;
    max-width:100%;

    flex:none;
  }

  .split > div.news .list-holder .list-wrap .list-item
  {
    height:auto;
    background:transparent;
  }

  .split > div.news .list-holder .list-wrap .list-item h2
  {
    color:#FF6900;
    margin-top: 20px;
    padding:0;
  }

  .split > div.news .list-holder .list-wrap .list-item p
  {
    padding:0px 0px 10px 0px;
  }

  .split > div.news .list-holder .list-wrap .list-item h3
  {
    padding:0px 0px 20px 0px;
  }


  div.search
  {
    box-sizing: border-box;
    flex-shrink: 0;
    width:300px;
  }

  div.search .padding
  {
    padding:10px !important;
  }

  div.page-search
  {
    background: #e7e7e7;
    border: 1px solid #e3e3e3;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  body:not(.page) form div.control-group, body:not(.page) form div.form-actions
  {
    float: none;
    display: inline-block;
    padding: 26px;
    padding-right:0;
  }

  body:not(.page) select#id_category, body:not(.page) input#id_keywords, body:not(.page) select#id_location, body:not(.page) select#id_service_id
  {
    box-sizing:border-box;

    padding: 8px;
    font-size: 16px;
    line-height: 1;
    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-radius: 4px;

    outline:none;

    -webkit-appearance: none;

    width:250px;
    height:33px;
  }

  body:not(.page) select#id_category:focus, body:not(.page) input#id_keywords:focus, body:not(.page) select#id_location:focus, body:not(.page) select#id_service_id:focus
  {
    border-color:#003a70;
  }

  body:not(.page) #submit-id-search
  {
    background: none repeat scroll 0 0 #ff6900;
    border: medium none;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    padding: 5px 27px;

    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }


  .page div.search
  {
    width:100%;
    display:flex;
    flex-grow:1;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    padding-bottom: 10px;
  }

  .page div.search .hsplit
  {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;

    flex-wrap: wrap;
  }

  .page div.search .hsplit.inline
  {
    display:inline-flex;
    margin-left:auto;
    flex:1;
  }

  .page div.search .hsplit > *
  {
    flex:1;

    min-width:30%;
    max-width:50%;
  }

  .page div.search label
  {
    line-height: 16px;
    margin-bottom: 5px;
  }

  .page div.search .hsplit > *:first-child,   .page div.search .hsplit > *:nth-child(2)
  {
    font-size: inherit;
    min-width:30%;
    max-width:33%;
    line-height: 16px;
  }

  div.search > h1
  {
    margin:0;

    font-size:16px;
    font-weight:normal;
    color:#FFF;

    padding:8px;

    background-color:#003a70;
  }

  .page div.search form
  {
    display:flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;

    flex-grow:1;

    margin:0;
  }

  body:not(.page) div.search form.search input[type="submit"]
  {
    margin-top:16px;
    margin-left:0;
  }

  div.search form > .padding.inline.notop:not(.radioswitch)
  {
    flex-grow:1;

    -webkit-box-pack: end;
    -moz-box-pack: end;
    box-pack: end;
    justify-content: flex-end;
  }

  .split > .properties
  {
    z-index:1;
    flex-grow:1;

    padding-left:32px;
  }

  .properties:not(.home) > h1
  {
    display:flex;
    margin:0;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    width:100%;

    font-weight:normal;
    font-size:18px;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;

    box-sizing:border-box;
  }

  .properties > h1 > b
  {
    display:block;
    width:100%;

    padding:8px;
    box-sizing:border-box;

    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:#CACACA;

    margin-bottom:24px;

    font-weight:normal;
    font-size:24px;
  }

  .properties > h1 span
  {
    display:flex;

    height:35px;

    flex-shrink:1;
  }

  .properties > h1 span.detail
  {
    padding:8px;
  }

  .properties > h1 span.detail b
  {
    padding:0px 8px;

    font-weight:normal;

    color:#FF6900;
  }

  .properties > h1 span a
  {
    display:inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    height:100%;

    border-radius:4px;
    border-width:1px;
    border-style:solid;
    border-color:#CACACA;

    color:#333;


    padding:4px 10px;
    box-sizing:border-box;
    text-decoration:none;

    margin-left:8px;
  }

  .properties > h1 span a i
  {
    padding-right:6px;
  }

  .properties > h1 span a:visited
  {
    color:#000;
  }

  .properties > h1 span a:hover
  {
    background-color:rgba(255,105,0,.2);
  }

  .properties > h1 span a.active
  {
    background-color:#FF6900;
    color:#FFF;
  }

  .property-page .split .data
  {
    opacity:0;

    -webkit-animation:fadeIn 0.6s forwards;
    -moz-animation:fadeIn 0.6s forwards;
    animation:fadeIn 0.6s forwards;

    margin-left: 60px;
    padding:0px 16px;
    min-height:400px;

    box-sizing:border-box;
    max-width: 50%;
  }


  .images:not(.overlay) {
    opacity: 0;
    -webkit-animation: fadeIn .6s .2s forwards;
    -moz-animation: fadeIn .6s .2s forwards;
    animation: fadeIn .6s .2s forwards;
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    background-color: #eee;
    max-height: 75vmin;
  }
  .property-image-container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    min-width: 50%;
  }
  .image-indicator {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display: flex;
    height: auto;
    min-width:100%;
    width:100%;
  }
  .image-indicator-wrap {
    display: flex;
    position:relative;
    overflow: hidden;
    white-space: nowrap;
    min-width:100%;
    width:100%;

    background-color: rgba(0,0,0,0.14);
  }
  .indicator-bar {
    height:80px;
    width: auto;
    flex-shrink:0;
  }
  .image-indicator .indicator-bar .property-image {
    max-height:100%;
    width:auto;
    padding-right: 1px;
  }
  .image-indicator-wrap .indicator-bar-arrows {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    pointer-events: none;
  }

  .indicator-bar-arrows .previous-button,
  .indicator-bar-arrows .next-button {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    opacity:1;

    padding: 8px;
    pointer-events: all;
  }

  .indicator-bar-arrows .previous-button.hide,
  .indicator-bar-arrows .next-button.hide
  {
    opacity:0;
    pointer-events:none;
  }

  .indicator-bar-arrows .previous-button
  {
    margin-right:auto;
  }
  .indicator-bar-arrows i {
    padding: 10px;

    border-radius: 10%;
    color: white;
    background-color: #FF6900;
    font-size: 23px;

    opacity: 1;

    text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.3),
    inset 0px 0px 20px rgba(0,0,0,0.1),
    0px 1px 1px rgba(0,0,0,0.4);
  }
  .property-image-container .property-video {
    display: block;
    padding-top: 40px;
    min-width: 98%;
    max-width: 100%;
    height: auto;
  }

  .property-image-container .property-video h3 {
    margin-top: 0;
  }

  .property-image-container .property-video video
  {
    min-width:100%;
  }

  a.reapit-appraisal
  {
    padding:8px;
    border-radius:4px;

    text-align:center;

    cursor:pointer;

    background:#FF6900;
    color:#FFF;
  }

  .actions a{
    display: inline;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;

    border-width: 1px;
    border-style: solid;
    border-color: 000;
    margin-right: 4px;
  }

  .actions a:hover{
    color: #FFF;
    background-color: #FF6900;
  }

  .actions a.mortgage-button i{
    padding-left: 8px;
  }

  .topbar::before{
    content:"";
    vertical-align:middle;
    height:100%;
  }

  .topbar .pullright
  {
    position:absolute;
    display:inline-block;
    right:0;
    top:0;

    height:34px;
  }

  .topbar .pullright::before
  {
    content: "";
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
  }

  .topbar .pullright span
  {
    vertical-align:middle;
    padding-right:8px;
  }

  .topbar .pullright .sharethis-inline-share-buttons
  {
    display:inline-block !important;
    vertical-align: middle;
  }

  .topbar .pullright .sharethis-inline-share-buttons>div:nth-child(4)
  {
    margin-right:0 !important;
  }

  /*a.backtosection, a.backtosection:visited*/
  /*{*/
  /*  display:inline-block;*/
  /*  vertical-align:middle;*/

  /*  padding:8px;*/
  /*  padding-left:0;*/
  /*  border-radius:4px;*/
  /*}*/

  /*a.backtosection::before*/
  /*{*/
  /*  font-family:"Font Awesome 5 Pro";*/
  /*  content:"\f177";*/

  /*  padding-right:6px;*/

  /*  font-weight:bold;*/
  /*}*/


  .padding {
    position:relative;
    padding:20px !important;
    box-sizing: border-box;
  }
  .padding.inline {
    display:inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;
  }

  .padding.novert {
    padding:0px 8px !important;
  }

  .padding.nohor {
    padding:8px 0px !important;
  }

  .padding.notop {
    padding-top:0 !important;
  }

  .padding.nobot {
    padding-bottom:0 !important;
  }

  .padding.noleft {
    padding-left:0 !important;
  }

  .padding.noright {
    padding-right:0 !important;
  }

  .padding.fill
  {
    max-width:none !important;
    min-width:none;
  }

  .padding.dark{
    background: #efefef;
  }

  .padding.warn{
    background: rgba(255,200,200,0.6);
  }

  .page div.search .padding.fill .hsplit input[type="text"]
  {
    max-width:none !important;
    min-width:none;

    margin-right:32px;
  }


  .images .image-overlay {
    pointer-events:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }
  .images .image-overlay .prev, .images .image-overlay .next {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;
  }
  .images .image-overlay .prev {
    border-radius:0px 4px 4px 0px;
    margin-right:auto;
    opacity: 0.7;

    text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.3),
    inset 0px 0px 20px rgba(0,0,0,0.1),
    0px 1px 1px rgba(0,0,0,0.4);
  }
  .images .image-overlay .next {
    border-radius:4px 0px 0px 4px;
    opacity: 0.7;

    text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.3),
    inset 0px 0px 20px rgba(0,0,0,0.1),
    0px 1px 1px rgba(0,0,0,0.4);
  }
  .images .image-overlay .next:hover {
    opacity: 1;

    -moz-transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .images .image-overlay .prev:hover {
    opacity: 1;

    -moz-transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .images .image-overlay .next i {
    font-weight: 500;
  }
  .images .image-overlay .prev i {
    font-weight: 500;
  }
  .images .image-overlay .prev.hide, .images .image-overlay .next.hide {
    opacity:0;
    pointer-events: none;
  }
  .images .image-overlay a, .images .image-overlay a:visited {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    padding:8px;
    width:36px;
    box-sizing:border-box;

    pointer-events:all;

    outline:0;

    background-color:rgba(0,0,0,.6);

    font-size:32px;

    text-decoration:none;

    color:#FFF;

    text-shadow:rgba(0, 0, 0, .4) 0px 1px 0px
  }
  .images .image-overlay a.max {
    position:absolute;
    right:0;
    top:0;
    height:36px;

    opacity: 0.7;
    font-size:32px;
  }
  .images .image-overlay a.max:hover {
    opacity: 1;

    -moz-transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .images .image-overlay a i {
    font-weight:100;
  }

  .images .holder {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display:inline-flex;
    flex-shrink:0;
    width:100%;
    min-height:100%;
    max-height:400px;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    overflow:hidden;

    pointer-events:none;
  }

  .images .holder.moving
  {
    -webkit-transition:0s;
    -moz-transition:0s;
    transition:0s;
  }

  .images .holder img {
    height: 100%;
    pointer-events:all;
  }

  .property-page .data {
    width: 100%;
  }
  .property-page .data h1 {
    margin:0;
    line-height: 250%;
  }
  .property-page .data h2 {
    margin:0;
    font-weight:normal;
    font-size:16px;
  }
  .property-page .data h3 {
    margin:0;
  }
  .property-page .data #email {
    text-align: center;
  }
  .property-page .data ul.nicelist {
    display:grid;
    grid-template-columns: 100%;

    margin: 0;
    margin-bottom: 20px;
    padding: 0;
  }

  .property-page .data ul.nicelist li {
    position: relative;
    list-style: none;

    padding:4px;
  }

  .property-page .data ul.nicelist li::after{
    display: inline-block;
    position: absolute;
    content: "";
    height: 100%;
    vertical-align: middle;
  }

  .property-page .data ul.nicelist li::before{
    display: inline;
  	content:"•";
    padding-right: 4px;
    vertical-align: middle;
  }

  .property-page .data ul.nicelist li h4 {
    display:inline;
    vertical-align: middle;

    font-weight:normal;
    font-size:16px;
    margin:0;

    max-width: 100%;

    overflow:hidden;
    word-wrap: break-word;

    color: #666;
  }

  .pagination {
    padding:8px 0px;
    margin-bottom:20px;
  }
  .pagination .step-links > a {
    color:#666;
  }
  .pagination .step-links .pages {
    padding:0px 8px;
  }
  .pagination .step-links .pages > a {
    color:#999;
  }
  .pagination .step-links .pages b {
    font-weight:500;
  }
  .pagination .step-links a:hover {
    color:#FF6900;
    text-decoration:none;
  }

  .overlay
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    position:fixed;
    display:flex;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-color:rgba(0,0,0,.8);

    z-index:10000;

    opacity:0;
    pointer-events:none;
    visibility:hidden;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;
  }

  .overlay.show
  {
    opacity:1;
    pointer-events:all;
    visibility:visible;
  }

  .overlay #image-search
  {
    display: block;
    height: 30px;
    margin-bottom: 10px;
  }

  .overlay #image-search input[type="text"] {
    height: 100%;
    vertical-align: middle;

    box-sizing: border-box;

    border-radius:4px 0px 0px 4px;

    margin: 0;
  }

  .overlay #image-search input[type="submit"] {
    font-family: "Font Awesome 5 Pro";

    display: inline-block !important;
    height: 100%;
    vertical-align: middle;

    padding: 8px !important;
    box-sizing: border-box;

    border-radius:0px 4px 4px 0px;
    border: 1px #CACACA solid !important;
    color: #333 !important;
    background-color: #FAFAFA !important;

    outline: none;
    cursor: pointer;
  }

  .overlay #image-search input[type="submit"]:active {
    border-color: #666 !important;
    background-color: #EAEAEA !important;
  }

  .overlay #image-search .cta-image-upload {
    display: inline-block;
    height: 100%;
    vertical-align: middle;

    background-color: #FAFAFA;
    color: #333;

    padding: 0px 8px;
    box-sizing: border-box;
    line-height: 30px;

    border: 1px #CACACA solid;
    border-radius: 4px;
    cursor: pointer;
  }

  .overlay #image-search .cta-image-upload i {
    padding-right: 4px;
  }

  .modal-editor form {
    margin-bottom: 0;
  }

  .modal-editor form .control-group {
    margin-bottom: 16px;
  }

  .modal-editor input[type="text"],
  .modal-editor textarea
  {
    border-radius:4px;
    border-width:1px;
    border-style:solid;
    border-color:#CACACA;

    padding:4px;

    margin-bottom:4px;

    outline:none;
    resize:none;
  }

  .modal-editor input[type="text"]:focus,
  .modal-editor textarea:focus
  {
    border-color:#666;
  }

  .block-button
  {
    margin-bottom:16px;
  }

  .block-button i
  {
    padding-left:8px;
  }

  .modal-editor .form-actions {
    flex-direction: row;
  }

  .modal-editor .form-actions {
    flex-direction: row;
  }

  .modal-editor .form-actions > input,
  .block-button,
  .modal-editor input.btn {
    display:block;
    color:#FFF;
    background-color:#003a70;
    border:0;
    padding:16px;
    width: 100%;
    cursor: pointer;
  }

  .modal-editor input.btn.insert,
  .modal-editor input.btn.delete,
  .modal-editor input.btn.shift_left,
  .modal-editor input.btn.shift_right {
    width: unset;
  }

  .modal-editor input.btn.insert {
    background-color: #4A7;
  }

  .modal-editor input.btn.delete {
    background-color: #F33;
  }

  .modal-editor input.btn.cancel {
    background-color: #999;
    width: 30%;
  }

  #carousel-edit .slides {
    flex-direction: row;
    padding-top: 16px;
    align-items: center;
  }

  #carousel-edit .slide {
    flex-grow: 1;
    background-color: white;
    margin: 0 8px;
    min-height: 300px;
    overflow-y: scroll;
    overflow-block: auto;
    max-height: 60vh;
    border-radius: 6px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    padding-right: 14px;
  }

  #carousel-edit .img-placeholder {
    margin: 0;
  }

  .overflow-padding-fix {
    padding: 16px;
  }

  #carousel-edit .overflow-padding-fix {
    width: 808px;
  }

  #carousel-edit .control-group {
    margin-bottom: 12px;
  }

  .modal-editor.basic #div_id_image,
  .modal-editor.basic #div_id_text {
    display:none;
  }

  .modal-editor.image #div_id_title,
  .modal-editor.image #div_id_text,
  .modal-editor.image #div_id_url {
    display:none;
  }

  .img-holder.video {
    display: block;
  }

  .img-holder.video .iframe-wrap,
  .fix-sixteen-nine {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Hack to force 16:9 aspect ratio. See https://blog.theodo.com/2018/01/responsive-iframes-css-trick/ */
    background-color: black;
  }

  .img-holder.video .iframe-wrap iframe,
  .fix-sixteen-nine iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .edit .img-holder.video .iframe-wrap iframe {
    pointer-events: none;
  }

  .page.edit .overlay .holder {
    background-color:#EAEAEA;
    border-radius:4px;
  }

  .overlay .holder h1
  {
    font-weight:normal;

    font-size:16px;

    display:flex;
    position:relative;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    background-color:#CACACA;

    margin:0;
    padding:8px;
  }

  .overlay .holder h1 i
  {
    position:absolute;

    right:0;
    top:0;
    padding:8px;
    padding-top:9px;

    cursor:pointer;

    height:100%;
  }

  #cta-edit .padding {
    max-height: 90vh;
    overflow-y: scroll;
  }

  .overlay .holder form:not([enctype]) > div > label[for='id_image']
  {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    background:#CACACA;

    min-height:200px;
  }

  .overlay .holder form:not([enctype]) > div > label[for='id_image'] i
  {
    font-size:64px;

    padding:8px;
  }

  .overlay .holder form:not([enctype]) > div > label[for='id_image'] img
  {
    max-width:100%;
  }

  .overlay .holder form:not([enctype]) > div > label[for='id_image'] + .controls input
  {
    display:none;
  }

  .images.overlay {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    position:fixed;
    display:block;
    z-index:10000;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    top:0;
    left:0;
    width:100%;
    height:100%;

    background-color:rgba(50,50,50,.8);
  }

  .overlay.show {
    opacity:1;
    visibility:visible;
    pointer-events:all;
  }

  .images.overlay .image-overlay a
  {
    background-color:transparent;
    box-shadow:none;
  }

  .images.overlay .display
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    height:100%;

    position: relative;
    display: flex;
    width: 100%;
  }

  .images.overlay .display .holder
  {
    max-height:100%;
    height:100%;
  }

  .images.overlay .display .holder img {
    background-color: #FFF;
    height: auto;
    max-width: 80%;
    max-height: 98%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 1px 1px 0 rgba(0,0,0,.4);
  }

  .images.overlay .image-overlay a
  {
    color:#FFF;
  }

  .images.overlay .image-overlay a.close
  {
    position:absolute;
    top:0;
    right:0;
    height:36px;
  }

  .toolbar
  {
    display:flex;

    flex-wrap:wrap;

    opacity:0;

    -webkit-animation:slidefadeIn 0.6s .4s forwards;
    -moz-animation:slidefadeIn 0.6s .4s forwards;
    animation:slidefadeIn 0.6s .4s forwards;

    width:100%;

    box-sizing:border-box;

    z-index:1;

    padding-bottom:16px;
  }

  .toolbar > a
  {
    display:inline-flex;

    cursor:pointer;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    padding:0px 8px;
    box-sizing:border-box;
    flex-grow:1;

    max-width:33.33%;
  }

  .toolbar > a:hover
  {
    text-decoration:none;
  }

  .toolbar > a:hover > div:last-of-type
  {
    text-decoration:underline;
  }

  .toolbar i
  {
    font-size:57px;

    color:#003a70;

    font-weight:100;

    padding:16px;
  }

  .toolbar .svg-holder
  {
    padding:16px;
  }

  .toolbar .floorplan
  {
    content:"";

    background-color:#003a70;

    mask:url(/static/common/images/floorplan.svg?794fb6fa4f38) no-repeat center 0px;
    mask-size:100%;

    -webkit-mask:url(/static/common/images/floorplan.svg?794fb6fa4f38) no-repeat center 0px;
    -webkit-mask-size:100%;

    height:51px;
    width:57px;
    box-sizing:border-box;
  }

  #map {
    opacity:0;
    -webkit-animation:fadeIn 0.6s .8s forwards;
    -moz-animation:fadeIn 0.6s .8s forwards;
    animation:fadeIn 0.6s .8s forwards;
    height:400px;
    z-index:0;
    background-color: #E8E8E8;
  }

  .properties #map
  {
    height:600px;
  }

  .maincontent > div
  {
    display:inline-block;
    min-width:100%;
    max-width:100%;
  }

  .sidebar
  {
    flex:1;
    max-width:25%;
  }

  .content table
  {
    padding-top: 10px;
  }
  .content table td {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .content table td:nth-child(3) {
    padding-right: 0px;
  }

  .content.edit, .mce-edit, .intro.edit
  {
    border-width:1px;
    border-style:solid;
    border-color:rgba(0,0,0,0.4);

    overflow:hidden;

    outline:0;
  }

  .content.edit:focus, .mce-edit-focus, .intro.edit:focus
  {
    border-color:#FF6900;
  }

  .hideme
  {
    display:none;
  }

  /* Hide stuff if google maps goes fullscreen */
  body.fullscreen .search, body.fullscreen .toolbar, body.fullscreen .admin-toolbar,
  body.fullscreen .admintog, body.fullscreen .property-image-container
  {
    display:none;
  }

  body.fullscreen .subnav
  {
    background:transparent;
  }

  /* form.search input[type=range] {
    position:relative;
    margin:0;
    padding:0;

    -webkit-appearance:none;
    outline:none;

    background-color:transparent;

    min-width:100%;
    max-width:100%;
    height:34px;
  }

  form.search input[type=range][data-type=currency] + label::before {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display:flex;
    content:attr(data-verbose) " £" attr(data-value);
    white-space:pre;
    color:#AAA;

    font-size:12px;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    position:absolute;
    pointer-events:none;
    top:0;
    left:0;
    right:0;
    height:calc(100% - 20px);

    margin:auto;
    text-align:center;

    z-index:1;
  }

  form.search input[type=range][data-type=currency] + label.max::before
  {
    content:"No Maximum Price";
  }

  form.search input[type=range][data-type=currency]:active + label::before {
    color:#333;
  }

  form.search input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    position:relative;

    top:0px;
    height:27px;
    width:20px;

    background-color:#003a70;

    border:0;
    outline:none;

    z-index:2;
  }

  form.search input[type=range]::-moz-range-thumb
  {
    -webkit-appearance: none;
    position:relative;

    top:0;
    height:34px;
    width:20px;

    border-radius:0;

    background-color:#003a70;

    border:0;
    outline:none;

    z-index:2;
  }

  form.search input[type=range]::-ms-thumb
  {
    -webkit-appearance: none;
    position:relative;

    top:0;
    height:27px;
    width:20px;

    background-color:#003a70;

    border:0;
    outline:none;

    z-index:2;
  }

  form.search input[type=range]:active::-webkit-slider-thumb {
    background-color:rgba(255,105,0,.4);
  }

  form.search input[type="range"]:active::-moz-range-thumb
  {
    background-color:rgba(255,105,0,.4);
  }

  form.search input[type=range]:active::-ms-thumb
  {
    background-color:rgba(255,105,0,.4);
  }

  input[type=range]::-webkit-slider-runnable-track
  {
    height:29px;
    background:#FFF;

    border-width:1px;
    border-style:solid;
    border-color:#CACACA;
  }

  input[type=range]::-moz-range-track
  {
    height:29px;
    background:#FFF;

    border-width:1px;
    border-style:solid;
    border-color:#CACACA;
  }

  input[type=range]::-ms-track
  {
    height:29px;
    background:#FFF;

    border-width:1px;
    border-style:solid;
    border-color:#CACACA;
  }

  input[type=range]::-ms-fill-upper
  {
    background:transparent;
  }

  input[type=range]::-ms-fill-lower
  {
    background:transparent;
  } */

  form.search select
  {
    height:29px;

    padding:0px 8px;
    box-sizing:border-box;
    background-color:#FFF;

    border-color:#CACACA;
    border-style:solid;
    border-width:1px;
    outline:none;

    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
  }

  form.search select:focus
  {
    border-color:#003a70;
  }

  form .dropdown
  {
    position:relative;
  }

  form .dropdown select
  {
    font-size: inherit;
    min-width:100%;
    max-width:100%;
  }

  form .dropdown:after
  {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    position:absolute;
    content:"\f078";
    font-family:"Font Awesome 5 Pro";

    top:0;
    right:0;
    height:100%;

    background:#003a70;
    color:#FFF;

    padding:8px;
    box-sizing:border-box;
    pointer-events:none;
  }

  #map .marker
  {
    text-decoration:none;
  }

  #map .marker img
  {
    max-width:100%;
  }

  #map .marker h1
  {
    font-size:16px;

    margin:0;
  }

  #map .marker h2
  {
    font-size:16px;

    margin-top:0;

    color:#000;

    font-weight:normal;
  }

  #map .marker:hover h1
  {
    text-decoration:underline;
  }

  .sidebar {
    padding-left: 24px;
    box-sizing: border-box;
    margin-top: 56px;
    min-width: 285px;
    max-width: 300px;
  }

  .sidebar h2 {
    color: #FFF;
    background-color: #003a70;
    font-size: 26px;
    font-weight: normal;
    padding: 10px;
    margin: 0;
    text-align: center;
  }

  .sidebar h2:not(:first-of-type), .sidebar h2:only-of-type {
    background-color: #ff6900;
  }

  .sidebar > ul {
    list-style: none;
    background-color: #e9e9e9;
    margin: 0 0 15px 0;
    padding: 32px 0px;
  }

  .sidebar > ul li
  {
    padding:0px 32px;
  }

  .sidebar > ul.related li, .sidebar > ul.useful li, .sidebar > ul.download li
  {
    display:flex;

    font-size:16px;
    line-height:30px;
  }

  .sidebar > ul.related li::before, .sidebar > ul.contact li::before, .sidebar > ul.useful li::before, .sidebar > ul.download li::before
  {
    display:inline-block;
    content:"\f0c8";

    font-family:"Font Awesome 5 Pro";
    font-weight:bold;

    color:#FF6900;
    padding-right:8px;
  }

  .sidebar > ul.contact li::before
  {
    content:"\f0e0";
    font-weight:normal;
  }

  .sidebar > ul.useful li::before
  {
    content:"\f0c1"
  }

  .sidebar > ul.download li::before
  {
    content:"\f019";
    font-weight:normal;
  }

  .sidebar > ul.download li .remove
  {
    display:inline-block;

    color:#FFF;
    background-color:#F33;
    cursor:pointer;

    padding:8px;
    box-sizing: border-box;

    height:37px;
    min-width:37px;

    margin-left:8px;

    text-align:center;
  }

  .sidebar > ul.download li .remove i
  {
    vertical-align:top;
    font-size:20px;
  }

  .sidebar > ul.download li.upload
  {
    font-weight:500;
  }

  .sidebar > ul.download li.upload::before
  {
    content:"\f382";
  }

  .sidebar > ul li.active
  {
    background-color:#CACACA;
  }

  .sidebar > ul > li.ui-sortable-handle{
    position:relative;
    cursor:move;
  }

  .sidebar > ul > li.ui-sortable-handle::before
  {
    left:0;
    top:0;
    padding-left:12px;
    padding-top:4px;
    position:absolute;
    display:inline-block;

    font-family:"Font Awesome 5 Pro";
    content:"\f0c9";
  }

  .sidebar > ul li.moving
  {
    box-shadow:0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);
    background:#EEE;

    border-width:1px;
    border-style:solid;
    border-color:#FF6900;
  }

  .sidebar > ul li.moving a
  {
    border:0 !important;
  }

  .sidebar > ul ul
  {
    list-style:none;
    padding-left:0;
  }

  .sidebar ul:first-of-type:not(:only-of-type):not([class]) li.active ul a,
  .sidebar ul:first-of-type:not(:only-of-type).menu li.active ul a
  {
    display:inline-block;
  }

  .sidebar > ul:first-of-type:not(:only-of-type):not([class]) ul a,
  .sidebar > ul:first-of-type:not(:only-of-type).menu ul a
  {
    display:none;
    padding:6px 16px;

    box-sizing:border-box;

    color:#003a70;
  }

  .sidebar > ul:first-of-type:not(:only-of-type):not([class]) ul li.active a,
  .sidebar > ul:first-of-type:not(:only-of-type).menuul li.active a
  {
    display:inline-block;
    color:#666;
  }

  .sidebar > ul:first-of-type:not(:only-of-type):not([class]) a,
  .sidebar > ul:first-of-type:not(:only-of-type).menu a
  {
    display:inline-block;

    color:#231f20;

    text-decoration:none;

    padding:4px 6px;
    box-sizing:border-box;

    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:#CACACA;

    width:100%;
  }

  .sidebar > ul a
  {
    display:inline-block;

    color:#231f20;

    text-decoration:none;
  }

  .sidebar ul a:hover, .sidebar > ul:first-of-type a:hover
  {
    text-decoration:underline;
    text-decoration-color:#231f20;
  }

  .sidebar ul a li
  {
    color:inherit;
  }

  .sidebar #header-box {
    color: #FFF;
    background-color:#ff6900;

    font-size:24px;
    font-weight:normal;

    padding:10px;
    margin-bottom:0;

    text-align:center;
  }
  .sidebar #body-box {
    min-height: 100px;
    height: auto;
    background-color: #e7e7e7;
  }
  .sidebar #body-box i {
    color: rgba(35,31,32,1);
    font-size: 20px;
    font-weight: 900;

    text-align:left;
    margin-left: 20px;
    margin-top: 30px;
  }
  .sidebar #body-box a {
    color: rgba(35,31,32,1);
    font-size: 14px;
    font-weight: 500;

    margin-left: 10px;
    margin-top: 10px;
    cursor: pointer;
  }


  .office-twitter {
    background-color:#e9e9e9;
    padding: 10px;
    word-wrap:break-word;
    font-size: 14px;
    color: black;
  }

  .office-twitter a
  {
    color: black;
  }

  .office-twitter a i
  {
    color: #ff6900;
  }

  .footer a.twitter, .footer a.twitter:visited
  {
    color:#000;

    text-decoration:none;

    border-radius:4px;

    margin-bottom:8px;

    padding:8px;
    box-sizing:border-box;

    width:100%;
    word-wrap: break-word;
  }

  .footer a.twitter b, .footer a.twitter:visited b
  {
    color:#FF6900;

    font-weight:normal;
  }

  .footer a.twitter i, .footer a.twitter:visited i
  {
    color:#FF6900;
  }

  .footer a.twitter:hover
  {
    background-color:#CACACA;
  }

  /*#TODO Stephen fix my terrible CSS*/
  .maincontent .tile {
    display: inline-block;
    position: relative;
    outline: 0;
    border: 0;
    text-decoration: none;
    padding: 0.55vw;
    max-width: 22%;
    min-width:0;
  }

  .page.edit .folder
  {
    border-width:1px;
    border-style:solid;
    border-color:#FF6900;

    overflow:hidden;

    padding:8px;
    box-sizing:border-box;
  }

  .page.edit .folder.active
  {
    display:inline-block;
    padding:8px;

    box-shadow:0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);
    background:#EEE;

    width:808px !important;
    min-width:0px !important;
  }

  .page.edit .fake-folder
  {
    opacity:0.6;
  }

  .folder.ui-sortable-handle .header
  {
    cursor:move;
  }

  .folder.ui-sortable-handle::before
  {
    display:block;
    content:"\f047";

    background-color:#EEE;

    font-family:"Font Awesome 5 Pro";

    padding:8px;
    margin-bottom:8px;

    text-align:right;

    cursor:move;
  }


  .folder .header,
  .fake-folder .header
  {
    border-style:solid;
    border-color:#DADADA;
    border-width:0px 0px 1px 0px;

    margin-bottom:8px;
  }

  .folder .header h1,
  .fake-folder .header h1
  {
    margin:0;
    font-size:22px;
  }

  .folder .header h2,
  .fake-folder .header h2
  {
    font-weight:normal;
    margin:0;
    margin-bottom:4px;
  }

  .folder .header input:first-child
  {
    font-weight:500;
    font-size:22px;
  }

  .folder .header input:last-child
  {
    font-size:16px;
  }

  .folder .header input
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display:block;
    width:100%;

    padding:8px;
    box-sizing:border-box;
    font-family: "Lato", "Trebuchet MS", sans-serif;

    background:transparent;

    border-width:1px;
    border-style:solid;
    border-color:transparent;
    border-radius:4px;

    margin-bottom:4px;
    outline:none;
  }

  .folder .header input:hover
  {
    border-color:rgba(0,0,0,.2);
  }


  .folder .header input:focus
  {
    border-color:#FF6900;

    padding:8px 16px;
  }

  input.foldertog
  {
    display:none;
  }

  input.foldertog ~ label
  {
    display:block;

    text-align:center;

    background-color:#FF6900;
    color:#FFF;
    font-weight:bold;

    box-shadow:0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);


    padding:8px;
    border:0;
    border-radius:4px;
  }

  input.foldertog ~ label:active
  {
    box-shadow:inset 0 1px 2px 0 rgba(50,50,50,.2),inset 0 1px 3px 1px rgba(50,50,50,.2);
  }

  input.foldertog ~ label::before
  {
    display:inline-block;
    content:"Show " attr(data-more) " More";
  }

  input.foldertog:checked ~ label::before
  {
    content:"Show Less"
  }

  .maincontent.publications .folder {
    margin-bottom: 56px;
  }

  .maincontent.publications .folder .publications-wrap
  {
    font-size:0;

    padding:0;
  }

  .maincontent.publications .folder.empty .publications-wrap
  {
    padding-bottom:32px;
  }

  .publications-wrap .publication:not(.simple):nth-child(n+9)
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    -webkit-transform:scale(0.6);
    -moz-transform:scale(0.6);
    transform:scale(0.6);

    display:none;
    opacity:0;
  }

  input.foldertog:checked ~ .publications-wrap .publication:not(.simple):nth-child(n+9)
  {
    display:inline-block;
    opacity:1;

    -webkit-animation:popIn 0.4s forwards cubic-bezier(1.000,-0.000,0.000,1.200);
    -moz-animation:popIn 0.4s forwards cubic-bezier(1.000,-0.000,0.000,1.200);
    animation:popIn 0.4s forwards cubic-bezier(1.000,-0.000,0.000,1.200);

    overflow:hidden;
  }

  .page.edit .folder.active .publication img
  {
    display:none;
  }

  .publication {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 8px;
    box-sizing: border-box;
    font-size: 16px;
  }

  .publication a
  {
    display:inline-block;
  }

  .publication img
  {
    display:inline-block;
    width:100%;
    height: auto;

    box-shadow:0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);
  }

  .publication.simple
  {
    display:block;
    position:relative;

    height:80px;
    width:100%;

    padding:8px;
    margin-bottom:8px;

    background-color:#FAFAFA;

    box-shadow: 0 1px 2px 0 rgba(50,50,50,.2), 0 1px 3px 1px rgba(50,50,50,.2);
  }

  .publication.simple::after
  {
    padding:26px;
    position:absolute;

    box-sizing:border-box;

    font-family:"Font Awesome 5 Pro";
    font-size:32px;

    vertical-align:bottom;

    content:"\f0c9";


    height:100%;
    top:0;
    right:0;

    color:#AAA;

    cursor:move;
  }

  .publication.simple a
  {
    display:block;
    height:100%;
  }

  .publication.simple span::before
  {
    content: "";
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
  }

  .publication.simple span b
  {
    display:inline-block;

    vertical-align:middle;

    padding-left:16px;
  }

  .publication.simple img
  {
    width:auto;
    max-height:100%;
    height:100%;

    box-shadow:none;

    border-radius:4px;

    vertical-align:top;
  }

  .tabulator
  {
    display:flex;

    flex-wrap:wrap;

    background-color:#003a70;

    border-radius:4px 4px 0px 0px;

    margin-bottom:30px;
  }

  .tabulator .tab-buttons
  {
    background-color:#003a70;

    padding:16px 16px 0px 16px;

    border-radius:8px 8px 0px 0px;
  }

  .tabulator h1
  {
    width:100%;

    color:#FFF;

    font-weight:500;
    font-size:20px;

    margin-top:0;

    padding:16px;
  }

  .tabulator .tabs
  {
    width:100%;
  }

  .tabulator input[type="radio"]
  {
    display:none;
  }

  .tabulator input[type="radio"] + label
  {
    display:inline-block;

    background-color:#c4c4c4;

    padding:8px 16px;

    border-radius:4px 4px 0px 0px;

    margin-right:8px;

    font-size:16px;
  }

  .tabulator input[type="radio"] + label:first-of-type
  {
    margin-left:16px;
  }

  .tabulator input[type="radio"]:checked + label
  {
    background-color:#E8E8E8;
  }

  /* Javascriptless property search tabbing, use css trickery to only show relevant search */
  /* .tabulator has the nth of type radio checked? find .tab of same index under ".tabs .tab-wrap" and display flex */
  .tabulator input[type="radio"]:nth-of-type(1):checked ~ .tabs .tab-wrap .tab:nth-of-type(1)
  {
    display:flex;
    pointer-events:all;

    opacity:1;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }

  .tabulator input[type="radio"]:nth-of-type(2):checked ~ .tabs .tab-wrap .tab:nth-of-type(2)
  {
    display:flex;
    pointer-events:all;

    opacity:1;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }
  .tabulator input[type="radio"]:nth-of-type(3):checked ~ .tabs .tab-wrap .tab:nth-of-type(3)
  {
    display:flex;
    pointer-events:all;

    opacity:1;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }
  .tabulator input[type="radio"]:nth-of-type(4):checked ~ .tabs .tab-wrap .tab:nth-of-type(4)
  {
    display:flex;
    pointer-events:all;

    opacity:1;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }
  .tabulator input[type="radio"]:nth-of-type(5):checked ~ .tabs .tab-wrap .tab:nth-of-type(5)
  {
    display:flex;
    pointer-events:all;

    opacity:1;

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    transform:scale(1);
  }

  .tabulator .tabs
  {
    display:flex;
  }

  .tabulator .tabs .tab-wrap
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display:flex;
    position:relative;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;

    background-color:#E8E8E8;

    width:100%;
  }

  .tabulator .tabs .tab-wrap .tab
  {
    width:100%;
    flex-shrink:0;

    -webkit-transform:scale(0.9);
    -moz-transform:scale(0.9);
    transform:scale(0.9);

    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    display:none;
    opacity:0;

    pointer-events:none;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  /*.tabulator .tabs .tab-wrap .tab h1
  {
    margin:0;
    padding:8px;

    border-radius:8px 8px 0px 0px;

    background-color:#003a70;
    color:#FFF;
  }*/
  #onelan {
    box-sizing: border-box;
    padding: 20px;
  }
  #onelan .logo {
    padding-bottom: 20px;
      width: 173px;
  }
  #onelan .photo-frame
  {
    width: 450px;
    height: 300px;
    background-color:lightgrey;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
  }
  #onelan .photo-frame img
  {
    position: absolute;
    top: -9999px;
    left: -9999px;
    right: -9999px;
    bottom: -9999px;
    margin: auto;
    width: 100%;
  }
  #onelan .property-name
  {
    color: #FF6900;
    font-family: "Lato", "Trebuchet MS", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
  }
  #onelan .property-address, #onelan .price-type, #onelan .price
  {
    font-family: "Lato", "Trebuchet MS", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
  }
  #onelan .price
  {
    font-weight: 700;
  }
  #onelan .description-wrapper
  {
    border-top: 1px solid #FF6900;
  }
  #onelan .description
  {
    margin-top: 10px;
  }
  #onelan .description p
  {
    font-family: "Lato", "Trebuchet MS", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 27px;
  }
  #main-content
  {
      min-height: 200px;
  }
  .careers.page.landing .maincontent .pagecta .cta {
    min-width: inherit;
    min-height: inherit;
  }
  .careers.page.landing .maincontent .pagecta .cta img {
    width: inherit; /* #TODO temporary scaling fix */
    height: inherit; /* #TODO temporary scaling fix */
  }
}

/*  */
/* Things that should only happen when screen width > 800px */
/*  */

@media screen and (min-width:800px)
{
  .nav
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;
  }

  .subnav div a:hover, .subnav span a:hover
  {
    background-color:#ff6900;
  }

  .subnav div:hover ul, .subnav span:hover ul
  {
    display:inline-block;

    z-index:1000;
  }

  .subnav div:hover ul li, .subnav span:hover ul li
  {
    font-size:18px;
    padding:8px 10px;

    background-color:#003a70;
    color:#FFF;

    white-space:nowrap;
  }

  .subnav div:hover ul li a, .subnav span:hover ul li a
  {
    color:#FFF;
  }

  .subnav div:hover ul li:hover, .subnav span:hover ul li:hover
  {
    background-color:#7db8ce;
  }
}

/*  */
/* Things that should only happen when screen width < 1140px  */
/*  */

@media screen and (max-width:1140px)
{
  html {
    scroll-padding-top: 3rem;
  }
  body.lockscroll
  {
    overflow:hidden;
  }

  .subnav-holder
  {
    position:fixed;

    top:44px;
    left:0;
    width:100%;
    height:calc(100% - 44px);

    z-index:1001;

    overflow:auto;

    pointer-events:none;
  }

  .subnav div h2, .subnav span h2
  {
    padding:10px 8px;
  }

  .subnav *
  {
    opacity:0;
    pointer-events:none;
  }

  .list-holder .list-wrap
  {
    max-width:100%;
  }

  .list-holder .list-wrap .list-item:not(.small)
  {
    height:auto;
    flex-grow:1;
  }

  .list-holder .list-wrap h3
  {
    padding:0px 20px 20px 20px;
  }

  .list-holder .list-wrap .list-item-people
  {
    display:inline-block;
    background-color:#e7e7e7;
    height:auto;
    width:100%;
  }


  .admin-toolbar
  {
    display:none;
  }

  .admintog
  {
    display:none;
  }

  .navtog
  {
    display:inline-flex;
  }

  body.fullscreen .navtog
  {
    -webkit-transition:0.4s;
    -moz-transition:0.4s;
    transition:0.4s;

    margin-right:56px;
  }

  body.fullscreen #navtog:checked ~ .navtog
  {
    margin-right:0;
  }

  .nav
  {
    display:none;
  }

  .midnav
  {
    margin-top:44px;
  }

  .subnav{

    display:block;
    width:100%;
    max-height:0px;
    padding:0px 16px !important;
    padding-bottom:0 !important;
    box-sizing:border-box;

    background-color:#FFF;

    z-index:1000;

    overflow: hidden;

    pointer-events:none;
  }

  .mid-nav-wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .subnav > div
  {
    flex:0;
    flex-shrink:0;

    width:100%;

    margin:0;
    margin-right:0 !important;

    overflow:hidden;
  }

  .subnav > span.mobile
  {
    height: auto;
  }

  .subnav > div:not(.mobile)
  {
    height: 37px;
  }

  .navtoghold
  {
    display:block;
  }

  .navtoghold > a, .navtoghold > a:visited
  {
    color:inherit;
  }

  .navtoghold > a > i
  {
    height:100%;
    font-size:28px;

    padding:8px;
    box-sizing:border-box;
  }

  #navtog:checked ~ .subnav-holder
  {
    pointer-events:all;
  }

  #navtog:checked ~ .subnav-holder .subnav
  {
    background-color:#EAEAEA;

    pointer-events:all;

    padding:44px 16px !important;
    padding-bottom:44px !important;
    background-color:#003a70;

    max-height:none;
  }

  #navtog:checked ~ .navtoghold .navtog
  {
    background-color:#ff6900;
    color:#FFF;
  }

  #navtog:checked ~ .subnav-holder .subnav *
  {
    opacity:1;
    pointer-events:auto;
  }

  .property {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
    border-radius:0;
    height: auto;
  }

  .property .thumbnail
  {
    display: flex;
    max-width:450px;
    max-height:300px;
    background-color: white;
  }
  .property .data
  {
    display: flex;
    flex-direction: column;
    width:100%;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
  }



  .split .padding
  {
    width:100%;
  }

  .split .padding.novert
  {
    padding:0;
  }

  .split .data
  {
    min-height:0;
  }

  .property-page .split .data
  {
    min-height:0;
    margin-left: 0;
    padding:8px;
  }

  div.search
  {
    margin-bottom:16px;
  }

  form.search
  {
    border-radius:0;
  }

  .page div.search form
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .page div.search .vsplit
  {
    width:100%;
  }

  form .radioswitch
  {
    width:100%;
  }

  .page div.search .hsplit.inline
  {
    margin-left:0;
    max-width:100%;
    width:100%;
  }

  form.search input[type="submit"]
  {
    margin-top:20px;
    margin-left:0;
  }

  .page div.search .hsplit
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .page div.search .hsplit > *
  {
    flex:none;
    width:100%;
    max-width:100%;
  }

  .page div.search .hsplit > *:first-child,   .page div.search .hsplit > *:nth-child(2)
  {
    max-width:100%;
  }

  .subnav span.mobile
  {
    display:block;
  }

  .subnav div h2, .subnav span h2
  {
    text-align:left;

    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:rgba(150,150,150,.3);
  }

  .mid-nav-wrapper {
    display:-webkit-flex;
    display:flex;

    width:100%;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;

    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    align-items: flex-start;
  }
  .mid-nav-wrapper > div {
    margin-top: 0px;
    margin-right: 0px;
    padding-right: 0px;
  }

  .social-links {
    display: flex;
    flex-shrink:0;
    margin:0;
    padding:0;
    opacity: 1;
  }
  .social-item {
    display: inline-flex;
    flex-shrink:0;
  }

  #space_from_logo {
    margin-left: 30px;
  }

  .sidebar
  {
    padding-left:24px;
    padding-right:24px;

    max-width:100%;
    width:100%;

    box-sizing:border-box;
  }

  .split.cta-block
  {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    flex-wrap:wrap;
  }

  .split.cta-block .cta
  {
    max-width:50%;
    flex-basis:50%;

    padding-left:0;
    padding-right:0;

    padding-bottom:10px;
  }

  .split.cta-block .cta:first-child
  {
    padding-right:10px;
  }

  .split.cta-block .cta:nth-child(2)
  {
    padding-left:10px;
  }

  .split.cta-block .cta:nth-child(3)
  {
    padding-right:10px;
  }

  .split.cta-block .cta:last-child
  {
    padding-left:10px;
  }

  .page .cta-block .cta .img-holder img
  {
    width:auto;
    height:auto;
  }

  .maincontent .breadcrumbs,
  .main-top .breadcrumbs {
    margin-top: 0;
  }

  /* Landing page CTA */
  .landing .maincontent .pagecta
  {
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;
    flex-wrap:wrap;
  }

  .landing .maincontent .pagecta .cta
  {
    min-width:100%;
    max-width:100%;
  }

  .landing .maincontent .pagecta .cta .cta-inner,
  .landing .maincontent .pagecta .cta .cta-inner .img-holder,
  .landing .maincontent .pagecta .cta .cta-inner .img-holder img
  {
    width:auto;
  }

  .page, .list-page
  {
    padding:16px;

    box-sizing:border-box;
  }

  .split .data {
    margin-left: 0;
  }

  .footer-column {
    box-sizing: border-box;
    padding: 20px;
  }

  .footer-container {
    display: -webkit-box;
    display: -moz-box;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .footer-item > p
  {
    margin:auto;
  }

  .footer-item > p.footer-title
  {
    margin-top:14px;
  }

  .box2 {
    width: 100%;
  }

  .page .img-switcher .slide .img-holder,
  .page .img-switcher .slide .img-placeholder,
  .page .img-switcher .slide .slide-inner,
  body.standard.page .img-switcher {
    height: auto;
  }

  .footer-item {
    width: 75%;
    text-align: center;
  }

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

@media screen and (max-width:870px) {

  .mid-nav-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .mid-nav-wrapper .tagline
  {
    padding:0;
  }

  .social-links {
    display: none;
  }
  .social-item {
    display: none;
  }
  #space_from_logo {
    margin-left: 0px;
  }

  .topbar
  {
    height:auto;
  }

  .page .topbar #tts{
    display: block;

    border-width: 1px 0px 0px 0px;
  }

  .topbar .pullright
  {
    display: block;
    position: static;
    height: auto;

    text-align: center;

    padding: 8px;

    border-width: 1px 0px 0px 0px;
    border-style: solid;
    border-color: inherit;
  }

  .topbar .pullright::before{
    display: none;
  }

  .topbar .pullright span{
    display: block;
  }


  .split.pagesplit
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .maincontent
  {
    width:100%;
  }

  .maincontent > div {
    width: 100%;
    word-wrap: break-word;
  }

  .sidebar {
    margin-top: 34px;
  }

  .list-holder
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .list-holder .list-wrap
  {
    flex:none;
  }

  .property-page .split .data {
    max-width: 50%;
    min-width: 25%;
  }

  .contact-form .split.stretch
  {
    height:auto;
  }

  .split.stretch > #map
  {
    height:600px;
    min-height:600px;
  }

  .tabulator input[type="radio"] + label:first-of-type
  {
    margin-left:0;
  }

  .tabulator input[type="radio"] + label
  {
    display:flex;

    flex-grow:1;
    flex-shrink:0;

    margin-right:0;
  }

  .tabulator input[type="radio"] + label,   .tabulator input[type="radio"]:checked + label
  {
    background-color:transparent;

    padding:6px;

    white-space:pre;
  }

  .tabulator input[type="radio"] + label span
  {
    display:flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    align-items: center;

    width:100%;

    background-color:#c4c4c4;
    padding:6px 8px;

    border-radius:4px;
  }

  .tabulator input[type="radio"]:checked + label span
  {
    background-color:#E8E8E8;
  }

  /* Landing page CTA */
  .landing .maincontent .pagecta
  {
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    box-pack: start;
    justify-content: flex-start;
    flex-wrap:wrap;
  }

  .landing .maincontent .pagecta .cta
  {
    min-width: 100%;
    max-width: 100%;
  }

  .landing .maincontent .pagecta .cta .cta-inner,
  .landing .maincontent .pagecta .cta .cta-inner .img-holder,
  .landing .maincontent .pagecta .cta .cta-inner .img-holder img
  {
    width:auto;
  }

  .footer-item {
    width: 100%;
  }
}

/*  */
/* Things that should only happen when screen width < 650px */
/*  */

@media screen and (max-width:650px)
{

  .split
  {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
  }

  .split.cta-block .cta
  {
    max-width:100%;
    flex-basis:100%;

    padding-left:0 !important;
    padding-right:0 !important;

    padding-bottom:10px;
  }

  .page .img-switcher .cta .img-holder img,
  .page .img-switcher .slide .img-holder img {
    height:100%;

    width:auto;
  }

  div.search
  {
    width:100%;
  }

  form.search .multi-select .header ~ label
  {
    padding:16px;

    border-radius:0;
  }


  form.search .multi-select:focus .header + label ~ div
  {
    margin-top:32px;
    max-height:none;
  }

  form div.multi-select input[type="checkbox"]:not(.header) + label
  {
    padding:8px;
  }

  form div.multi-select input[type="checkbox"]:not(.header) + label:not(:last-of-type)
  {
    border-width:0px 0px 1px 0px;
    border-style:solid;
    border-color:inherit;
  }

  .property-page .split .data {
    max-width: 100%;
  }

  .property-image-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .content table td {
    font-size: 10px;
    padding-right: 13px;
  }

  .split > .properties  {
    padding-left:0;
  }
  .properties  {
    width:100%;
  }

  .list-item-people {
    height: auto;
  }

  .page .img-switcher {
    display: none;
  }
  .page.about-us .img-switcher,
  .page.what-its-like-to-work-for-us .img-switcher {
    display: flex;
  }

  form .radioswitch, form .radioswitch.padding.notop
  {
    display:flex;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    flex-direction: row;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    justify-content: center;

    width:100%;
  }

  form.search .radioswitch #lettings + label
  {
    max-width:none;
  }

  .page blockquote
  {
    padding: 20px 20px 0;
  }

  .page blockquote p {
    margin: 0;
    padding: 0 35px 24px;
  }

  /* Landing page CTA */
  .landing .maincontent .pagecta .cta
  {
    min-width:100%;
  }

  .toolbar a
  {
    min-width:50%;
    max-width:50%;
  }

  .toolbar i
  {
    font-size:40px;
  }

  .toolbar .floorplan
  {
    height:40px;
    width:40px;
  }
}

/* IE 10+ HACKS !!!!!! - Excludes EDGE since that is actually decent! */

@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-content
  {
    flex:1;
  }

  form.search .multi-select div
  {
    margin-top:0;
  }

  .list-holder .list-wrap .list-item.small {
    display: block;
    float: left;
    min-height:250px;
    overflow-y: hidden;
    padding-bottom: 30px;
    margin-bottom: 10px;
  }

  .list-wrap {
    display: block;
  }
  .list-holder .list-wrap .list-item-people {
    display: block;
    min-height: 850px;
  }
  .list-holder .list-wrap .list-item.small {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .list-holder .list-wrap .list-item:not(.small) {
    display: block;
  }
  .list-holder .list-wrap .img-holder img {
    display: block;
    min-width: 100%;
  }
  form div:not(.radioswitch) {
    display: block;
  }


  .image-indicator-wrap {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .image-indicator-wrap .indicator-bar-arrows {
    /* position: relative; */
    display: block;
  }
  .image-indicator-wrap .indicator-bar-arrows .previous-button {
    position: absolute;

    left: 0;
    top: 10%;
  }
  .image-indicator-wrap .indicator-bar-arrows .next-button {
    position: absolute;

    right: 0;
    top: 10%;
  }

  .split > .properties {
    width:100%;
  }

  .footer-item {
    display: block;
    float: left;
  }
  .box1 {
    display: block;
    position: relative;
  }
  .twitter {
    display: block;
    margin-bottom: 10px;
  }
}

/* IE FIXES! */
@media screen and (max-width:1140px) and (-ms-high-contrast: none), (-ms-high-contrast: active)
{
  .mid-nav-wrapper > div
  {
    width:100%;
  }
}

/* A fix for cursors not appearing apparently, think this was a safari fix */
@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) {
  body *
  {
    cursor:pointer;
  }
}}
