body {
  font-family: "Open Sans", sans-serif;
  margin: 0px;
}

img {
  max-width: 100%;
}

* {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

#mapcontainer {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
}

#map {
  width: 70%;
  height: 100vh;
  /* display: inline-block; */
}

#searchKey {
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 0px;
  text-align: left;
}

#searchKey img {
  width: 14px;
}

#leftSidebar {
  width: 30%;
  display: inline-block;
  height: 100%;
  vertical-align: top;
}

#leftFilter {
  padding: 20px;
  flex-shrink: 0;
}

.leftFilterContainer {
  padding: 0 20px;
}

.leftTitle {
  width: 50%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 40px;
  flex-shrink: 0;
}

.leftSearchBar {
  width: 100%;
  padding-bottom: 15px;
  flex-shrink: 0;
}

.leftSearchBar .custom-input {
  width: 85%;
  border-radius: 5px 0px 0px 5px;
  display: inline-block;
  vertical-align: top;
}

.filterButtons {
  border-radius: 5px;
  border: 1px solid #333;
  width: 43%;
  margin-right: 3%;
  display: inline-block;
  padding: 4px 7px;
  font-size: 14px;
  cursor: pointer;
}

.filterButtons:last-of-type {
  margin-right: 0;
}

#buttonPackage {
  color: #ac1124;
  border-color: #ac1124;
}

#buttonRestaurant {
  color: #f4a41f;
  border-color: #f4a41f;
}

#buttonAdvFilter {
  margin-top: 20px;
  width: 95%;
  border-color: #ccc;
  color: #666;
  flex-shrink: 0;
}

#buttonPackage.active {
  background-color: #ac1124;
  color: #fff;
}

#buttonRestaurant.active {
  background-color: #f4a41f;
  color: #fff;
}

#buttonAdvFilter.active {
  background-color: #000;
  color: #fff;
}

.leftAddressList {
  text-align: left;
  margin-top: 30px;
  overflow: auto;
  box-shadow: inset 0px -20px 20px -10px #eee;
  flex: 1;
  min-height: 0;
}

.leftAddressList ul {
  padding: 0px;
  margin: 0px;
}

.leftAddressList li {
  padding: 0px;
  margin: 0px;
  list-style: none;
  padding: 20px;
}

#gotofilter {
  position: absolute;
  right: 10px;
  top: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  z-index: 1;
  display: none;
}

label {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  color: #666;
  background: rgba(255, 255, 255, 0.5);
}

label i {
  display: block !important;
  margin: 10px auto;
  text-align: center;
  font-size: 44px;
}

#searchcontainer {
  max-width: 900px;
  margin: 0 auto;
  /*		background-image:url("images/Stamps logo FULL.png");
background-size:contain;
background-repeat: no-repeat; */
}

.select2-container {
  min-width: 150px;
}

.select2-container--default .select2-selection--multiple {
  border-radius: 0px;
  border: 1px solid rgba(204, 60, 29, 1);
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: rgba(204, 60, 29, 1);
  color: #fff;
  border-radius: 0px;
  border: 0px;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border-radius: 0px;
  border: 1px solid rgba(204, 60, 29, 1);
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #333;
}

#panel {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transition-property: all;
  transition-duration: 0.5s;
  box-shadow: #000 3px 2px 20px;
  z-index: 9999;
}

#panelContent {
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 99999;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}

#panelContent::-webkit-scrollbar {
  width: 0 !important;
}

#toggle {
  position: absolute;
  top: 280px;
  right: -20px;
  width: 20px;
  height: 50px;
  background: rgba(204, 60, 29, 1);
  border-radius: 0px 5px 5px 0px;
  box-shadow: #000 4px 2px 10px;
}

#toggle i {
  font-size: 28px;
  position: absolute;
  top: 10px;
  left: 3px;
  color: #fff;
}

.panelclose {
  left: -300px !important;
}

#panelRight {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 90%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transition-property: all;
  transition-duration: 0.5s;
  box-shadow: #000 -3px 2px 20px;
  z-index: 99999;
}

#panelContentRight {
  width: 100%;
  height: 100%;
  overflow: auto;
}

#toggleRight {
  position: absolute;
  top: 280px;
  left: -20px;
  width: 20px;
  height: 50px;
  background: rgba(204, 60, 29, 1);
  border-radius: 5px 0px 0px 5px;
  box-shadow: #000 -4px 2px 10px;
}

#toggleRight i {
  font-size: 28px;
  position: absolute;
  top: 10px;
  left: 3px;
  color: #fff;
}

.panelcloseRight {
  right: -90% !important;
}

