* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
body {
  font-family: Helvetica, sans-serif;
}
[site-filter='1'] .switchButtons {
  opacity: 0;
  pointer-events: none;
}

.placeholder{
  margin: 0 auto;
  height: 135px;
  width: 38%;
  margin-top: 5%;
  position: relative;
}
.placeholder:hover .hoveredPopup {
  opacity: 1;
}

.placeholder .selected {
  width: 50%;
  margin: 0 auto;
  opacity: 1;
  transition: all ease-in-out .1s;
}
.placeholder .selected > div  {
  height: 100px;
}
.placeholder:hover .selected {
  opacity: 0;
}
.selected > div {
  background-size: 100%;
}

.inputSearch {
  border: 1px solid #bcbcbc;
  width: 75%;
  height: 35px;
  vertical-align: middle;
}
.searchButton {
  background: #0070ba url("../images/magnifier.svg") no-repeat center;
  background-size: 20%;
  height: 35px;
  width: 25%;
  vertical-align: middle;
  cursor: pointer;
}
.searchForm {
  margin: 0 auto;
  width: 37%;
  margin-top: 5%;
  font-size: 0;
  margin-bottom: 1%;
}

.searchForm input {
  padding-left: 1%;
  font-size: 20px;
}
.switchButtons {
  text-align: center;
  margin-bottom: 5%;
}
.searchIcon {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all ease-in-out .1s;
}
.searchIcon:not(.active) {
  cursor: pointer;
}
.searchIcon:hover,
.searchIcon.active {
  background-color: #e5e5e5;
}

footer {
  position: fixed;
  bottom: 1%;
  right: 1%;
  left: 0;
  text-align: right;
}

footer li {
  display: inline-block;
  margin-right: 10px;
}

footer a {
  cursor: pointer;
  color: grey;
  font-size: 11px;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
}
.uninstallPopUp {
  background-color: white;
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  width: 45%;
  height: 255px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: -117.5px;
  margin-left: -22.5%;

}
.closeIconUninstallPopUp {
  background: url("../images/closeIcon.png") no-repeat right;
  background-size: contain;
  width: 30px;
  height: 35px;
  float: right;
  cursor: pointer;
}
.headerUninstallPopUp {
  height: 35px;
  background-color: #06ae8e;
}
.contentUninstallPopUp {
  text-align: center;
}
.contentUninstallPopUp h2,
.reEnableDescription {
  margin-top: 15px;
}
.contentUninstallPopUp h2 {
  margin-bottom: 10px;
}
.uninstallDescription {
  margin-bottom: 20px;
}
.yesButton,
.noButton {
  width: 65px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid #c2c2c2;
  color: black;
  background-image: linear-gradient(180deg,#fefefe,#eee);
}
.yesButton {
  margin-right: 50px;
}
.hidden {
  display: none;
}