/* VARIABLES */
:root {
  --cell-background: rgb(242, 238, 237);
  --background-dark: rgb(26, 29, 36);
  --background-clicked: rgb(229, 229, 229);

  --heading-dark: rgb(161, 169, 177);
  --heading-dark-hover: rgb(98, 101, 104);

  --font-light: #fff;
  --font-dark: rgb(51, 51, 51);
  --anchor-hover: rgb(197, 197, 197);

  --text-box-height: 85px;
  --cell-height: 230px;
}

/* TEMP FIX FOR SUSTAINABILITY PAGE LAYOUT */
#efforts-area {
  width: 85%;
  max-width: 1180px;
  padding: 2%;
  padding-top: 0;
}
#sustainable-overlay,
#efforts-links,
#sustain-banner-section,
#act-sustainably-area,
#efforts-area > h3 {
  display: none;
}

#sustainability-banner {
  max-height: 400px;
}

#header-banner + .row {
  background-color: rgb(242, 238, 237);
}

#sustainability-banner img {
  margin: 0 !important;
}
/* GRID SYSTEM */
.mbt-container {
  box-sizing: border-box;
  display: block;
  /* overflow: hidden; */
}
.mbt-row {
  /* margin-right: -15px;
  margin-left: -15px; */
  box-sizing: border-box;
  display: block;
}
.no-gutter .mbt-row {
  margin-right: 0;
  margin-left: 0;
}
.mbt-col-1,
.mbt-col-2,
.mbt-col-2_4,
.mbt-col-3,
.mbt-col-4,
.mbt-col-5,
.mbt-col-6,
.mbt-col-7,
.mbt-col-8,
.mbt-col-9,
.mbt-col-10,
.mbt-col-11,
.mbt-col-12 {
  position: relative;
  width: 100%;
  /* max-width: 300px; */
  min-height: 1px;
  padding-right: 0.5px;
  padding-left: 0.5px;
  box-sizing: border-box;
  display: block;
}
.no-gutter .mbt-col-1,
.no-gutter .mbt-col-2,
.no-gutter .mbt-col-2_4,
.no-gutter .mbt-col-3,
.no-gutter .mbt-col-4,
.no-gutter .mbt-col-5,
.no-gutter .mbt-col-6,
.no-gutter .mbt-col-7,
.no-gutter .mbt-col-8,
.no-gutter .mbt-col-9,
.no-gutter .mbt-col-10,
.no-gutter .mbt-col-11,
.no-gutter .mbt-col-12 {
  padding-right: 0;
  padding-left: 0;
}
.mbt-container:before,
.mbt-container:after,
.mbt-row:before,
.mbt-row:after {
  display: table;
  content: " ";
}
.mbt-container:after,
.mbt-row:after {
  clear: both;
}
/* FIX FOR BOOTSTRAP - 750PX WIDTH CONTAINER */
@media (max-width: 767px) {
  .shufflegrid {
    max-width: 749px;
  }
}
/* PAGE LIST ITEMS */
div.ccm-block-page-list-mbt-thumbnail-grid-wrapper
  div.ccm-block-page-list-page-entry-mbt-grid-item {
  margin-bottom: 0;
  overflow: hidden;
}
.no-gutter
  div.ccm-block-page-list-mbt-thumbnail-grid-wrapper
  div.ccm-block-page-list-page-entry-mbt-grid-item {
  margin-bottom: 0px;
}
.ccm-block-page-list-page-entry-mbt-grid-thumbnail {
  min-height: 230px;
  min-height: var(--cell-height);
}
.ccm-block-page-list-page-entry-mbt-grid-thumbnail img {
  box-shadow: 1px 1px 2px 0 #d0d0d0;
  -webkit-box-shadow: 1px 1px 2px 0 #d0d0d0;
  -moz-box-shadow: 1px 1px 2px 0 #d0d0d0;
  -o-box-shadow: 1px 1px 2px 0 #d0d0d0;
  width: 100%;
  height: 230px;
  height: var(--cell-height);

  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ccm-block-page-list-page-entry-mbt-grid-thumbnail a {
  display: block;

  width: 100%;
  /* lewis */
  height: 230px;
  height: var(--cell-height);
  /* lewis */
  /* padding-bottom: 56.25%; */
  overflow: hidden;
  position: relative;
}
.ccm-block-page-list-page-entry-mbt-grid-placeholder-img {
  background: #666;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
div.ccm-block-page-list-page-entry-mbt-grid-thumbnail-hover {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% + 85px);
  height: calc(100% + var(--text-box-height));
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
div.ccm-block-page-list-page-entry-mbt-grid-thumbnail
  a:hover
  div.ccm-block-page-list-page-entry-mbt-grid-thumbnail-hover {
  opacity: 1;
}
div.ccm-block-page-list-page-entry-mbt-grid-thumbnail a:hover img {
  transform: scale(1.2);
}
div.ccm-block-page-list-page-entry-mbt-grid-thumbnail-title-wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
/* div.ccm-block-page-list-page-entry-mbt-grid-thumbnail-title {
    display: table-cell;
    width: 100%;
    text-align: center;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    padding: 10px;
} */
div.ccm-block-page-list-page-entry-mbt-grid-title h3 {
  color: #fff;
}
div.ccm-block-page-list-page-entry-mbt-grid-read-more {
  margin-top: 10px;
  text-decoration: underline;
}
/* New Sustainability */
.text-box {
  height: 85px;
  height: var(--text-box-height);
  padding: 15px 10px 5px 0;

  /* display: flex;
    flex-direction: row;
    justify-content: space-between; */

  position: relative;

  background-color: rgb(26, 29, 36);
  background-color: var(--background-dark);
}
.text-box h3 {
  margin: 0;

  font-size: 1.2rem;
  line-height: 1.1;
  color: #fff;
  color: var(--font-light);
}
.text-box h3.subject {
  display: inline-block;

  width: 30%;
  margin-top: 5px;

  font-weight: 300;
  text-align: left;
}
.text-box h3.scoreValue {
  display: inline-block;

  width: 60%;
  padding-right: 20px;

  font-size: 28px;
  text-align: right;
  text-transform: uppercase;
}
.text-box a.dropdown-anchor {
  position: absolute;
  top: 35px;
  right: 8px;
  width: 10px;
  max-height: 10px !important;

  font-size: 1rem;
  color: #fff;
  color: var(--font-light);
}
.text-box {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  color: var(--font-light);
}
.text-box h1,
h2,
h3,
h4,
a,
p,
ul,
li {
  margin: 0;
  padding: 0;
}
.text-box h1,
h2,
h3,
h4 {
  font-weight: 300;
  line-height: 1.2;
  text-transform: capitalize;
}
.text-box p,
li p,
li a,
li span {
  color: rgb(51, 51, 51);
  color: var(--font-dark);
}
.text-box a {
  color: #fff;
  color: var(--font-light);
}
.text-box a:hover,
.text-box a:focus {
  color: rgb(197, 197, 197);
  color: var(--anchor-hover);
  text-decoration: none;
}
/* DROPDOWN STYLES */
.well {
  min-height: 230px;
  min-height: var(--cell-height);
  width: 100%;

  position: relative;

  padding: 10px 15px 20px;
  border: none;
  border-radius: 0;

  box-shadow: none;

  background-color: rgb(242, 238, 237);
  background-color: var(--cell-background);
}
.well h3 {
  padding: 10px 0 20px;
  border-bottom: 0.8px solid rgb(161, 169, 177);
  border-bottom: 0.8px solid var(--heading-dark);

  color: rgb(51, 51, 51);
  color: var(--font-dark);
  font-weight: 500;
  text-transform: uppercase;
}
.well p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 300;
  /* padding: 5px 20px; */
}
.well p,
.well ul {
  margin-top: 15px;
}
.well li {
  margin: 15px 0;
  margin-left: 15px;
  padding-left: 10px;

  color: rgb(51, 51, 51);
  color: var(--font-dark);
  font-size: 16px;
  font-weight: 300;
}
.well a,
.text-box a {
  text-decoration: none;
}
.well li:hover,
.well li:focus,
.well li:hover a,
.well li:focus a {
  font-weight: 500;
  color: rgb(51, 51, 51);
  color: var(--font-dark);
}
.well button.close-button {
  padding: 0;
  border: none;
  height: 35px !important;
  width: 35px !important;

  position: absolute;
  top: 20px;
  right: 20px;

  font-size: 10rem;
  font-weight: 100;
  line-height: 0.6;
  background-color: transparent !important;
  color: rgb(161, 169, 177);
  color: var(--heading-dark);

  outline: 0;
}
.well button.close-button::before {
  display: block;
  content: "";

  height: 35px !important;
  width: 35px !important;

  background: url(./assets/close.svg) center no-repeat;
}
.well button.close-button:hover,
.well button.close-button:focus {
  color: rgb(51, 51, 51) !important;
  color: var(--font-dark) !important;
}
/* CLICKED CELL ARROW & HIGHLIGHTING STYLES */
.arrow-row {
  display: none;
}
.arrow-down::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e5e5e5;
  margin: 0 auto;
}
.clicked-box {
  background-color: #e5e5e5;
}
.clicked-box h3,
.clicked-box a.dropdown-anchor {
  color: rgb(51, 51, 51);
  color: var(--font-dark);
}
/* MOBILE DROPDOWN MODAL STYLES */
.show-modal {
  display: none;
}
.visible-modal {
  height: 100vh;
  width: 100vw;
  margin-right: 0;
  margin-left: 0;

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

  z-index: 2000;

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

  overflow-y: scroll;

  background-color: rgba(26, 29, 36, 0.85);
}
.visible-modal .well {
  padding: 40px 10px 10px 25px;
  max-height: 850px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
/* HEADING STYLES */
.block-header {
  padding: 40px 0 20px 0;

  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;

  background-color: rgb(242, 238, 237);
  background-color: var(--cell-background);
  background-repeat: no-repeat;
}
.block-header h2 {
  margin: 0;
  padding: 0 10px;

  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.block-header p {
  width: 100%;
  padding: 10px 10px;

  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.block-header h2,
.block-header p {
  color: rgb(51, 51, 51);
  color: var(--font-dark);
}
.block-header .bottom-heading::after {
  content: "";
  display: block;

  margin: 20px 0 15px;
  border-bottom: 0.8px solid rgb(161, 169, 177);
  border-bottom: 0.8px solid var(--heading-dark);
}
img.logo {
  display: block;

  width: 50% !important;
  margin: 0 auto 15px;
}
#property-dropdown {
  position: absolute;
  top: 55px;
  left: 10px;

  color: #fff;
  color: var(--font-light);
  background-color: rgb(26, 29, 36);
  background-color: var(--background-dark);
  border: 1px solid #fff;
  border: 1px solid var(--font-light);
  border-radius: 2px;
  font-size: 14px;
}
/* MEDIA QUERIES */
@media (min-width: 360px) {
  #efforts-area {
    padding: 5%;
    padding-top: 0;
  }
}
@media (min-width: 450px) {
  #efforts-area {
    padding: 15%;
    padding-top: 0;
  }
}
@media (min-width: 599px) {
  #efforts-area {
    padding: 5%;
    padding-top: 0;
  }
  .mbt-col-1,
  .mbt-col-2,
  .mbt-col-2_4,
  .mbt-col-3,
  .mbt-col-4,
  .mbt-col-5,
  .mbt-col-6,
  .mbt-col-7,
  .mbt-col-8,
  .mbt-col-9,
  .mbt-col-10,
  .mbt-col-11,
  .mbt-col-12 {
    float: left;
  }
  .mbt-col-12 {
    width: 100%;
  }
  .mbt-col-11 {
    width: 91.66666667%;
  }
  .mbt-col-10 {
    width: 83.33333333%;
  }
  .mbt-col-9 {
    width: 75%;
  }
  .mbt-col-8 {
    width: 66.66666667%;
  }
  .mbt-col-7 {
    width: 58.33333333%;
  }
  .mbt-col-6 {
    width: 50%;
  }
  .mbt-col-5 {
    width: 41.66666667%;
  }
  .mbt-col-4 {
    width: 33.33333333%;
  }
  .mbt-col-3 {
    width: 50%;
  }
  .mbt-col-2_4 {
    width: 20%;
  }
  .mbt-col-2 {
    width: 16.66666667%;
  }
  .mbt-col-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 768px) {
  .ccm-block-page-list-page-entry-mbt-grid-description {
    display: none;
  }
  .block-header h2,
  .block-header p {
    padding-left: 20px;
    padding-right: 20px;
  }
  img.logo {
    display: block;

    width: 90% !important;
    max-width: 250px;
    margin-top: 90px;
    /* margin-bottom: 35px; */
    padding-top: 0;
  }
  .well {
    padding: 10px 10px 20px;
  }
  .well h3 {
    margin: 10px 0 20px;
  }
  .well button.close-button {
    right: 10px;
  }
}
@media (min-width: 900px) {
  #efforts-area {
    padding-left: 10%;
    padding-right: 10%;
  }
  img.logo {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  #efforts-area {
    padding: 0 0 30px 0;
  }
  .mbt-col-3 {
    width: 25%;
  }
  .well h3 {
    margin: 50px 0 30px;
  }
  .block-header {
    padding: 60px 0 30px 0;
  }
  img.logo {
    width: 75% !important;
  }
  .ccm-block-page-list-page-entry-mbt-grid-description {
    display: block;
  }
}
@media (min-width: 1500px) {
  .col-lg-push-1 {
    left: calc((100vw - 1180px) / 2);
  }
}
