:root {
   --dark-grey: #555;
   --gold: #d8bb78;
   --red: #d81f26;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--dark-grey);
}

body {
    font-family: "Open Sans", sans-serif;
    overflow: scroll;
}

ul li {
    list-style-position: inside;
}

/*Hamburgers*/
.menu-icon {
    position: fixed;
    z-index: 15;
    top: 34px;
    right: 25px;
    visibility: hidden;
    width: 25px;
    height: 19px;
    margin-right: 0;
    cursor: pointer;
    transition: transform 300ms ease-in-out;
}

.fade,
.fade:hover,
.unfade,
.unfade:hover {
    transition: opacity 0.8s;
}

.fade:hover {
    opacity: 0.4;
}

.unfade,
.unfade:hover {
    opacity: 1;
}

.unfade {
    opacity: 0.4;
}

.menu-icon:hover span {
    border: 1.5px solid var(--gold);
}

.menu-icon span {
    position: absolute;
    z-index: 1;
    display: block;
    width: 22px;
    height: 0;
    border: 0.7px solid #000;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 7.5px;
}

.menu-icon span:nth-child(3) {
    top: 15px;
}

#menuToggle {
    display: none;
}

#menuToggle~.menu-icon span {
    transition: all 0.5s ease-in-out;
}

#menuToggle:checked~.menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: top left;
}

#menuToggle:checked~.menu-icon span:nth-child(2) {
    opacity: 0;
}

#menuToggle:checked~.menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: bottom left;
}

#menuToggle:checked~#topMenu ul {
    right: 0;
    margin-right: 0;
    transition: all 1s ease-in;
}

#content .fullScreen {
    margin-top: 65px;
}

/* navigation */
nav#topMenu {
    font-family: "PT Serif", serif;
    font-size: 18px;
    position: sticky;
    position: -webkit-sticky;
    z-index: 10;
    top: -1px;
    height: 120px;
}

.menuStyle {
    border-bottom: 1px solid #000;
    background: #fff;
}

.homeMenu {
    background: #000;
    box-shadow: none;
}

.homeMenu li,
.homeMenu li a {
    color: #fff;
}

#topMenu span,
.homeMenu span {
    font-size: 14px;
    position: absolute;
    top: 85px;
    left: calc(100% - 770px);
    color: var(--gold);
}

.menuStyle li,
.menuStyle li a {
    color: #000;
}

nav img {
    float: left;
    height: 94px;
    margin: 10px 0 0 40px;
}

#topMenu ul {
    float: right;
    width: 750px;
    margin: 48px 30px 0 0;
    transition: all 1s ease-in;
}

#topMenu li a {
    padding: 11px;
    text-decoration: none;
}

#topMenu li,
#topMenu li a {
    vertical-align: super;
}

#topMenu li {
    display: inline-block;
}

#topMenu li:not(:last-child)::after {
   font-size: 40px;
   line-height: 20px;
   content: "/";
   text-decoration: none;
}

#footerMenu li.active a,
#topMenu li.active a {
    font-size: 22px;
    font-weight: 500;
    text-decoration: underline;
}

#callBanner {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    top: 119px;
    padding: 18px 0 16px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}

#telephone {
    padding: 18px 0 16px;
    text-align: center;
}

#telephone * {
    font-size: 16px;
    font-family: "PT Serif", serif;
}

#telephone div {
    display: inline-block;
    margin: 0 20px;
}

#telephone div a {
    color: var(--gold);
}

.editpanel,
.panel {
    overflow: hidden;
    max-height: 0;
    padding: 0;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    font-size: 40px;
    font-weight: 200;
    height: 56px;
    margin: auto 0;
    content: "+";
}

.activeAccordion:after {
    margin-right: 5px;
    content: "-";
}

#callBanner a {
    font-family: "PT Serif", serif;
    font-size: 20px;
    margin: 0 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    color: #000;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* body */
/*slideshow*/
/* Slideshow container */
.slideshow-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: calc(100vw * 0.4);
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    position: absolute;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mySlides p {
    font-family: "Open Sans", sans-serif;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 62%;
    left: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.mySlides p.righttext {
    top: 53%;
    right: 50px;
    left: unset;
}

.leftSlide {
    left: 100%;
    transition-delay: 3s;
    transition-duration: 1s;
    transition-property: left;
}

.rightSlide {
    left: 0;
    transition: left 1s ease-in;
}

.invisible {
    transition: opacity 2s linear;
    transition-delay: 1s;
    opacity: 0;
}

.visible {
    transition: opacity 2s linear;
    transition-delay: 1s;
    opacity: 1;
}

.modal {
    position: fixed;
    z-index: 6;
    top: 119px;
    left: 0;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    background-color: rgba(0, 0, 0, 0.9);
}

#mapbox1,
.mapbox2 {
    height: 50vh;
    border: 0;
}

.modal-content {
    display: block;
    width: 80%;
    max-width: 700px;
    margin: auto;
    animation-name: zoom;
    animation-duration: 0.6s;
    background: #fff;
}

.propmoda {
    overflow-y: scroll;
    width: 90%;
    max-width: 900px;
    max-height: calc(100% - 65px);
    padding: 40px;
}

form.propedit {
    display: inline-block;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.close {
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: calc(50% - 445px);
    transition: 0.3s;
    color: #f1f1f1;
    width: 25px;
}

.close:focus,
.close:hover {
    cursor: pointer;
    text-decoration: none;
    color: #bbb;
}

/*- end slideshow -*/
.headingBlock {
    width: 62vw;
    height: 64px;
    margin-top: 50px;
    padding: 6px 35px;
    background: #000 url("/images/site/misc/crownbg.svg");
}

.left h1 {
    float: right;
}

.right {
    position: absolute;
    right: 0;
}

.right h1 {
    float: left;
}

#homeBlock {
    z-index: 4;
    top: 231px;
    width: 62%;
    background: rgba(0, 0, 0, 0.7);
}

h1 {
    font-size: 40px;
    font-weight: normal;
    text-align: left;
    letter-spacing: 8px;
    color: #fff;
}

h2 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 6px;
    text-transform: uppercase;
}

