:root {
  --main: #2E294E;
  --main-fade: #6157a1;
  --sub: #0094CA;
  --grey: #d6d4d4;
  --green: #009111;
  --red: #ab0000;
  --dark-grey: #343434;
  --mid-grey: #969696;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

input {
  font-family: "Poppins";
  font-size: 14px;
}

select {
  font-family: "Poppins";
  font-size: 14px;
}

textarea {
  font-family: "Poppins";
  font-size: 14px;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--main) #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 5px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 5px;
    border: 3px solid #ffffff;
  }


#nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 100vh;
  background:
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(1*17px) calc(3*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(2*17px) calc(1*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(3*17px) calc(4*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(4*17px) calc(2*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) 0 calc(4*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(1*17px) calc(2*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(2*17px) 0,
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(3*17px) calc(3*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(4*17px) calc(1*17px),
        #000000;
  background-size: 85px 85px;
  color: white;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  z-index: 3;
}

#nav .services .navNav {
  height: 50px;
  line-height: 50px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  font-weight: 300;
}
#nav .services .navNav:hover {
  margin-left: 30px;
  margin-right: 10px;
  transition: 0.5s;
}
#nav .services .navNav img {
  height: 30px;
  margin-top: 10px;
  float: left;
  margin-right: 10px;
}
#nav .account {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  margin: 20px;
}
#nav .account .avatar {
  height: 50px;
  width: 50px;
  background: blue;
  border-radius: 50%;
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.inputContainer .image {
  width: 100%;
  border-radius: 20px;
  border: dotted 2px var(--main);
}
.userAvatarList {
  height: 30px;
  width: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  margin-top: 10px;
}
#nav .account .userDetails {
  width: calc(100% - 60px);
  float: right;
  line-height: 1.1;
}
#nav .account .userDetails .userName {
  font-size: 14px;
  font-weight: bold;
}
#nav .account .userDetails .userOptions {
  font-size: 12px;
}
#nav .account .userDetails .userOptions a {
  color: white;
  font-weight: 300;
}
#nav .services {
  height: calc(100vh - 70px);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
#nav .services a {
  color: white;
  text-decoration: none;
}
#navOverlay {
  background: var(--main);
  opacity: 0.99;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

