button, a {
  cursor: pointer;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Open sans";
  font-weight: normal;
  background-color: #fff;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.body-content-wrapper {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

@-webkit-keyframes autofill {
  to {
    background: #fff;
  }
}
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

.noscroll {
  height: 100% !important;
  overflow: hidden !important;
}

::-ms-clear {
  display: none;
}

.d-none {
  display: none !important;
}

textarea {
  min-height: 170px;
}

.check-box {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  text-align: left;
}
.check-box a {
  color: #fff;
  text-decoration: underline;
}
.check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  display: none;
}
.check-box:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.2);
}
.check-box input:checked ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.2);
}
.check-box input:checked ~ .checkmark:before {
  height: 6px;
  transition-delay: 0s;
}
.check-box input:checked ~ .checkmark:after {
  height: 12px;
  transition-delay: 0.1s;
}
.check-box .checkmark:after {
  left: 12px;
  bottom: 5px;
  width: 0;
  height: 0px;
  border: solid white;
  border-width: 0 2px 0 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  transition-property: height;
  transition-delay: 0s;
}
.check-box .checkmark:before {
  left: 6px;
  top: 9px;
  width: 0;
  height: 0px;
  border: solid white;
  border-width: 0 2px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  transition-property: height;
  transition-delay: 0.1s;
}

.checkmark {
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #B7B5B7;
  top: calc(50% - 12px);
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-property: background-color;
}
.checkmark:after {
  content: "";
  position: absolute;
  height: 0px;
}
.checkmark:before {
  content: "";
  position: absolute;
  height: 0px;
}

.cta-box {
  text-align: center;
}
.cta-box.load-more {
  padding-top: 130px;
  padding-bottom: 34px;
}
.cta-box.horoscope-cta {
  padding-top: 34px;
}
@media screen and (max-width: 1300px) {
  .cta-box.load-more {
    padding-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  .cta-box.load-more {
    padding-top: 30px;
  }
}

.cta-btn {
  background: #000;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 22px 56px;
  display: inline-block;
  position: relative;
  border: none;
  outline: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-property: color;
}
.cta-btn:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0px;
  height: 100%;
  top: 0%;
  left: 0%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-property: all;
  transition-property: width, height;
  background: #fff;
}
.cta-btn:hover {
  color: #000;
}
.cta-btn:hover:before {
  width: 100%;
}
.cta-btn span {
  position: relative;
  z-index: 2;
}

.content header {
  width: 100%;
  display: block;
  padding: 16px;
  border-bottom: 1px solid #282828;
}
.content header h1 {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
}
.content .page-grid .item {
  width: 320px;
  height: 140px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 20px;
}
.content .page-grid .item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  border: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  transition-property: transform;
}
.content .page-grid .item span {
  position: absolute;
  font-family: "Open Sans", sans-serif;
  z-index: 2;
  left: 0px;
  top: 0px;
  color: #fff;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
}
.content .page-grid .item:hover iframe {
  transform: scale(1.2);
}

/*# sourceMappingURL=style.css.map */