h3 {
    font-weight: bold;
    text-transform: uppercase;
}

h4 {
    font-family: "PT Serif", serif;
    padding: 20px;
    text-align: center;
    border: solid 1px #000;
}

.headingBlock h1 {
    font-size: 36px;
    letter-spacing: 3px;
}

.blockup h1 {
    text-transform: uppercase;
}

.footerContainer {
    margin: auto;
    text-align: center;
}

footer {
    border-top: 1px solid #000;
    background: #fff;
}

#crownFoot {
    position: relative;
    top: 8px;
    height: 100px;
}

#footerMenu li {
    font-size: 20px;
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px;
}

#footerMenu li a {
    text-decoration: none;
    color: #000;
}

#footerMenu li:nth-child(3) {
    margin-right: 130px;
}

#footerMenu li:nth-child(4) {
    margin-left: 130px;
}

#footerMenu {
    position: relative;
    top: -68px;
}

#accreditation a {
    display: inline-block;
}

.footerContainer h2 {
    font-family: "PT Serif", serif;
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: none;
}

.footerContainer img {
    height: 50px;
    margin: 30px 50px;
}

#copyright {
    margin: 20px 0;
}

#copyright h4 {
    font-weight: normal;
    padding: 0;
    border: none;
}

#social {
    z-index: 9;
    left: 50px;
}

#social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    transition: transform 2s;
    border-radius: 50%;
    background: var(--gold);
}

#social img {
    width: 20px;
    height: 20px;
    margin: calc(50% - 10px);
}

#social a:hover {
    transition: transform 2s;
    transform: rotate(360deg);
}

hr {
    border: solid 0.5px #000;
}

.fixed {
    position: fixed;
    bottom: 20px;
}

#emergency a {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    position: absolute;
    z-index: 1;
    right: 50px;
    width: 144px;
    height: 46px;
    padding: 10px 6px;
    transition: transform 1s;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
}

#emergency a:hover {
    transition: transform 1s;
    transform: scale(1.4);
}

#topBlock {
    width: 100vw;
    height: 200px;
    text-align: center;
    background: #000;
}

#topBlock h1 {
    position: relative;
    top: 71px;
    left: 125px;
    display: inline;
    text-align: right;
}

#blockImage {
    position: absolute;
    z-index: 1;
    top: 401px;
    left: calc(50% - 750px);
    height: 280px;
    box-shadow: 7px 7px 9px rgba(0, 0, 0, 0.7);
}

.crownSide {
    z-index: -1;
    display: block;
    float: left;
    height: 350px;
    margin: 30px 0;
    opacity: 0.05;
}

.rightCrown {
    float: right;
}

#blockManagementOne {
    padding-top: 400px;
    background: #fff;
}

#blockManagementOne p {
    position: absolute;
    top: 476px;
    left: 50%;
    width: 500px;
    text-align: left;
}

.fullScreen {
    width: 100%;
}

#complaintsh3 {
    font-size: 15px;
    text-align: center;
}

#complaintsh3 a {
    text-decoration: underline;
    color: #000;
}

.middle {
    max-width: 800px;
    margin: 50px auto 100px;
}

.middle.crown img {
    display: block;
    height: 150px;
    margin: 10px auto 100px;
}

.crownmid {
    max-width: 660px;
}

#abouttext p {
    max-width: 600px;
    margin: auto;
    text-align: justify;
}

#accordionHolder {
    width: 800px;
    margin: auto;
}

.accordion {
    display: inline-flex;
    display: -webkit-inline-flex;
    width: 100%;
    padding: 18px;
    cursor: pointer;
    transition: 0.4s;
    text-align: center;
    color: #000;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    outline: none;
    background: none;
}

.activeAccordion,
.panel {
    border: none;
    background: #ebddbb;
}

.accordion:hover {
    background: #ebddbb;
}

.editpanel p,
.panel p {
    margin: 0 20% 40px;
    padding: 20px;
    text-align: justify;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.usertable .panel tr td:first-of-type {
    width: auto;
}

.accordion img {
    height: 65px;
    margin: auto 0;
}

.accordion p {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    width: 500px;
    margin: auto calc(50% - 250px);
}

.activeAccordion p {
    font-weight: bold;
}

#loginform {
    display: block;
    width: 500px;
    margin: 20px auto 0;
    text-align: center;
}

#loginform input {
    width: 350px;
}

.enquire {
    margin-top: 50px;
}

#addcareer select,
#adminpanel a,
#adminpanel button,
#registerform select,
#searchtab a,
.enquire a,
.propEditBtn,
input {
    font-size: 16px;
    height: 46px;
    margin-top: 20px;
    padding: 4px 20px;
    color: #969390;
    border: 2px solid #000;
    background: #fff;
}

.propEditBtn {
    display: inline-block;
    text-transform: uppercase;
    height: 35px;
}

input[type="submit"],
.propEditBtn,
#adminpanel .editbtns a,
.enquire a,
#searchtab a {
    cursor: pointer;
    text-align: center;
    color: #fff;
    background: #000;
}

#searchtab a {
    font-size: 18px;
}

#adminpanel {
    text-align: center;
}

#adminpanel a,
#adminpanel button {
    font-size: 20px;
    display: block;
    width: 300px;
    margin: 25px auto auto;
    color: #000;
}

.detailbox a {
    margin-top: -2px;
}

#adminpanel .editbtns a {
    margin-top: 5px;
}

#adminpanel .editbtns a:hover {
    opacity: 0.5;
}

.center {
    display: table;
    margin: auto;
}

.inputBox {
    width: 360px;
    margin-top: 15px;
}

.password {
    font-size: 17px;
    margin-left: 7px;
    text-decoration: none;
    letter-spacing: 7px;
}

a:hover {
    opacity: 0.5;
}

::placeholder {
    text-align: center;
}

.error {
    font-size: 14px;
    display: block;
    margin: 4px;
    letter-spacing: 3px;
    color: #d80000;
}

.successmsg {
    color: #00b500;
}

.admin {
    text-transform: uppercase;
    color: #d80000;
}

#logoutbutton {
    text-align: center;
}

#logoutbutton .inlinep a {
    font-size: 26px;
    margin: 40px;
}