#people {
  margin: 0;
  padding: 0;
}

#people li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
  height: 130px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,eeeeee+100 */
  background: rgb(255, 255, 255);
  /* Old browsers */
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(238, 238, 238, 1) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(238, 238, 238, 1) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(238, 238, 238, 1) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  /* IE6-9 */
}

.peoplePhoto {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  height: 130px;
  display: inline-block;
  vertical-align: top;
}

.peopleType {
  position: absolute;
  bottom: 0px;
  width: 150px;
  right: 0px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px;
  padding-right: 45px;
  text-align: right;
}

.linkProfile {
  padding: 3px 8px;
  border-radius: 3px;
  background-color: rgba(204, 60, 29, 1);
  color: #fff !important;
  text-decoration: none;
  font-size: 10px;
}

.linkContainer {
  position: absolute;
  left: 0;
  top: 0;
}

.linkSocial {
  display: inline-block;
  background-color: rgba(204, 60, 29, 1);
  color: #fff;
  height: 23px;
  width: 27px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  padding-top: 4px;
}

.linkConnect {
  background-color: #213a83;
}

.linkEmail {
  background-color: #143c58;
}

.linkLinkedin {
  background-color: #4875b4;
}

.linkInstagram {
  background-color: #8a3ab9;
}

.linkTwitter {
  background-color: #04a0f7;
}

.linkFacebook {
  background-color: #3b5998;
}

.peopleScholar {
  background-color: #000;
  color: #fff;
}

.peopleAlumni {
  background-color: #666;
  color: #fff;
}

.peopleContent {
  width: 190px;
  padding-left: 10px;
  height: 100%;
  display: inline-block;
  position: relative;
  vertical-align: top;
  padding-top: 5px;
  height: 125px;
  float: right;
}

.peopleContent h1 {
  font-size: 16px;
  margin: 0;
  border-bottom: 1px solid rgba(204, 60, 29, 1);
}

.peopleSchool {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.peopleMajor {
  font-size: 12px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 33px;
}

.peopleGradYear {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  background-color: rgba(204, 60, 29, 1);
  border-radius: 5px 0px 0px 0px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.peopleEmail {
  margin-top: 10px;
}

.peopleEmail a,
.peopleEmail a:visited {
  color: rgba(204, 60, 29, 1);
  text-decoration: none;
}

#searchfilter {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#filterButton,
#resetButton,
#findmeButton {
  display: inline-block;
  padding: 9px 10px;
  background-color: rgba(204, 60, 29, 1);
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: rgba(204, 60, 29, 1);
  border-radius: 4px;
  cursor: pointer;
  margin-left: 0px;
  margin-top: 19px;
}

#filterButton {
  border-radius: 0px 5px 5px 0px;
  vertical-align: top;
  margin-top: 0px;
  padding: 6px 10px;
  height: 20px;
  background-color: #f4a41f;
}

#resetButton {
  margin-left: 0px;
}

#findmeButton {
  background: #6495ed;
}

#profileContent {
  padding: 40px;
}

.profileWrapper {
  padding: 40px;
}

.profileGlow {
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0.4em #444;
  display: inline-block;
  vertical-align: top;
  float: left;
}

.profileGlow ul {
  margin: 0;
  padding: 0;
}

.profileGlow li {
  padding: 0px;
  display: block;
  list-style: none;
  margin: 5px;
}

.profileGlow span {
  color: #333;
  margin-left: 25px;
  display: block;
}

.profileCard {
  width: 30%;
  margin-right: 3%;
  text-align: center;
  position: relative;
}

.profileCard .peoplePhoto {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.profileCard .peopleSchool {
  font-size: 18px;
}

.profileCard .linkContainer {
  position: relative;
  margin-top: 10px;
}

.profileCard .linkSocial {
  height: 34px;
  width: 39px;
  font-size: 20px;
  padding-top: 6px;
}

.profileCard .peopleType {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}

.gradSchools {
  padding-top: 20px;
  color: #777;
}

.gradSchools span {
  color: #333;
}

.peopleTypeWrapper {
  padding-right: 45px;
}

.profileBio {
  width: 65.5%;
  margin-bottom: 1.5%;
  float: right;
}

.profileSubContainer {
  column-count: 2;
  column-gap: 15px;
  width: 65.5%;
  float: right;
}

.profileSub {
  margin-bottom: 15px;
  min-height: 160px;
  break-inside: avoid;
  margin-top: 5px;
}

.profileSubInfo {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}

.profileSubInfo .bigText {
  width: 270px;
}

.iconCircle {
  display: inline-block;
  font-size: 30px;
  border: 3px solid #000;
  border-radius: 50px;
  padding: 10px;
  min-width: 40px;
  text-align: center;
}

.bigText {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  width: 73%;
}

.bigTextTitle {
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: -10px;
  text-transform: uppercase;
  font-size: 14px;
}

.employerTitle {
  font-size: 16px;
}

.subText {
  color: #888;
  font-size: 14px;
}

.subTextBig {
  font-size: 18px;
  color: #000;
}

.subTextMedium {
  font-size: 14px;
  margin-left: 10px;
}

.profileBioWrapper {
  margin-top: 30px;
}

.profileBioTitle {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #000;
}

/* .profileBioText{

} */

#searchfilter select {
  padding: 10px;
  /* border-radius: 0px; */
  background-color: rgba(204, 60, 29, 1);
  color: #fff;
  font-size: 14px;
  max-width: 200px;
  border: 0px;
  box-shadow: none;
  /* background: transparent; */
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
}