#options {
  position: fixed;
  left: 200px;
  top: 0;
  width: 160px;
  padding: 20px;
  background: var(--grey);;
  height: 100vh;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#content {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  width: calc(100% - 400px);
}
.listHeader {
  display: grid;
  gap: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  background: var(--main);
  color: white;
  line-height: 50px;
  font-weight: bold;
  z-index: 2;
}
.listBody {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-top: 50px;
}
.listRow {
  display: grid;
  gap: 10px;
}
.listRow:hover {
  background: var(--grey) !important;
  transition: 0.25s;
}
.listHeaderSection {
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
.listRowSection {
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}
#modal {
  position: fixed;
  right: -100%;
  top: 0;
  width: calc(50% - 200px);
  height: 100vh;
  background: white;
  z-index: 5;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#submodal {
  position: fixed;
  right: -100%;
  top: 0;
  width: calc(50% - 200px);
  height: 100vh;
  background: white;
  z-index: 4;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#modalBg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--main);
  z-index: 3;
  opacity: 0.9;
  display: none;
}
.modalHeader {
  height: 50px;
  line-height: 50px;
  background: var(--main);
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.modalHeader button {
  float: right;
  height: 30px;
  background: white;
  border: none;
  color: var(--main);
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
#modalInner {
  height: calc(100vh - 90px);
  padding: 20px;
  overflow-y: scroll;
}
.inputContainer {
  margin-bottom: 20px;
}
.inputContainer a {
  color: inherit;
}
.inputContainer .title {
  font-weight: bold;
}
.inputContainer .input {
  width: 100%;
  padding: 0px;
  height: 30px;
  background: none;
  border: none;
  border-bottom: dotted 1px grey;
  line-height: 30px;
  margin-top: 5px;
  font-weight: 300;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.halfWidth {
  width: calc(50% - 10px);
}
.left {
  float: left;
}
.right {
  float: right;
}
input:focus {
  outline: none;
}
select:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
.menuGroup {
  border: solid 1px var(--main);
  border-radius: 10px;
  overflow: auto;
  margin-bottom: 20px;
}
.menuGroup:last-child {
  margin-bottom: 0px;
}
.menuGroupTitle {
  background: var(--main);
  color: white;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  color: white;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
}
.menuGroupInner {
  padding: 20px;
  overflow: auto;
  padding-bottom: 10px;
}
.mainButton {
  width: 100%;
  height: 30px;
  background: var(--main);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.mainButton:last-child {
  margin-bottom: 0px;
}
.dataGroup {
  margin: 20px;
  border: dotted 1px var(--main);
  padding: 20px;
}
.dataGroup .dataTitle {
  font-weight: bold;
  font-size: 20px;
  color: var(--main);
}
.dataGroup .dataGroupRow {
  height: 30px;
  line-height: 30px;
  cursor: move;
  padding-left: 10px;
  padding-right: 10px;
  overflow: auto;
}
.dataGroup .dataGroupRow:hover {
  background: var(--grey);
}
button {
  font-family: "Poppins", sans-serif;
}
.optionBox {
  border: dotted 1px var(--main);
  background: white;
  padding: 10px;
}
.smallInput {
  height: 30px;
  border: none;
  font-family: "Poppins", sans-serif;
  border-bottom: dotted 1px grey;
  font-size: 16px;
  width: 100%;
}
.smallIcon {
  height: 20px;
  margin-top: 5px;
  cursor: pointer;
}
#notification {
  position: fixed;
  left: 500px;
  top: -100px;
  background: white;
  z-index: 1000;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  color: var(--main);
  line-height: 50px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: bold;
}
.inputContainer .subtitle {
  color: grey;
  font-size: 14px;
  font-style: oblique;
  margin-left: 10px;
}
.divider {
  height: 30px;
  clear: both;
}
#nav .services .logo {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.toggleYes {
  height: 30px;
  cursor: pointer;
  background: var(--green);
  color: white;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
  border-radius: 10px;
  margin-top: 10px;
}
.toggleNo {
  height: 30px;
  cursor: pointer;
  background: var(--red);
  color: white;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
  border-radius: 10px;
  margin-top: 10px;
}
.searchInput {
  height: 40px;
  background: none;
  border: none;
  border-bottom: solid 1px black;
  width: 100%;
}
.parkPropertyForSale {
  cursor: pointer;
  margin-bottom: 20px;
  overflow: auto;
}
.parkPropertyForSale:last-child {
  margin-bottom: 10px;
}
.parkPropertyForSale .ppfsImage {
  height: 100px;
  width: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  margin-right: 20px;
  border-radius: 10px;
  display: relative;
}
.parkPropertyForSale .ppfsDetails .ppfsAddress {
  color: var(--main);
  font-size: 18px;
  font-weight: bold;
}
.parkPropertyForSale .ppfsDetails .ppfsPrice {
  color: var(--dark-grey);
  font-style: oblique;
}
.parkPropertyForSale .ppfsDetails .ppfsType {
  color: var(--mid-grey);
}
.noData {
  color: var(--red);
  font-size: 20px;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 10px;
}
.login {
  padding: 0;
  margin: 0;
  background:
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(1*17px) calc(3*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(2*17px) calc(1*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(3*17px) calc(4*17px),
        conic-gradient(at 10% 50%,#0000 75%,#ffffff 0) calc(4*17px) calc(2*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) 0 calc(4*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(1*17px) calc(2*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(2*17px) 0,
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(3*17px) calc(3*17px),
        conic-gradient(at 50% 10%,#0000 75%,#ffffff 0) calc(4*17px) calc(1*17px),
        #000000;
  background-size: 85px 85px;
}
.loginOverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--main);
  opacity: 0.98;
  z-index: 1;
}
.loginBox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  color: white;
  text-align: center;
}
.loginInput {
  height: 40px;
  background: white;
  border: none;
  border-radius: 5px;
  width: 400px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--main);
}
.loginButton {
  height: 40px;
  background: white;
  border: none;
  border-radius: 5px;
  width: 400px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--main);
  font-weight: bold;
  cursor: pointer;
}
.loginLogo {
  width: 400px;

  margin: 0 auto;
  margin-bottom: 50px;
}
.loginLogo img {
  width: 50%;
}
.propertyMedia {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  width: 100%;
  gap: 20px;
  margin-bottom: 20px;
}
.propertyMedia .propertyMediaInd {
  width: calc(100% - 10px);
  border: solid 5px white;
}
.propertyMediaIndFeatured {
  border: solid 5px var(--main) !important;
}
.propertyMediaIndWatermark {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  background: var(--main);
  color: white;
  opacity: 0.5;
  cursor: pointer;

}
.parkLogo {
  width: 80%;
  margin: 0 auto;
  cursor: pointer;
}
#watermarkFrame {
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.campaignEmails {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3,1fr);
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
}
.campaignEmails .campaignEmail {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
}
.campaignEmails .campaignDraft {
  background: var(--grey);
  color: #343434;
}
.campaignEmails .campaignSending {
  background: var(--sub);
  color: white;
}
.campaignEmails .campaignSent {
  background: var(--main);
  color: white;
}
.campaignEmails .campaignEmail .emailName {
  font-weight: bold;
  font-size: 16px;
}
.emailEditor {
  padding: 0;
  margin: 0;
  background: var(--grey);
}
.emailEditor #emailOptions {
  height: calc(100vh - 100px);
  position: fixed;
  left: -100vw;
  top: 50px;
  width: 300px;
  background: white;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  overflow-y: hidden;
}
.emailEditor #emailRender {
  height: calc(100vh - 100px);
  position: fixed;
  right: -100vw;
  top: 50px;
  width: calc(100% - 425px);
  background: white;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  overflow-y: scroll;
  overflow-x: hidden;
}
.noModules {
  text-align: center;
  padding: 20px;
  color: grey;
  font-size: 20px;
}
.emailEditor #emailNav {
  position: fixed;
  left: 0;
  top: 0;
  width: 75px;
  height: 100vh;
  background: var(--main);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  z-index: 100;
}
#emailNavInd {
  height: 50px;
  color: white;
  text-align: center;
  font-size: 12px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 5px;
}
#emailNavInd:hover {
  background: var(--main-fade);
  transition: 0.5s;
}
#emailNavInd img {
  width: 40px;
  margin-top: 5px;
}
.emailOptionsTitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 20px;
  float: left;
}
.emailOptionsModule {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.emailOptionsModule:hover {
  background: var(--grey);
  transition: 0.5s;
  padding-left: 20px;

}
.emailOptionsModule .moduleName {
  font-weight: bold;
}
.emailOptionsModule .moduleType {
  margin-left: 10px;
  font-style: oblique;
}
.noteContainer {
  margin-bottom: 20px;

  margin-top: 10px;
  width: 100%;
}
.noteContainer:last-child {
  margin-bottom: 10px;
}
.noteContainer .noteDate {
  font-family: "Poppins", sans-serif;
  border: none;
  border-bottom: dotted 1px black;
  width: 100px;
  float: left;
  margin-right: 10px;
  background: none;
}
.noteContainer .noteOptions {
  float: right;
  width: 55px;
}
.noteText {
  float: left;
  width: calc(100% - 200px);
  font-family: "Poppins", sans-serif;
  background: none;
}
.noteText:focus {
  outline: none;
}
.costContainer {
  overflow: auto;
  padding: 10px;
}
.costDate {
  font-family: "Poppins", sans-serif;
  border: none;
  border-bottom: dotted 1px black;
  width: 100px;
  float: left;
  margin-right: 10px;
  background: none;
}
.costDescription {
  width: calc(100% - 210px);
  float: left;
  margin-right: 10px;
  background: none;
}
.costDescription:focus {
  outline: none;
}
.costValue {
  font-family: "Poppins", sans-serif;
  border: none;
  border-bottom: dotted 1px black;
  width: 75px;
  float: left;
  margin-right: 10px;
  text-align: right;
  background: none;
}
.reportContainer {
  padding: 20px;
  display: grid;
  gap: 20px;
}
 .reportTopThird {
  height: calc(100vh - 45px);
  border: solid 1px var(--main);
  border-radius: 10px;
  overflow: hidden;
}
 .reportHalfThird {
  height: calc((100vh - 65px) / 2);
  border: solid 1px var(--main);
  border-radius: 10px;
  overflow: hidden;
}
.reportHeader {
  height: 50px;
  background: var(--main);
  line-height: 50px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.reportBody {
  overflow-y: scroll;
  width: 100%;
}
.scrollBox {
  height: 200px;
  border: solid 1px var(--main);
  overflow-y: scroll;
}
.reportInput {
  background: none;
  color: white;
  height: 40px;
  margin-top: 5px;
  border: none;
  font-size: 16px;
  font-family: 'Poppins';
  width: 120px;
  color-scheme: dark;
}
#reportBody {
  height: calc(100vh - 50px);
  overflow: hidden;
  display: none;
  width: 100%;
}
.opPark {
  margin-top: 10px;
  background: #eaeaea;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}
.opPark:first-child {
  margin-top: 0px;
}
.opProperty {
  padding: 5px;
  margin-left: 20px;
  cursor: pointer;
}
.greenMini {
  background: var(--green);
  color: white;
  height: 30px;
  line-height: 30px;
  float: right;
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
  border-radius: 10px;
}
.redMini {
  background: var(--red);
  color: white;
  height: 30px;
  line-height: 30px;
  float: right;
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
  border-radius: 10px;
}
.monthlyBreakdown {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  margin-top: 10px;
  gap: 20px;
}
.modalIcon {
  height: 30px;
  float: right;
  margin-top: 10px;
  cursor: pointer;
}
#mergeCheck {
  background: var(--red);
  color: white;
  height: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  line-height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: auto;
  display: none;
}
.myLeadsInnerTable {
  width: 100%;
  border-collapse: collapse;
}
.myLeadsInnerTable thead {
  background: var(--main);
  color: white;
  height: 50px;
  font-weight: bold;
  text-transform: uppercase;
}
.myLeadsInnerContainer {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.myLeadsInnerTable tbody tr {

  cursor: pointer;
}
.tableInput {
  width: 100%;
  border: dotted 1px var(--grey);
}

.ppfsFloorplan {
  width: 20px;
  height: 20px;
  background: var(--main);
  color: white;
  opacity: 0.5;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  float: right;
  margin-right: 5px;
  margin-top: 5px;
}
.errorBox {
  background: var(--red);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.html {
  background: black;
  color: white;
  width: calc(100% - 20px);
  height: 400px;
  padding: 10px;
  font-size: 12px;
}
.newEmailModule {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background: var(--main);
  text-align: center;
  color: var(--main);
  opacity: .5;
  color: white;
  cursor: pointer;
  width: 100%;
}
.newEmailModuleContainer {
  display: none;
}
.newModuleButton {
  float: right;
  height: 30px;
  width: 30px;
  background: var(--main);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
#emailRecipients {
  height: 300px;
  overflow-y: scroll;
  border: dotted 1px grey;
  margin-top: 10px;
}
#emailRecipientsTable {
  width: 100%;
}
#emailRecipientsTable tr:hover {
  background: var(--red);
  color: white;
  transition: 0.5s;
}
.servicesScroll {
  overflow-y: scroll;
  height: calc(100vh - 220px);
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
  padding-bottom: 10px;
}
.servicesScroll::-webkit-scrollbar {
  display: none;
}
.propertyFileIcon {
  height: 30px;
  margin: 10px;
  float: left;
}
.propertyFileLine {
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}
.WeekPerf {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  gap: 20px;
}
.WeekPerfSection {
  background: #eaeaea;
  text-align: center;
  padding: 20px;
  color: grey;
  font-size: 20px;
  font-weight: bold;
}
.wpsLeads {
  font-weight: bold;
  font-size: 80px;
  color: var(--main);
  margin-top: -20px;
}
.wpsVisits {
  font-weight: bold;
  font-size: 50px;
  color: var(--main);
  margin-top: -20px;
}
.sectionTitle {
  background: #eaeaea;
  padding: 20px;
  margin-bottom: 20px;
  color: var(--main);
  font-weight: bold;
  font-size: 20px;
}
.wpsGraph {
  display: grid;
  grid-template-columns: repeat(240, 1fr);
  gap: 1px;
}
.fixedTable {
  width: 100%;
  border-collapse: collapse;
}
.fixedTable thead {
  background: var(--main);
  color: white;
  font-weight: bold;
}
.fixedTable tr {
  cursor: pointer;
}
.fixedTable tbody tr:hover {
  background: #eaeaea;
}
.weContainer {
  padding: 10px;
  color: #343434;
  background: #eaeaea;
  margin-bottom: 10px;
}
.weContainer:last-child {
  margin-bottom: 0px;
}

.commsRow {
  cursor: pointer;
  padding: 10px;
  overflow: auto;
}
.commsRow:hover {
  background: #eaeaea;
}
.reportCheckbox {
  height: 30px;
  width: 30px;
  border: solid 2px var(--main);
  border-radius: 5px;
  background: #eaeaea;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: var(--main);
  cursor: pointer;
}
.snippetContainer {
  background: #eaeaea;
  padding: 10px;
}
.parkAmenityContainer {
  background: var(--grey);
  padding: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
  padding-bottom: 20px;
  border-radius: 20px;
  border: solid 1px grey;
}
.parkAmenityContainer:last-child {

}
.parkPropertyBreakdown {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  text-align: center;
  margin-top: -10px;
}
.ppbInner .ppbTitle {
  color: var(--main);
  font-weight: bold;
  font-size: 15px;
}
.ppbInner .ppbNumber {
  font-size: 40px;
  font-weight: bold;
  opacity: 0.5;
}
.ppbInner {
  border-radius: 10px;
  padding-top: 10px;
}
.ppbInner:hover {
  background: #eaeaea;
  cursor: pointer;
  transition: 0.5s;
}
.ppbActive {
  background: var(--main);
  color: white !important;
  border-radius: 10px;
  padding-top: 10px;
  cursor: pointer;
}
.ppbActive .ppbTitle {
  color: white;
  font-weight: bold;
  font-size: 15px;
}
.ppbActive .ppbNumber {
  font-size: 40px;
  font-weight: bold;
  opacity: 0.5;
}
#parkPropertyBreakdown {
  min-height: 30px;
  margin-top: 20px;
}
.reportBox {
  background: #eaeaea;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.reportBoxText {
  font-size: 20px;
  font-weight: bold;
  opacity: 0.5;
  font-weight: bold;
}
.reportBoxNumber {
  font-weight: bold;
  color: var(--main);
  font-size: 40px;
}
.reportGrid {
  display: grid;
  gap: 20px;
}
.reportGridInner {
  background: #eaeaea;
  padding: 20px;
  text-align: center;
}
.reportGridInnerText {
  font-weight: bold;
  opacity: 0.5;
  font-size: 20px;
}
.reportGridInnerNumber {
  font-weight: bold;
  color: var(--main);
  font-size: 50px;
}
.myLeadsRow {
  height: calc(50vh - 55px);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}
.myLeadsBox {
  border: solid 2px var(--main);
  border-radius: 10px;
  overflow: hidden;
}
.whiteButton {
  background: white;
  color: var(--main);
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  height: 20px;
}