.inlinep {
    display: inline-block;
    margin: 20px 50px;
}

.inlinep a {
    font-size: 22px;
    text-decoration: none;
    letter-spacing: 5px;
}

.inlinep a span {
    font-size: 26px;
    letter-spacing: -7px;
}

.single {
    display: block;
    text-align: center;
}

input[type="radio"] {
    margin-right: 20px;
}

label {
    margin-right: 100px;
}

input[type="radio"]+svg {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

input+svg {
    cursor: pointer;
}

.botmpropbox h5 {
    text-transform: capitalize;
}

svg {
    height: 20px;
    margin: 10px;
}

.imgbox a svg {
    margin: 0;
    background: rgba(255, 255, 255, 0.5);
}

input[class="admin"]:hover+svg,
input[class="user"]:hover+svg,
input[class="user"]:checked+svg,
input[class="admin"]:checked+svg {
    transform: scale(1.2);
    fill: #d80000;
}

.regbox {
    width: 500px;
    text-align: center;
}

#registerform input {
    min-width: 338px;
}

#userh {
    font-size: 22px;
    margin: 20px 0;
    padding: 20px;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid #000;
}

.addprop {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.addpropopen {
    max-height: none;
    transition: max-height 0.3s ease-out;
}

.lefth {
    text-align: left;
}

.usertable {
    margin: 20px 0;
    border-collapse: collapse;
    border: 2px solid #000;
    width: 100%;
}

.usertable td {
    padding: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.usertable td:first-of-type {
    text-transform: none;
}

.navigationbuttons {
    width: 100%;
    text-align: center;
}

td svg {
    width: 28px;
    height: 18px;
    margin: 0 0 -3px;
    cursor: pointer;
}

td {
    border: solid 1px #000;
}

tr td:first-of-type {
    width: 333px;
}

#contactmain {
    margin: 50px auto;
}

#contactForm,
#teamabouts {
    max-width: 525px;
    margin: 50px auto;
}

#teamabouts h3 {
    text-align: left;
    text-transform: none;
}

#contactForm input,
#contactForm textarea {
    width: 500px;
    height: 46px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0.5px solid #000;
}

#contactForm textarea {
    font-size: 16px;
    height: 100px;
    padding: 8px 20px;
    color: #969390;
}

#contactForm label {
    font-size: 20px;
    margin: 0;
}

#contactForm span {
    color: #d80000;
}

#contactForm input[type="radio"] {
    width: auto;
    height: auto;
    margin: 0 10px;
}

#contactForm input[type="radio"]~label {
    font-size: 15px;
    margin-right: 20px;
}

#contactForm input[type="submit"] {
    margin-top: 20px;
}

#address {
    font-size: 22px;
    text-align: center;
}

#address p {
    margin: 20px 0;
    text-transform: uppercase;
}

#address a {
    color: #888;
}

#address hr {
    width: 250px;
    margin: auto;
}

#address hr:nth-of-type(2) {
    width: 200px;
}

#address hr:nth-of-type(3) {
    width: 150px;
}

#adminpanel a,
#adminpanel button,
.enquire a,
.logininput {
    font-size: 22px;
    letter-spacing: 7px;
    text-transform: uppercase;
}

#addcareer select,
#registerform select {
    font-size: 12px;
    padding-right: 50px;
    cursor: pointer;
    color: #000;
    border-radius: 0;
}

#addressselect {
    position: absolute;
    display: none;
    width: auto;
    height: 40px;
    margin-top: 4px;
    margin-left: -55px;
    pointer-events: none;
}

#postcode,
#postcodesearch {
    text-transform: uppercase;
}

#searchicon {
    display: inline-block;
    width: 42px;
    margin-left: -48px;
    padding: 6px;
    cursor: pointer;
    vertical-align: bottom;
}

.success {
    font-size: 16px;
    width: 500px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: capitalize;
    border: 1px solid #00b500;
}

#mail {
    text-align: left;
    grid-column-end: 3;
}

#mail svg {
    width: 30px;
}

#mail p {
    font-size: 18px;
    position: relative;
    top: -12px;
    display: inline;
    text-transform: uppercase;
    color: #000;
}

#reputation {
    margin-bottom: 80px;
    text-align: center;
}

#reputation hr {
    display: block;
    width: 300px;
    margin: auto;
}

#reputation p {
    font-family: "PT Serif", serif;
    font-size: 40px;
    margin: 50px;
}

.butler {
    font-family: "PT Serif", serif;
}

.develop {
    margin-top: 50px;
    text-align: center;
}

.develop p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    text-align: justify;
}

.develop h5 {
    font-size: 28px;
    font-weight: 100;
    display: block;
    clear: both;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.develop img {
    display: block;
    max-width: 100%;
    max-height: 200px;
    margin: 45px 0;
}

.develop img:nth-of-type(odd) {
    float: right;
}

.questions {
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    width: 100%;
    margin-top: 40px;
    padding: 20px 60px;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid #878a89;
    background: #fff;
}

.questions:hover {
    background: #ebddbb;
}

.questions span {
    float: left;
    text-align: left;
}

.questions::after {
    font-size: 55px;
    font-weight: 100;
    line-height: 35px;
    position: absolute;
    right: calc(50vw - 380px);
    content: "+";
}

.answerbox {
    font-family: "PT Serif", serif;
    font-size: 25px;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    transition: all 0.2s ease-out;
    border: 1px solid #878a89;
    border-top: none;
}

.answerbox ol {
    margin-left: 25px;
}

.answerbox p {
    background: #fff;
}

.answers::after {
    margin: -3px 5px 0 0;
    content: "\2013";
}

.answers {
    font-weight: 500;
    transition: 0.4s;
    border-bottom: none;
    background: #ebddbb;
}

#emergencytop {
    margin: 100px 0;
    background: var(--red);
}

#emergency {
    position: absolute;
    right: 0;
}

.full {
    width: 100%;
}

.headingBlock.full {
    margin: 150px 0;
}

.full h1 {
    text-align: center;
}

.emergencytable {
    font-family: "PT Serif", serif;
    font-size: 18px;
    width: calc(100% - 40px);
    margin: auto;
    border-collapse: collapse;
}