.grayText {
  color: #444 !important;
}

.custom-input {
  border: 1px solid #333;
  display: block;
  padding: 7px;
  font-size: 14px;
  border-radius: 5px;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
  z-index: 999;
}

.custom-select-trigger {
  position: relative;
  display: block;
  padding: 0 84px 0 22px;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  line-height: 60px;
  background: rgba(204, 60, 29, 1);
  border-radius: 4px;
  cursor: pointer;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}

.trigger-placeholder .custom-select-trigger {
  color: #666;
}

.custom-options-wrapper {
  max-height: 500px;
  overflow: auto;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 15px 0;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: all 0.4s ease-in-out;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-options:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  right: 25px;
  width: 7px;
  height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.option-hover:before {
  background: #f9f9f9;
}

.custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  border-bottom: 1px solid #b5b5b5;
  font-size: 14px;
  font-weight: 600;
  color: #b5b5b5;
  line-height: 32px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
  background: #f9f9f9;
}

.breaker {
  display: block;
}

.advFilter {
  height: 300px;
  overflow: auto;
  padding: 20px 0px;
  box-shadow: 0px 0px 11px #ccc inset;
  margin: 20px 0px;
  display: none;
  flex-shrink: 0;
}

.toggle-button-cover {
  display: table-cell;
  position: relative;
  width: 200px;
  height: 140px;
  box-sizing: border-box;
}

.button-cover {
  height: 100px;
  margin: 20px;
  background-color: #fff;
  box-shadow: 0 10px 20px -8px #c5d6d6;
  border-radius: 4px;
}

.button-cover:before {
  counter-increment: button-counter;
  content: counter(button-counter);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #d7e3e3;
  font-size: 12px;
  line-height: 1;
  padding: 5px;
}

.button-cover,
.knobs,
.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.filterItem {
  width: 43%;
  margin: 2%;
  display: inline-block;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 4% 1%;
  box-shadow: 0 10px 20px -8px #c5d6d6;
  max-width: 156px;
}

.button {
  position: relative;
  top: 50%;
  width: 74px;
  height: 36px;
  display: inline-block;
  overflow: hidden;
}

.buttonName {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  font-size: 12px;
  min-height: 34px;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}

/* Button 1 */
.button-1 .knobs:before {
  content: "YES";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 9px 4px;
  background-color: #03a9f4;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.button-1 .checkbox:checked + .knobs:before {
  content: "NO";
  left: 42px;
  background-color: #f44336;
}

.button-1 .checkbox:checked ~ .layer {
  background-color: #fcebeb;
}

.button-1 .knobs,
.button-1 .knobs:before,
.button-1 .layer {
  transition: 0.3s ease all;
}

@media only screen and (max-width: 1415px) {
  .iconCircle {
    display: block;
    width: 40px;
    margin: 0 auto 30px auto;
  }

  .bigText {
    width: 100%;
  }

  .peopleEmail {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  #mapcontainer {
    height: 100%;
    flex-direction: column;
    display: flex;
  }

  #leftSidebar {
    width: 100%;
    height: calc(100vh - 350px);
    display: block;
  }

  #map {
    width: 100%;
    height: 350px;
    display: block;
  }

  .profileCard {
    width: 100%;
  }

  .peopleEmail {
    font-size: 10px;
  }

  .profileBio {
    width: 100%;
    margin-top: 15px;
  }

  .iconCircle {
    display: inline-block;
    width: 40px;
    margin: 0 auto 30px auto;
    margin-left: 38%;
  }

  .bigText {
    width: 100%;
  }

  .profileSubContainer {
    column-count: 1;
    column-gap: 0px;
    width: 100%;
    padding-top: 15px;
  }

  .breaker {
    display: none;
  }
}