.emergencytable td {
    padding: 8px 12px;
}

.emergencytable th {
    font-size: 30px;
    font-weight: lighter;
    padding-bottom: 10px;
    text-decoration: underline;
    letter-spacing: 0.8px;
}

.emergencytable a {
    padding: 0;
    color: var(--dark-grey);
}

.emergencytable ul {
    margin-left: 16px;
}

.career {
    width: 100%;
    border-collapse: collapse;
}

.career td {
    padding: 5px 0;
    margin: 0;
    border: none;
}

.career td input[type="file"] {
    border: none;
}

.career tr td:nth-of-type(2) {
    padding-left: 60px;
    position: relative;
}

.previewrow td img {
    border: 1px solid #000;
}

.previewImg {
    height: 200px;
    border: 1px solid #000;
}

#addcareer select,
#registerform select,
#renttype,
.career td input {
    width: calc(100% - 60px);
    margin: 0;
    border-width: 1px;
}

#renttype {
    -webkit-appearance: none;
}

.career tr {
    min-height: 48px;
}

.career tr td:first-of-type {
    width: 50%;
    text-align: right;
    border-right: 1px solid #000;
}

.career textarea {
    font-size: 16px;
    width: calc(100% - 60px);
    height: 200px;
    margin-top: 10px;
    padding: 20px;
    color: #969390;
    border: 1px solid #000;
}

.career .descriptlabel {
    padding-top: 16px;
    vertical-align: top;
}

#photoadd {
    color: #fff;
    background: #000;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    margin-bottom: 10px;
}

.previewrow {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.previewrow td .deleteBtn {
    border: none;
    height: 30px;
    margin: 10px 10px -10px;
}

.previewrow td {
    text-align: left;
}

#addacareer,
#addaproperty {
    display: block;
    margin: 40px auto 0;
    padding: 8px 50px;
}

#addaproperty {
    display: block;
    margin: 40px auto;
    text-align: center;
}

.careerbox {
    width: 700px;
    margin: 0 auto 50px;
    padding: 60px;
    border: 2px solid #444;
}

.careerbox h2,
.careerbox h3 {
    margin-bottom: 20px;
    text-align: left;
}

.careerbox h3 {
    margin-bottom: 10px;
}

.careerbox h5 {
    margin-bottom: 5px;
}

#welcome {
    font-size: 25px;
    font-weight: bold;
    margin: 38px auto 0;
    text-align: center;
    color: #d80000;
}

td a {
    padding: 10px;
    color: #d80000;
}

.usertable .deletetd {
    padding: 0;
}

#hidnfees {
    display: block;
    float: none;
    width: auto;
    height: 240px;
    margin: 30px auto;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

#privacy {
    font-size: 12px;
    color: #d80000;
}

.develop ul {
    max-width: 587px;
    margin: auto;
    padding-left: 13px;
    text-align: justify;
}

.editbox {
    cursor: pointer;
    transition: all 1s ease-out;
}

.activeEdit svg {
    transition: all 1s ease-out;
    transform: rotate(180deg);
}

.editpanel {
    margin: -20px 0 10px;
    position: relative;
}

.editpanel form {
    display: inline-block;
    padding: 20px;
    border: 2px solid #000;
    border-top: none;
    width: 100%;
}

.editpanel label {
    font-size: 20px;
    display: inline-block;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.editpanel label:nth-of-type(3) input {
    width: 327px;
    margin-left: 20px;
}

.editpanel label:nth-of-type(4) input {
    width: 327px;
    margin-left: 18px;
}

.editpanel span {
    display: block;
    cursor: pointer;
    text-align: center;
    color: #d80000;
}

.editpanel input[type="submit"] {
    font-size: 22px;
    height: 37px;
    padding: 3px 35px;
    letter-spacing: 8px;
    text-transform: uppercase;
    display: block;
    margin: 25px auto 10px;
}

.eye {
    display: inline-block;
    width: 30px;
    height: 50px;
    position: absolute;
    left: 16px;
}

#addcareer td label,
#photoadd,
#registerform td label {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: lighter;
    display: block;
    margin-right: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.career input[type="radio"] {
    width: auto;
    min-width: 22px !important;
}

#addcareer,
#registerform {
    margin-bottom: 40px;
}

#admin,
#furnished {
    margin-right: 21px;
}

#unfurnished,
#user {
    margin-left: -34px;
}

#addcareer tr td #furnishedlabel,
#addcareer tr td #unfurnishedlabel,
#registerform tr td #adminLabel,
#registerform tr td #userLabel {
    margin-top: -40px;
}

#preview {
    padding: 20px;
    text-align: center;
}

#preview img {
    padding: 10px;
}

.gloss h5 {
    font-weight: bold;
    clear: none;
    text-decoration: underline;
}

.gloss p {
    margin-bottom: 30px;
}

.previewrow {
    height: 46px;
    padding: 30px;
}

img.gloss {
    position: fixed;
    top: calc(50vh - 175px);
}

img.rightCrown.crownSide.gloss {
    right: 0;
}

#copyrightdash,
#copyrightdash a {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

#copyrightdash {
    margin-top: 2px;
    color: #000;
}

.imgbox {
    float: left;
    overflow: hidden;
    width: 195px;
    margin-right: 20px;
    text-align: center;
}

.imagebox img,
.imgbox img,
.imgbox video {
    height: 130px;
}

.imagebox img:first-of-type {
    max-width: 190px;
    box-shadow: 2px 2px 3px;
}

.imagebox input {
    position: absolute;
    top: -12px;
    left: -12px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

#searchtab a {
    padding-top: 8px;
}

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

.holder {
    position: relative;
    display: inline-block;
    margin: 0 20px 20px 0;
}

.details {
    position: relative;
    display: inline-block;
    width: 680px;
}

.details h3 {
    display: inline-block;
    margin-right: 20px;
}

.eachdetail {
    display: inline-block;
    height: 50px;
}

.eachdetail input[type="text"],
.eachdetail input[type="number"] {
    display: inline-block;
    width: 300px;
    height: 35px;
    margin-top: 0;
    margin-left: 30px;
}

.eachdetail h5 {
    display: inline-block;
}

.imageedits {
    float: left;
    width: 270px;
    min-height: 200px;
}

.numbertext {
    font-weight: bold;
    position: absolute;
    padding: 5px;
    color: #111;
    background: rgba(255, 255, 255, 0.9);
}

.imbox {
    position: relative;
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.prev {
    left: 0;
}

.next,
.prev {
    font-weight: bold;
    position: absolute;
    top: calc(50% - 17px);
    cursor: pointer;
    transition: 0.6s ease;
}

.next {
    right: 0;
}

.propresultbox {
    display: inline-block;
    width: 800px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #000;
}

.propimg {
    width: 300px;
    height: 160px;
    object-fit: cover;
}

.bedbath {
    height: 30px;
    margin-bottom: -8px;
}

#question {
    width: 100%;
    padding: 80px;
    border-top: 1px solid #000;
    background-image: radial-gradient(rgba(255, 255, 255, 1), rgba(216, 187, 120, 0.8));
}

#question p {
    font-size: 25px;
    text-align: center;
}

#button {
    margin-top: 40px;
    text-align: center;
}

#button a {
    font-size: 18px;
    padding: 5px 25px;
    color: #000;
    border: 1px solid #000;
    background: #ebddbb;
}

#propresult {
    padding: 40px 55px;
    text-align: center;
}

.propertybox p {
    overflow: scroll;
    height: 400px;
    padding: 10px 20px;
    box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.6);
}

#maintext1,
#maintext2 {
    font-size: 30px;
    font-weight: bold;
    max-width: 600px;
    margin-bottom: 60px;
    text-align: center;
}

.propertybox {
    display: inline-block;
    width: 640px;
    height: 174px;
    margin: 25px;
    padding: 20px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.propertybox h3 {
    font-family: "PT Serif", serif;
    font-size: 20px;
    font-weight: lighter;
    line-height: 20px;
    text-align: left;
    text-transform: capitalize;
}

#newProp {
    margin-top: 20px;
}

#newProp tr td {
    border: 1px solid #000;
}

.propertybox a {
    font-size: 10px;
    float: left;
    color: #d80000;
}

.propertybox svg {
    height: 30px;
    margin: 8px 0 -7px;
}

.letsearch {
    margin: 60px auto;
    text-align: center;
    opacity: 0.8;
}

.letsearch a {
    display: inline-block;
    padding: 6px 40px 10px;
    color: #000;
    border: 2px solid #000;
    background: #fff;
    box-shadow: 0 0 5px #000;
}

#topbut {
    height: 61px;
    background: #000 url("/images/site/misc/crownbg.svg");
}

.moreinfo {
    float: right;
    margin: 0;
}

.moreinfo a {
    font-size: 18px;
    height: auto;
    margin: 0;
    padding: 5px 12px;
    color: #fff;
}

.detailbox,
.imgbox {
    display: inline-block;
    height: 130px;
}

.detailbox {
    position: relative;
    width: calc(100% - 216px);
}

.botmpropbox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#lettingbar {
    font-size: 20px;
    display: grid;
    overflow: hidden;
    justify-content: center;
    color: #fff;
    background: #000;
    grid-template-columns: 170px 170px 260px 340px;
    grid-column-gap: 20px;
}

#lettingbar h6,
#lettingbar span {
    font-family: "PT Serif", serif;
    font-size: 24px;
}

#lettingbar div {
    display: inline-block;
    padding: 15px;
}

#lettingbar div div {
    padding: 0;
}

#lettingbar h6,
#lettingbar input,
#lettingbar span {
    display: inline-block;
    margin: 0 0 15px;
    padding: 0;
}

#lettingbar select {
    font-size: 14px;
    min-width: calc(100% - 25px);
    margin-left: 5px;
    cursor: pointer;
    border-radius: 0;
}

#lettingbar #sort {
    display: grid;
    grid-template-columns: 116px 1fr;
}

#lettingbar #sort div {
    text-align: center;
}

#lettingbar #sort div#sortlabels {
    text-align: left;
}

#sortlabels label {
    display: block;
    height: 34px;
    margin: 0;
    cursor: pointer;
}

#sortlabels label input {
    height: 25px;
}

#sortlabels label h6,
#sortlabels label span {
    font-size: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.fadedRow {
    background-color: #bbb;
    opacity: 0.3;
}

.slider {
    width: calc(100% - 20px);
    height: 8px;
    padding: 0;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    outline: none;
    background: #d3d3d3;
    -webkit-appearance: none;
    appearance: none;
}

.slider:hover {
    opacity: 0.7;
}

.slider::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    cursor: pointer;
    border-radius: 15px;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: #fff;
}

#lettingbar h6,
#lettingbar span {
    font-family: "PT Serif", serif;
    font-weight: bold;
}

#value {
    margin-left: 5px;
}

#sortform {
    display: contents;
}

#searchsub {
    overflow: hidden;
}

#searchsub,
#searchtab {
    text-align: center;
}

#searchsub input,
#searchtab a {
    display: block;
    width: 100%;
}

#searchsub input,
#searchtab a {
    font-family: "PT Serif", serif;
    font-weight: bold;
    margin: 0 auto;
    text-transform: uppercase;
    border: 3px solid #bbb;
}

#searchsub input:hover,
#searchtab a:hover {
    opacity: 0.6;
}

.hide {
    height: 0;
}

#searchtab a {
    margin-top: -1px;
}

#lettingbar,
#searchsub,
.hide {
    transition: height 1s ease-out;
}

.middle h4 {
    max-width: 800px;
    margin: auto;
}

.answerbox ol {
    margin: 0 60px;
}

.answerbox p {
    padding: 20px 60px;
}

.homediv {
    padding: 40px 20px;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
}

.homediv p {
    max-width: 600px;
    margin: 40px auto;
}

.pay h1 {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.pay {
    margin: 10vh auto;
    text-align: center;
}

input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox,
textarea {
    border-radius: 0;
    -webkit-appearance: none;
}

.propmodal {
    display: grid;
    grid-template-columns: 60% calc(40% - 40px);
    column-gap: 40px;
    height: calc(100vh - 300px);
}

.lefthalfbox .imgbox {
    width: 100%;
}

.lefthalfbox,
.lefthalfbox .imgbox,
.lefthalfbox .imgbox img,
.lefthalfbox .imgbox video {
    height: 327px;
}

.propmodal .imbox svg {
    height: 40px;
}

.righthalfbox {
    position: relative;
    display: inline-block;
    height: 327px;
    text-align: left;
}

.righthalfbox h3 {
    font-family: "PT Serif", serif;
    font-weight: normal;
    text-transform: capitalize;
}

.righthalfbox svg {
    margin: 0 0 -4px;
}

.righthalfbox #mapbox1,
.righthalfbox .mapbox2 {
    width: 100%;
    height: calc(100% - 105px);
}

.righthalfbox p {
    margin: 5px 0;
}

.bottomhalf {
    margin-top: 40px;
    text-align: justify;
    grid-column-start: 1;
    grid-column-end: 3;
}

.bottomhalf .enquire a {
    font-family: "PT Serif", serif;
    font-size: 16px;
    padding: 6px 50px;
    letter-spacing: 1px;
    border-radius: 6px;
}

.bottomhalf .enquire {
    margin-bottom: 40px;
    text-align: center;
}

#teamabouts h2 {
    font-size: 24px;
    margin: 50px 0;
    text-decoration: underline;
    letter-spacing: 3px;
}

#teamabouts a {
    color: var(--gold);
}

.emergencytable a {
    color: #d80000;
}

#christmasDiv {
    width: 100%;
    padding: 20px;
    background: #d80000 url("/images/site/misc/XmasBg.jpg") bottom;
    background-size: cover;
}

#christmasHrs {
    font-weight: bold;
    width: 100%;
    text-align: center;
    color: #fff;
}

#photoResults {
    border: 1px solid #000;
    overflow: hidden;
    padding: 25px;
    width: 100%;
    display: grid;
    grid-column-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.imgContainer {
    text-align: center;
}

.imgContainer a {
    color: #fff;
    background: #000;
    display: block;
    padding: 12px;
}

.imgContainer img {
    border: 1px solid #000;
    width: 100%;
}

#payBox,
#paymentBox {
    margin: 20px auto;
    background: #eee;
    max-width: 700px;
    width: 100%;
    display: inline-block;
    padding: 30px;
    border: 1px solid #000;
    text-align: right;
}

#payBox {
    text-align: center;
}

#paymentBox input {
    text-align: center;
    margin: 8px 0;
    width: 60%;
}

#paymentBox input[type="submit"] {
    text-transform: uppercase;
    margin-right: 4px;
}

#paymentBox label {
    width: 20%;
    margin-right: 10px;
}

#paymentBox #paySub {
    width: auto;
    margin: auto;
}

#paymentBox h4 {
    background: #fff;
    margin-bottom: 20px;
    text-align: left;
}

#payBox p {
    margin: 15px 30px 0;
}

#toggleSnow {
    position: fixed;
    bottom: 120px;
    right: 50px;
    padding: 10px;
    color: #FFF;
    border-radius: 5px;
    cursor: pointer;
}

#covidAlert {
    position: fixed;
    bottom: 0;
    width: 100vw;
    padding: 15px;
    background: rgba(221, 0, 0, 0.7);
    text-align: center;
    z-index: 100;
}

#covidAlert p {
    color: #fff;
    max-width: calc(100vw - 60px);
}

#covidAlert span {
    position: absolute;
    right: 10px;
    top: 5px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    font-family: "Arial Black";
}

#covidAlert a {
    color: #fff000;
    text-decoration: underline;
}

/* added footer margin and social buttons moved higher due to covid alert*/
/* footer {
    margin-bottom: 62px;
} */

#social {
    bottom: 70px;
}


/* ----- Pads ----- */
@media screen and (max-width: 1000px) and (min-height: 30px) {
    nav#topMenu {
        font-size: 14px;
        height: 81px;
    }

    .botmpropbox {
        position: relative;
    }

    .addbox {
        display: inline-block;
    }

    .headingBlock {
        height: 54px;
    }

    #topMenu li.active.a {
        font-size: 16px;
    }

    #topMenu ul {
        width: 520px;
        margin: 25px 20px 0 0;
    }

    #topMenu span,
    .homeMenu span {
        top: 55px;
        left: calc(100% - 540px);
    }

    #topMenu li:after {
        font-size: 30px;
    }

    #topMenu li a {
        padding: 2px;
    }

    #topMenu li.active a {
        font-size: 16px;
    }

    nav img {
        height: 60px;
        margin: 10px;
    }

    #homeBlock {
        top: 131px;
        height: 40px;
    }

    #homeBlock h1 {
        font-size: 20px;
    }

    .headingBlock h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .headingBlock.full {
        width: 100%;
        margin: 50px 0;
    }

    .mySlides p {
        font-size: 22px;
    }

    #crownFoot {
        top: -5px;
        left: -12px;
        height: 70px;
    }

    #footerMenu li {
        font-size: 16px;
        margin-right: 10px;
        margin-left: 10px;
    }

    #footerMenu li.active a {
        font-size: 18px;
    }

    #footerMenu li:nth-child(3) {
        margin-right: 75px;
    }

    #footerMenu li:nth-child(4) {
        margin-left: 75px;
    }

    .footerContainer h2 {
        font-size: 30px;
        margin-top: -36px;
    }

    .footerContainer img {
        height: 28px;
        margin: 20px 18px;
    }

    #emergency a {
        font-size: 16px;
        right: 23px;
        width: 116px;
        height: 32px;
        padding: 6px;
    }

    #social {
        left: 20px;
    }

    #social a {
        width: 30px;
        height: 30px;
        margin-right: 0;
    }

    #social img {
        width: 15px;
        height: 15px;
        margin: calc(50% - 7.5px);
    }

    #copyright {
        margin: 15px 0;
    }

    h4 {
        font-size: 15px;
    }

    #copyrightdash,
    #copyrightdash a {
        font-size: 10px;
    }

    .modal {
        top: 80px;
        padding-top: 70px;
    }

    .propmodal {
        grid-template-columns: 305.6px auto;
    }

    .lefthalfbox .imgbox,
    .lefthalfbox .imgbox img,
    .lefthalfbox .imgbox video {
        height: 203px;
    }

    .faqmid {
        max-width: 660px;
    }

    .questions::after {
        right: calc(50vw - 310px);
    }

    #lettingbar {
        grid-template-columns: 1fr 90px 170px 170px 170px 1fr;
    }

    #lettingbar div:first-of-type {
        grid-column-start: 3;
    }

    .slidercontainer {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    #lettingbar div:nth-of-type(4) {
        grid-column-start: 4;
        grid-column-end: 6;
    }

    #lettingbar div div:first-of-type {
        grid-column-start: 1;
    }

    #lettingbar #sort div {
        text-align: left;
    }

    .propertybox {
        width: 600px;
    }

    #propresult {
        margin: auto;
        padding: 40px 0;
    }

    #topBlock {
        height: 100px;
    }

    #topBlock h1 {
        font-size: 30px;
        top: 30px;
        left: unset;
    }

    #blockManagementOne p {
        position: relative;
        top: 0px;
        left: calc(50% - 300px);
        width: 600px;
        text-align: justify;
    }

    #blockImage {
        top: 316px;
        left: 30px;
        width: calc(100vw - 60px);
        height: auto;
    }

    .answerbox ol {
        font-size: 18px;
        margin: 0 60px;
    }

    .close {
        top: 10px;
        right: 40px;
    }

    .propmoda {
        height: calc(100vh - 220px);
    }

    #userh,
    .lefth {
        margin: 20px;
    }

    #photoResults,
    .career,
    .propresultbox,
    .usertable {
        width: 100%;
        margin: 20px 0;
    }

    .career td input,
    .career textarea {
        width: 100%;
    }

    .career td input[type="file"] {
        width: calc(100% - 50px);
    }

    .editpanel {
        margin: -20px 20px 10px;
        width: calc(100% - 40px);
    }

    .editpanel form {
        width: 100%;
    }

    input {
        font-size: 12px;
    }

    .previewrow td .deleteBtn {
        height: 25px;
    }

    #covidAlert p,
    #covidAlert span {
        font-size: 12px;
    }
}

/* ----- Mobile ----- */
@media only screen and (max-width: 700px) {
    #menuToggle:checked~#topMenu ul {
        width: 300px;
        transition: all 1s ease-out;
    }

    #menuToggle:checked~#topMenu ul li.active {
        background: rgba(255, 255, 255, 0.2);
    }

    #menuToggle:checked~#content {
        filter: blur(3px);
    }

    .answerbox ol {
        font-size: 14px;
        margin: 0 20px;
    }

    .menu-icon {
        visibility: visible;
        margin: 0;
    }

    .modal-content {
        width: 100%;
    }

    .propmoda {
        padding: 20px;
    }

    #blockManagementOne {
        padding-top: 310px;
    }

    #topMenu ul {
        position: absolute;
        top: 79px;
        right: 0;
        clear: both;
        overflow: hidden;
        width: 0;
        margin: 0 -301px 0 0;
        text-align: right;
        background: #000 url("../../images/site/footer/crownbg2.svg");
        background-size: 195px;
    }

    #topMenu ul li {
        display: block;
        margin: 0;
        list-style-type: none;
        background: rgba(0, 0, 0, 0.6);
    }

    #topMenu li:not(:last-child)::after {
        content: none;
    }

    #topMenu ul li a,
    #topMenu ul li.active a {
        font-weight: bold;
        display: block;
        width: 100%;
        padding: 20px;
        text-decoration: none;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    #topMenu ul li a:hover,
    #topMenu ul li.active a:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.2);
    }

    .headingBlock {
        width: 350px;
        height: 40px;
    }

    .headingBlock h1 {
        font-size: 20px;
    }

    #topMenu span {
        top: 34px;
        left: 130px;
    }

    #foottop {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 40px;
    }

    #crownFoot {
        margin: 55px auto;
    }

    #footerMenu {
        top: 20px;
        margin-right: 20px;
        text-align: left;
    }

    #footerMenu li:nth-child(4) {
        margin-left: 10px;
    }

    #footerMenu li:nth-child(3) {
        margin-right: 10px;
    }

    .footerContainer {
        max-width: 100%;
    }

    .develop h5 {
        font-size: 20px;
    }

    .footerContainer h2 {
        font-size: 12px;
        display: grid;
        margin-top: 10px;
        margin-bottom: 20px;
        grid-column-start: 1;
        grid-column-end: 3;
    }

    #footerMenu li {
        display: block;
    }

    .footerContainer img {
        height: 24px;
        margin: 15px 10px;
    }

    #emergency {
        position: relative;
    }

    #emergency a {
        position: relative;
        right: 0;
        bottom: 0;
        display: block;
        margin-bottom: 15px;
        margin-left: calc(50% - 58px);
    }

    #social a {
        display: block;
        margin-bottom: 8px;
    }

    #social {
        right: 20px;
        bottom: 224px;
        left: unset;
    }

    #homeBlock {
        top: 104px;
        width: 300px;
        height: 28px;
        padding: 2px 14px;
    }

    #homeBlock h1 {
        font-size: 16px;
    }

    .mySlides p {
        font-size: 12px;
        left: 20px;
    }

    .light span {
        border-color: #eee;
    }

    .menuStyle li,
    .menuStyle li a {
        color: #fff;
    }

    #callBanner {
        font-size: 10px;
    }

    body {
        min-width: 310px;
    }

    #topBlock {
        height: 100px;
    }

    #topBlock h1 {
        font-size: 20px;
        top: 21px;
        left: unset;
    }

    .crownSide {
        height: 200px;
    }

    #blockImage {
        left: 20px;
        width: calc(100vw - 40px);
    }

    #content .fullScreen {
        margin-top: -10px;
    }

    #blockManagementOne p {
        position: relative;
        top: -110px;
        left: unset;
        width: 100%;
        padding: 0 20px;
        text-align: justify;
    }

    #content.fullScreen {
        margin: 0;
    }

    .full {
        width: 100%;
        height: auto;
    }

    .develop {
        padding: 20px;
    }

    .middle h3,
    .middle ul {
        margin-left: 20px;
    }

    #maintext1,
    #maintext2 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 20px;
    }

    .develop img {
        width: 100%;
        height: auto;
    }

    .develop {
        padding: 0;
    }

    .develop p {
        padding: 20px;
    }

    .develop h5 {
        margin-left: 20px;
    }

    #contactForm {
        padding: 0 20px;
    }

    #contactForm input,
    #contactForm textarea {
        width: 100%;
    }

    #contactForm input[type="radio"] label {
        margin-right: 5px;
    }

    #contactForm input[type="radio"] {
        margin: 0 10px 0 0;
    }

    #mail {
        top: -5px;
    }

    #mail p {
        font-size: 12px;
        top: -15px;
    }

    #mail svg {
        width: 20px;
    }

    #teamabouts .left {
        position: relative;
    }

    #address {
        font-size: 12px;
    }

    .middle.crown img {
        margin-bottom: 55px;
    }

    .middle .crown {
        margin-bottom: 55px;
    }

    .headingBlock.full {
        margin: 80px 0;
    }

    #abouttext p {
        padding: 20px;
    }

    .careerbox {
        width: 100%;
        margin: 60px 0;
        padding: 30px;
    }

    .careerbox h3,
    .crownmid h3 {
        margin-left: 0;
    }

    .crownmid,
    .faqmid {
        max-width: 100%;
        padding: 20px;
    }

    .crownmid p {
        text-align: justify;
    }

    .questions::after {
        font-size: 30px;
        line-height: 18px;
        right: 40px;
    }

    .questions span {
        font-size: 16px;
    }

    .questions {
        margin-top: 10px;
        padding: 10px 40px 10px 20px;
    }

    .answerbox p {
        font-size: 15px;
        padding: 20px;
        text-align: justify;
    }

    .emergencytable {
        width: calc(100% - 2px);
    }

    .emergencytable tr td:first-of-type {
        width: 50%;
    }

    #emergencytop {
        margin: 30px 0;
    }

    .propertybox {
        min-width: 450px;
        max-width: 100%;
        margin: 15px 0;
    }

    .moreinfo a {
        font-size: 12px;
    }

    .propertybox h3 {
        font-size: 15px;
    }

    .moreinfo {
        float: left;
        width: 100%;
        margin-top: 6px;
    }

    .moreinfo a {
        width: 100%;
        margin-top: 3px;
    }

    .botmpropbox br {
        display: none;
    }

    .botmpropbox h5:nth-of-type(2) {
        margin-bottom: -11px;
    }

    #lettingbar {
        grid-template-columns: 1fr;
    }

    #lettingbar div:first-of-type,
    #lettingbar div:nth-of-type(2),
    #lettingbar div:nth-of-type(4),
    .slidercontainer {
        grid-column-start: 1;
        grid-column-end: 6;
    }

    .headingBlock {
        width: 100%;
    }

    .propertybox {
        width: calc(100% - 6px);
        min-width: calc(100% - 6px);
        height: auto;
        margin: 10px 3px;
        padding: 20px 0;
    }

    .detailbox,
    .imgbox {
        display: block;
        float: none;
        width: 100%;
        margin: 10px 0 0;
    }

    .detailbox {
        padding: 20px;
    }

    .imgbox,
    .imgbox img,
    .imgbox video {
        height: 190px;
    }

    .left h1 {
        float: none;
        text-align: center;
    }

    .middle {
        margin: 30px auto;
    }

    #loginform input {
        width: 100%;
        max-width: 350px;
    }

    #loginform {
        width: 100%;
    }

    .password {
        font-size: 12px;
        display: block;
        text-align: center;
    }

    .inputBox {
        width: 100%;
    }

    .modal {
        padding-top: 60px;
    }

    .close {
        top: 0;
        right: 10px;
    }

    .lefthalfbox,
    .righthalfbox {
        margin-bottom: 20px;
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .righthalfbox p {
        margin: 20px 0;
    }

    .bottomhalf p {
        padding: 20px 10px;
        border: 1px dashed #ccc;
    }

    .develop ul {
        max-width: calc(100% - 40px);
        padding: 0;
    }

    #question {
        padding: 20px;
    }

    #question p {
        font-size: 18px;
    }

    #question #button a {
        margin: 15px auto;
    }

    #teamabouts {
        width: 100%;
        max-width: 100%;
        margin: 0 0 80px;
        padding: 0 20px;
    }

    #teamabouts h2 {
        font-size: 18px;
    }

    #teamabouts h3 {
        font-size: 16px;
    }

    .career tbody {
        width: 100%;
    }

    .career tr td,
    .career tr td:first-of-type,
    .career tr td:nth-of-type(2) {
        display: block;
        border: none;
        width: 100%;
        text-align: center;
        padding: 3px 0;
    }

    #addcareer td label,
    #addcareer tr td #furnishedlabel,
    #addcareer tr td #unfurnishedlabel,
    #admin,
    #furnished,
    #photoadd,
    #registerform td label,
    #registerform tr td #adminLabel,
    #registerform tr td #userLabel,
    #unfurnished,
    #user {
        margin: 0;
    }

    #addaproperty {
        width: calc(100% - 20px);
        margin: 40px 10px;
    }

    .career tr {
        min-height: 0;
        display: block;
        margin-bottom: 10px;
    }

    #addcareer select {
        width: 100%;
    }

    .previewrow {
        border: none;
        height: auto;
        padding: 0;
    }

    .career td input[type="checkbox"] {
        width: auto;
        margin: auto;
    }

    #registerform input {
        min-width: 0;
    }

    .lefthalfbox {
        height: auto;
    }

    #paybox p {
        text-align: justify;
        margin: 15px 0;
    }

    #paymentBox {
        padding: 20px 10px;
    }

    #paymentBox input,
    #paymentBox label {
        width: 100%;
        display: inline-block;
    }

    #paymentBox label {
        text-align: left;
    }

    #toggleSnow {
        bottom: 10px;
        right: 10px;
    }

    /* space for covid alert */
    footer {
        margin-bottom: 75px;
    }
}