@import url(https://fonts.googleapis.com/css?family=Cairo:300,400,700&subset=arabic);/**
 * Set up a decent box model on the root element
 */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * Basic styles for links
 */

a {
  color: #e55cad;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:active,
a:focus {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

html {
  font-size: 62.5%;
}

section,
footer {
  font-size: 1rem;
}

section {
  padding: 30px 0 20px;
}

img {
  max-width: 100%;
  vertical-align: top;
}

h1,
h2,
h3 {
  font-weight: normal;
}

button {
  cursor: pointer;
}

.section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
  position: relative;
}

@media (min-width: 1200px) {
  .section-title {
    margin-top: 40px;
  }
}

.section-title::after {
  content: " ";
  width: 51px;
  border-bottom: 1px solid #a4a4a4;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.section-description {
  font-size: 1.6em;
  text-align: center;
  line-height: 1.875;
  margin: 0;
}

@media (min-width: 1200px) {
  .section-description {
    max-width: 525px;
    margin: 0 auto;
  }
}

* :focus {
  outline: none;
  -webkit-box-shadow: 0 0 2px #ff72c5;
          box-shadow: 0 0 2px #ff72c5;
}

.theme--blue * :focus {
  -webkit-box-shadow: 0 0 2px rgba(26, 141, 216, 0.3);
          box-shadow: 0 0 2px rgba(26, 141, 216, 0.3);
}

.theme--green * :focus {
  -webkit-box-shadow: 0 0 2px rgba(157, 200, 25, 0.3);
          box-shadow: 0 0 2px rgba(157, 200, 25, 0.3);
}

.theme--purple * :focus {
  -webkit-box-shadow: 0 0 2px rgba(229, 92, 173, 0.3);
          box-shadow: 0 0 2px rgba(229, 92, 173, 0.3);
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='checkbox']:checked + label:before,
input[type='radio']:checked + label:before {
  background: #e55cad;
  border-color: #e55cad;
  color: #fff;
  text-align: center;
  content: url(/fonts/check.svg?e1d1ce0ca9fcba1aaad102dbc3cb5c7c);
}

input[type='checkbox'] + label:before,
input[type='radio'] + label:before {
  border: 1px solid #d8d8d8;
  content: '\A0';
  display: inline-block;
  height: 20px;
  padding: 0;
  width: 20px;
  line-height: 20px;
  margin-left: 15px;
  vertical-align: middle;
}

p {
  line-height: 1.875;
}

header,
footer {
  font-size: 1rem;
}

/**
 * Basic typography style for copy text
 */

body {
  color: #000;
  font: normal 125%/1.4 "Cairo", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/**
 * Clear inner floats
 */

.clearfix::after {
  clear: both;
  content: '';
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */

.container {
  max-width: 89.33333333%;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 0;
  /* 3 */
  padding-right: 0;
  /* 3 */
  width: 100%;
  /* 1 */
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */

.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left;
}

html[dir="rtl"] .text-start {
  text-align: right;
}

.text-end {
  text-align: right;
}

html[dir="rtl"] .text-end {
  text-align: left;
}

.title-decoration {
  position: relative;
  margin: 0 0 44px;
}

.title-decoration::after {
  content: " ";
  width: 51px;
  border-bottom: 1px solid;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

body > .icons {
  display: none;
}

.section--secondary {
  background-color: #f4f4f4;
  padding-top: 50px;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.section--bordered {
  border-bottom: 1px solid #ccc;
}

.section--bordered + section {
  border-top: 1px solid #fff;
}

.ads--secondary {
  padding-top: 0;
  margin-bottom: 30px;
}

form.full-height,
.video-script.full-height {
  max-height: 1000vh;
}

.expanded .arrow-down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

html .hidden {
  display: none !important;
}

.overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.8);
}

.menu-opened {
  overflow: hidden;
}

.menu-opened .overlay {
  display: block;
}

@media (min-width: 1200px) {
  .desktop-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .banner-slider {
    max-width: 70.1754386%;
    margin-top: 20px;
  }
}

.to-expand {
  max-height: 85px;
}

.fb-comments {
  overflow: hidden;
}

.error-message {
  color: #e55cad;
  font-weight: 300;
  font-size: 1.4em;
}

.error-message::before {
  content: '*';
}

@media (min-width: 1200px) {
  .hero-wrapper > .article-image-components {
    width: 67.21311475%;
    float: right;
  }

  .hero-wrapper > .article-image-components > .article__imageWrapper {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .tabs-desc-container > .tabs-desc {
    width: 67.21311475%;
    float: right;
    margin-left: 2.63157895%;
  }
}

@media (min-width: 1200px) {
  .tabs-desc-container > .ads {
    width: 24.59016393%;
    float: right;
  }
}

@media (min-width: 1200px) {
  .ads-wrapper {
    position: relative;
  }

  .ads-wrapper .ads {
    position: absolute;
    top: 0;
    left: 0;
  }

  .ads--leader {
    margin-top: 10px;
  }

  .floated-ads-container > .container {
    position: relative;
  }

  .floated-ads-container > .container .ads {
    position: absolute;
    top: 0;
    left: 0;
  }

  .floated-ads-container .section-description {
    padding-bottom: 100px;
  }

  .name-finder .floated-ads-container .section-description {
    padding-bottom: 0;
  }

  .floated-ads-container.name-finder .section-description {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .main-header {
    display: none;
  }
}

.main-header .container {
  text-align: center;
}

.main-header-wrapper.fixed {
  position: fixed;
  top: 0;
}

.main-header-wrapper {
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
  height: 60px;
  line-height: 60px;
  background: #fff;
  font-size: 0;
  width: 100%;
  z-index: 100;
}

.main-header {
  height: 60px;
  line-height: 60px;
  width: 100%;
  position: relative;
}

.main-header .search-form-container {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 50;
  width: 100%;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.15);
}

.main-header .search-form-container button svg {
  vertical-align: middle;
}

.main-header .search-form-container.show {
  display: inline-block;
}

.main-header .logo {
  margin: 2px 0 0;
  line-height: 0.5;
  max-width: 38.66666667%;
}

.main-header .logo img {
  vertical-align: top;
  width: 100%;
}

.main-header svg {
  vertical-align: middle;
}

.main-header a {
  display: inline-block;
}

.main-header a:hover,
.main-header afocus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #e55cad;
}

.main-header a:hover svg,
.main-header afocus svg {
  fill: #e55cad;
}

.main-header .logo,
.main-header .menu-search,
.main-header .menu-tools,
.main-header .nav-container,
.main-header .menu-videos {
  display: inline-block;
  vertical-align: middle;
  line-height: 0.5;
}

.main-header .header-actions {
  width: 23.88059701%;
}

.main-header .header-actions.pull-left {
  text-align: left;
}

.main-header .header-actions.pull-left li {
  text-align: right;
}

.main-header .header-actions.pull-right {
  text-align: right;
}

.main-header .menu-videos {
  max-width: 40%;
  margin-left: 13.33333333%;
}

.main-header .menu-header-tools {
  max-width: 40%;
  display: inline-block;
}

.nav-container {
  margin-left: 13.33333333%;
}

.burger-menu svg {
  width: 30px;
  height: 17px;
  fill: dimgray;
}

.menu-search {
  max-width: 40%;
}

.menu-search svg {
  width: 24px;
  height: 24px;
  fill: dimgray;
}

.menu-search .active svg {
  fill: #e55cad;
}

.tool-icons svg {
  width: 30px;
  height: 30px;
  fill: dimgray;
}

.videos-icon {
  max-width: 100%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid dimgray;
  text-align: center;
  line-height: 25px;
}

.videos-icon svg {
  width: 9px;
  height: 11px;
  fill: dimgray;
  margin-left: 2px;
}

.desktop .user-actions {
  display: inline-block;
  padding: 0;
  font-size: 1.6em;
  list-style-type: none;
  margin: 0;
}

.desktop .user-actions li {
  display: inline-block;
  font-size: 16px;
}

.desktop .user-actions li:after {
  content: '|';
  padding-right: 1.8em;
  padding-left: 1.6em;
}

.desktop .user-actions li a {
  color: #000;
}

.desktop .user-actions li a:hover {
  color: #e55cad;
  text-decoration: none;
}

.desktop {
  display: none;
}

@media (min-width: 1200px) {
  .desktop {
    display: block;
  }
}

.desktop--primary {
  line-height: 70px;
  height: 70px;
}

.desktop--primary .logo {
  margin: 0;
}

.desktop--primary .logo img {
  vertical-align: middle;
}

.desktop--primary .social-share {
  display: inline-block;
}

.desktop--primary .social-share .social-share__list {
  margin-left: 20px;
}

.desktop--primary .social-share .social-share__list__item {
  background-color: initial;
  width: 38px;
  height: 38px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

@media (min-width: 1200px) {
  .desktop--primary .social-share .social-share__list__item a {
    line-height: 38px;
  }
}

.desktop--primary .social-share .social-share__list__item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.desktop--primary .social-share .social-share__list__item:hover a svg {
  fill: #FFFFFF;
}

.desktop--primary .social-share .social-share__list__item--fb svg {
  width: 11px;
  height: 21px;
}

.desktop--primary .social-share .social-share__list__item--fb:hover {
  background: #3b5998;
}

.desktop--primary .social-share .social-share__list__item--tumblr svg {
  width: 11px;
  height: 21px;
}

.desktop--primary .social-share .social-share__list__item--tumblr:hover {
  background: #36465d;
}

.desktop--primary .social-share .social-share__list__item--dailymotion svg {
  width: 15px;
  height: 21px;
}

.desktop--primary .social-share .social-share__list__item--dailymotion:hover {
  background: #00c8f6;
}

.desktop--primary .social-share .social-share__list__item--utube svg {
  width: 19px;
  height: 23px;
}

.desktop--primary .social-share .social-share__list__item--utube:hover {
  background-color: #d82524;
}

.desktop--primary .social-share .social-share__list__item--google svg {
  width: 19px;
  height: 19px;
}

.desktop--primary .social-share .social-share__list__item--google:hover {
  background-color: #dc4a38;
}

.desktop--primary .social-share .social-share__list__item--instagram svg {
  width: 19px;
  height: 19px;
}

.desktop--primary .social-share .social-share__list__item--instagram:hover {
  background-color: #893dc2;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent);
}

.desktop--primary .social-share .social-share__list__item--twitter svg {
  width: 24px;
  height: 19px;
}

.desktop--primary .social-share .social-share__list__item--twitter:hover {
  background-color: #1da1f2;
}

.desktop--primary .social-share .social-share__list__item a svg {
  fill: #000;
}

.desktop--primary .search-form-container {
  display: inline-block;
  width: 265px;
  background-color: initial;
}

.desktop--primary #search-form .input-group {
  width: 100%;
}

.desktop--primary #search-form button {
  top: 33%;
  left: 3%;
}

.desktop--primary #search-field {
  height: 40px;
  font-size: 1.4em;
  line-height: 40px;
  vertical-align: middle;
}

.desktop--primary section {
  padding: 0;
}

.desktop--secondary {
  line-height: 80px;
  height: 80px;
  background: url(/images/menu-background.jpg?7064c635cf00bf7ce79eecfff61c7b4a) repeat;
}

.desktop--secondary .menu-tools.sub-menu-title {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.desktop--secondary .main-nav {
  margin: 0;
}

.desktop--secondary .main-nav ul {
  margin: 0;
}

.desktop--secondary .main-nav li {
  float: right;
}

.desktop--secondary .main-nav li svg {
  vertical-align: middle;
}

.desktop--secondary .main-nav li a {
  height: 80px;
  line-height: 80px;
  border-right-color: transparent;
  padding: 0 15px;
}

.desktop--secondary .main-nav li + li a {
  border-top: none;
}

.desktop--secondary .main-nav li:hover,
.desktop--secondary .main-nav li.active {
  position: relative;
}

.desktop--secondary .main-nav li:hover:after,
.desktop--secondary .main-nav li.active:after {
  content: '';
  width: 100%;
  height: 5px;
  background-color: #9dc819;
  display: block;
  position: absolute;
  bottom: -2px;
  z-index: 1;
}

.desktop--secondary .menu-tools a .go-to-arrows {
  left: -15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 5px;
}

.desktop--secondary .sub-menu {
  position: absolute;
  z-index: 100;
  width: 320px;
  top: 80px;
}

.desktop--secondary .sub-menu li {
  float: none;
  background: url(/images/menu-background.jpg?7064c635cf00bf7ce79eecfff61c7b4a) repeat;
  display: block;
  height: auto;
}

.desktop--secondary .sub-menu li:hover:after {
  width: 0;
}

.fixed-top-banner-ad {
  top: 60px !important;
}

.button {
  border: 1px solid;
  height: 58px;
  color: #fff;
  padding: 0 50px;
  position: relative;
  min-width: 200px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  line-height: 58px;
  font-size: 1.8em;
  text-align: center;
}

.button::after,
.button::before {
  content: '';
  width: 20px;
  color: #fff;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button::after {
  right: 0;
}

.button::before {
  left: 0;
}

.button:hover {
  text-decoration: none;
}

.theme--blue .button,
.button.button--blue.button--blue {
  background-color: #1a8dd8;
  border-color: #1a8dd8;
}

.theme--blue .button:hover,
.button.button--blue.button--blue:hover {
  color: #1a8dd8;
  background-color: transparent;
}

.theme--blue .button:hover:after,
.theme--blue .button:hover:before,
.button.button--blue.button--blue:hover:after,
.button.button--blue.button--blue:hover:before {
  background-color: #1a8dd8;
}

.theme--green .button,
.button.button--green.button--green {
  background-color: #9dc819;
  border-color: #9dc819;
}

.theme--green .button:hover,
.button.button--green.button--green:hover {
  color: #9dc819;
  background-color: transparent;
}

.theme--green .button:hover:after,
.theme--green .button:hover:before,
.button.button--green.button--green:hover:after,
.button.button--green.button--green:hover:before {
  background-color: #9dc819;
}

.theme--purple .button,
.button.button--purple.button--purple {
  background-color: #e55cad;
  border-color: #e55cad;
}

.theme--purple .button:hover,
.button.button--purple.button--purple:hover {
  color: #e55cad;
  background-color: transparent;
}

.theme--purple .button:hover:after,
.theme--purple .button:hover:before,
.button.button--purple.button--purple:hover:after,
.button.button--purple.button--purple:hover:before {
  background-color: #e55cad;
}

.button.button--transparent {
  background-color: transparent;
  border-color: #fff;
}

.button.button--transparent:hover {
  border-color: #9dc819;
  color: #9dc819;
}

.button.button--transparent:after,
.button.button--transparent:before {
  background-color: transparent;
}

.circular-button {
  width: 200px;
  height: 200px;
  background-color: #e55cad;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.circular-button:after {
  content: '';
  background: url(/images/circular-button.jpg?32579000d02299885ec4746c392e1fbb);
  opacity: 0.125;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.circular-button:hover {
  background-color: #fff;
  color: #e55cad;
  border: 1px solid #e55cad;
}

.circular-button:hover svg {
  fill: #e55cad;
}

.circular-button svg {
  height: 52px;
  width: 42px;
  fill: #fff;
  margin-top: 50px;
  vertical-align: top;
}

.circular-button span {
  margin-top: 15px;
  width: 100%;
  display: inline-block;
  font-size: 1.8em;
}

.more-articles-link {
  font-size: 1.6em;
}

.theme--blue .more-articles-link,
.more-articles-link--blue {
  color: #1a8dd8;
}

.theme--purple .more-articles-link,
.more-articles-link--purple {
  color: #e55cad;
}

.theme--green .more-articles-link,
.more-articles-link--green {
  color: #9dc819;
}

.more-articles-link--white {
  color: #fff;
  text-decoration: underline;
}

.more-articles-link--white:hover {
  color: #fff;
  text-decoration: none;
}

.table {
  width: 100%;
  font-size: 1.6em;
  margin-bottom: 30px;
  border-collapse: collapse;
}

.table thead {
  background: #f4f4f4;
}

.table tbody tr:nth-child(even) {
  background: #f4f4f4;
}

.table th {
  font-weight: normal;
}

.theme--blue .table th {
  color: #1a8dd8;
}

.table th,
.table td {
  padding: 13px;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 0 0 1px #fff inset;
          box-shadow: 0 0 0 1px #fff inset;
}

.table--center {
  text-align: center;
}

.flatpickr-calendar {
  direction: rtl;
}

.flatpickr-next-month {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 8px;
}

.flatpickr-next-month.flatpickr-prev-month,
.flatpickr-next-month.flatpickr-next-month {
  right: auto;
  left: 0;
}

.flatpickr-prev-month {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 8px;
}

.flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-prev-month.flatpickr-next-month {
  right: 0;
  left: auto;
}

.numInputWrapper span {
  left: 0;
  right: auto;
}

.flatpickr-current-month input.cur-year {
  padding: 0 0.5ch 0 0;
}

.flatpickr-current-month {
  font-size: 100%;
}

.flatpickr-current-month {
  padding-top: 5px;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
  left: auto;
  right: 22px;
}

.flatpickr-current-month input.cur-year {
  padding: 0 5px 0 10px;
}

.flatpickr-current-month .numInputWrapper {
  width: 7ch;
}

/*
span {
  &.flatpickr-day,
  &.flatpickr-day.prevMonthDay,
  &.flatpickr-day.nextMonthDay {
    border-left-color: transparent;
    border-right-color: #e9e9e9;
  }
  &.flatpickr-day {
    &.today:not(.selected),
    &.prevMonthDay.today:not(.selected),
    &.nextMonthDay.today:not(.selected) {
      border-left-color: transparent;
      border-right-color: #e9e9e9;
    }
  }
}
*/

.home .banner-slider {
  margin-bottom: 70px;
}

.home .banner-slider-container {
  margin-bottom: 50px;
}

.home .image-card {
  background: url(/images/home-image-card.jpg?b06b05067921c5b115e5340626262075) no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 250px;
  margin-bottom: 50px;
  max-width: 80%;
  margin: 0 auto;
}

.home .image-card .home-line-left,
.home .image-card .home-line-right {
  position: absolute;
  height: 57px;
  width: 59px;
  fill: #fff;
}

.home .image-card .home-line-left {
  left: 5.33333333%;
  top: 20px;
}

.home .image-card .home-line-right {
  right: 5.33333333%;
  bottom: 20px;
}

.home .image-card .image-card-container {
  max-width: 77.06666667%;
  background: rgba(26, 141, 216, 0.55);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
}

.home .image-card .image-card__title {
  padding: 50px 0;
  font-size: 1.8em;
  max-width: 53.33333333%;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.2;
}

.home .image-card .image-card__title a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.home .image-card .image-card__title a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home .image-card .image-card__title:focus,
.home .image-card .image-card__title:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home .image-card span {
  font-size: 1.6666666667em;
}

.home .image-card:hover .home-line-left,
.home .image-card:hover .home-line-right,
.home .image-card:focus .home-line-left,
.home .image-card:focus .home-line-right {
  fill: #1a8dd8;
}

.home .ads {
  padding-bottom: 50px;
}

@media (min-width: 1200px) {
  .home .banner-slider--hero {
    max-width: 70.1754386%;
    margin-top: 0;
  }

  .home .banner-slider--home-videos {
    max-width: 100%;
  }
}

.eat-tool .circular-button-container {
  margin: 50px 0 0;
}

.eat-tool .cards--full-width {
  margin-top: 25px;
}

@media (min-width: 1200px) {
  .eat-tool .cards--full-width {
    margin-top: 50px;
  }

  .eat-tool .cards--full-width .card:first-child {
    width: 60%;
    margin: 50px auto 0;
    float: none;
  }
}

.eat-tool--result .circular-button-container {
  margin: 50px 0 30px;
}

.child-stage-container {
  margin-top: 30px;
}

.child-stage-container .ads {
  margin: 50px 0 55px;
}

.child-stage-container dt,
.child-stage-container dd {
  font-size: 1.6em;
  line-height: 1.875;
}

.child-stage-container .stages-content__header {
  margin: 0;
  font-weight: 700;
  font-size: 1.6em;
  line-height: 1.875;
}

.child-stage-container p {
  margin: 0;
  font-size: 1.6em;
  line-height: 1.875;
}

.child-stage-container dd {
  margin: 0;
  font-weight: 700;
}

.child-stage-container dd::after {
  content: ': ';
}

.child-stage-container dt + dt {
  margin-top: 20px;
}

.child-stage-container .tabs-content__info + .tabs-content__info {
  margin-top: 30px;
}

.stages-content p {
  font-size: 1.6em;
  line-height: 1.875;
  margin: 0;
}

.stages-content h1,
.stages-content h2,
.stages-content h3,
.stages-content h4,
.stages-content h5,
.stages-content h6 {
  color: #e55cad;
  font-size: 1.8em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .ads-fixed {
    position: relative;
  }

  .ads-fixed .ads {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.author-profile {
  padding-top: 0;
}

.author-profile .section-title {
  margin-top: 30px;
}

.author-profile .ads {
  margin: 40px auto 45px;
}

.thread-item-container.section--secondary {
  padding-top: 30px;
}

.thread-item-container .thread-card--question,
.thread-item-container .thread-card--answer {
  padding: 0;
}

.thread-item-container .thread-card--answer {
  margin: 0;
}

.thread-item-container .answer-tag {
  display: none;
}

.thread-item-container .single-question__back {
  margin-top: 40px;
}

.recipe header {
  padding: 20px 18px 25px;
}

@media (min-width: 1200px) {
  .recipe header {
    max-width: 60%;
  }
}

.recipe header li {
  font-size: 1.6em;
  display: inline-block;
}

.recipe header li + li {
  margin-right: 25px;
}

.recipe header li span {
  margin-right: 10px;
}

.recipe header ul {
  margin-bottom: 15px;
}

.recipe ul,
.recipe ol {
  list-style: none;
  padding: 0;
}

.recipe .recipe__title {
  font-size: 1.8em;
  margin: 25px 0;
}

.recipe .ads {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .recipe .ads {
    width: 350px;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    float: left;
  }
}

.recipe .recipe__image-wrapper img {
  width: 100%;
}

@media (min-width: 1200px) {
  .recipe .recipe__image-wrapper {
    width: 60%;
  }
}

.recipe__duration svg {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

.recipe__quantity svg {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

.recipe__ingredients {
  padding: 50px 30px 30px;
  color: #fff;
  background: #1a8dd8;
}

@media (min-width: 1200px) {
  .recipe__ingredients {
    width: 60%;
  }
}

.recipe__ingredients .section-title {
  color: #fff;
}

.recipe__ingredients .section-title:after {
  border-color: #fff;
}

@media (min-width: 1200px) {
  .recipe__ingredients ul {
    max-width: 1015px;
    margin: 0 auto;
    padding: 0;
  }
}

.recipe__ingredients p {
  font-size: 2rem;
}

.recipe__ingredients li {
  padding-right: 5px;
}

.recipe__ingredients li {
  color: #fff;
  font-size: 1.6em;
  line-height: 2;
  vertical-align: top;
}

.recipe__ingredients li + li {
  margin-top: 32px;
  margin-right: 5px;
}

@media (min-width: 1200px) {
  .recipe__ingredients li {
    padding-left: 20px;
  }

  .recipe__ingredients li + li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.recipe__preperation {
  counter-reset: counter-index;
  padding-bottom: 0;
}

.recipe__preperation > .container {
  font-size: 1.6em;
  line-height: 2;
}

@media (min-width: 1200px) {
  .recipe__preperation {
    width: 60%;
    padding: 0 30px;
  }
}

.recipe__preperation ul {
  padding: 0;
}

@media (min-width: 1200px) {
  .recipe__preperation ul {
    max-width: 1015px;
    margin: 0 auto;
  }
}

.recipe__preperation li + li {
  margin-top: 45px;
}

.more-articles-link-container {
  margin: 0 0 30px;
}

@media (min-width: 1200px) {
  .category-pregnancy .banner-slider--hero {
    float: none;
  }
}

.recipes-category .ads + .section--secondary {
  margin-top: 30px;
}

.recipes-category .accordion-container {
  padding-bottom: 0;
}

.recipes-category .accordion {
  margin-bottom: 0;
}

.recipes-category .videos-section {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .recipes-category .banner-slider--hero {
    float: right;
  }

  .recipes-category .ads {
    float: left;
    margin-left: 40px;
  }

  .recipes-category .desktop-container::before,
  .recipes-category .desktop-container::after {
    content: "";
    display: table;
    clear: both;
  }
}

article {
  font-size: 1rem;
}

.article--text p,
.article--text li,
.article--text .article__subtitle {
  line-height: 1.875;
  font-size: 1.6em;
}

.article--text .article__subtitle {
  color: #e55cad;
  margin: 40px 0;
}

.article--text p {
  margin: 0;
}

.article--text p + p {
  margin-top: 40px;
}

.article--text .article__content {
  margin-top: 30px;
}

.article--text .ads {
  padding-top: 10px;
}

.child-when-container {
  margin-top: 35px;
}

.child-when-container .accordion__item {
  background-color: #fff;
}

.name-info {
  background: url(/images/boy-name-background.png?6563eb446051cba7d33ecb908988372c) #1a8dd8 no-repeat center;
}

@media (min-width: 1200px) {
  .name-info {
    background-size: cover;
  }
}

.name-info p {
  margin: 0;
}

.name-info .section-title {
  color: #fff;
}

.name-info .section-title:after {
  border-color: #fff;
}

.name-info dl {
  margin: 0 0 50px;
}

@media (min-width: 1200px) {
  .name-info dl {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.name-info .name-info__item {
  color: #fff;
  border-right: 5px solid #9dc819;
  padding: 0 15px;
}

@media (min-width: 1200px) {
  .name-info .name-info__item {
    border-left: 5px solid #9dc819;
    border-right: none;
  }
}

.name-info .name-info__item + .name-info__item {
  margin-top: 15px;
}

.name-info .name-info__item dd {
  margin: 0;
  font-weight: bold;
  line-height: 3;
}

.name-info .name-info__item dd:after {
  content: ': ';
}

.name-info .name-info__item dt {
  padding: 0 5px;
}

.name-info .name-info__item dd,
.name-info .name-info__item dt {
  display: inline-block;
  font-size: 1.6em;
}

.name-info .button {
  margin-bottom: 30px;
}

.name-info .button:hover {
  background: #1a8dd8;
  color: #fff;
}

@media (min-width: 1200px) {
  .name-finder {
    text-align: center;
  }
}

.name-finder .section-description {
  text-align: right;
  margin: 30px auto;
}

.article--video .article__imageWrapper {
  margin: 0;
  position: relative;
}

.article--video .article__imageWrapper::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}

.article--video .article__header {
  margin: 0;
  padding-bottom: 30px;
}

.article--video .article__header .container {
  margin-top: 30px;
  margin-bottom: 20px;
}

.article--video .more-info {
  margin-top: 25px;
}

.go-to-category {
  padding-top: 0;
}

.category-title {
  height: 115px;
  line-height: 115px;
  outline: 1px solid #ccc;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #f4f4f4;
}

.category-title a {
  display: block;
  padding: 0 25px;
  color: #000;
  position: relative;
}

.category-title a::after {
  content: url(/fonts/menu-videos.svg?7e03581fb22384fde024b10321446885);
  position: absolute;
  left: 20px;
  pointer-events: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.video-script {
  font-size: 1.6em;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-out;
  transition: max-height .5s ease-out;
}

.video-script p {
  margin: 0;
}

.go-to-category .category-title__image-wrapper {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.responsive-video-wrapper {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56%;
}

.responsive-video-wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .vimeo-container::before,
  .vimeo-container::after {
    content: "";
    display: table;
    clear: both;
  }

  .vimeo-container .responsive-video-wrapper {
    float: right;
    width: 70%;
  }

  .vimeo-container .ads {
    float: left;
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .pregnancy-calculator .pregnancy-calculator-title p {
    text-align: center;
    margin: 0;
    line-height: 2.5;
  }
}

@media (min-width: 1200px) {
  .pregnancy-calculator form {
    max-width: 70%;
    margin: 50px auto 0 auto;
  }
}

@media (min-width: 1200px) {
  .pregnancy-calculator form button {
    margin-top: 30px;
  }
}

.pregnancy-calculator p {
  font-size: 1.6em;
}

@media (min-width: 1200px) {
  .pregnancy-calculator p {
    text-align: right;
  }
}

.pregnancy-calculator .results {
  display: none;
}

@media (min-width: 1200px) {
  .pregnancy-calculator .results .article__imageWrapper {
    width: 30%;
  }

  .pregnancy-calculator .results .table {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

.pregnancy-calculator.show-results .results {
  display: block;
}

.pregnancy-calculator.show-results #pregnancy-calculator {
  display: none;
}

@media (min-width: 1200px) {
  .pregnancy-calculator.show-results .article__imageWrapper {
    max-width: 30%;
  }
}

.pregnancy-calculator .article__imageWrapper {
  position: relative;
}

.pregnancy-calculator .article__imageWrapper .results {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(229, 92, 173, 0.85);
  color: #fff;
  padding: 25px;
}

.pregnancy-calculator .article__imageWrapper p {
  margin-top: 0;
  position: relative;
}

.pregnancy-calculator .article__imageWrapper p::before {
  content: "";
  display: block;
  background: #a9d81a;
  width: 5px;
  height: 25px;
  right: -25px;
  top: 5px;
  position: absolute;
}

.pregnancy-calculator .article__imageWrapper strong {
  display: block;
}

.counter-container {
  display: block;
}

@media (min-width: 1200px) {
  .counter-container {
    display: inline-block;
    padding-left: 20px;
  }
}

.counter-container span {
  display: inline-block;
  background: #e55cad;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 25px 0;
}

@media (min-width: 1200px) {
  .counter-container span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
  }
}

.category-selected-container {
  padding-top: 0;
}

.category-selected-container .guide-category-form {
  margin: 30px auto;
}

.category-selected .category-title {
  background-color: #dee9f1;
  height: 75px;
  line-height: 70px;
  border-bottom: 1px solid #cccccc;
  font-size: 1.6em;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  outline: 1px solid #ccc;
  position: relative;
}

.category-selected .category-title svg,
.category-selected .category-title span {
  display: inline-block;
  vertical-align: middle;
}

.category-selected .category-title span {
  padding-right: 20px;
}

.category-selected .category-title svg {
  fill: inherit;
  height: 31px;
  width: 31px;
}

.category-selected .category-title .container {
  position: relative;
}

.category-selected .category-title .container::after {
  content: url(/fonts/arrow-down.svg?6c5f16dd36da7ac01028c8c796138ffd);
  position: absolute;
  top: 0;
  left: 0;
}

.guide-category-list .counter-title {
  font-size: 1.4em;
  color: #1a8dd8;
  text-align: center;
  position: relative;
}

.guide-category-list .counter-title::after,
.guide-category-list .counter-title::before {
  position: absolute;
  content: '';
  width: 26.66666667%;
  background: #ccc;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.guide-category-list .counter-title::after {
  left: 0;
}

.guide-category-list .counter-title::before {
  right: 0;
}

.guide-category-form {
  max-height: 85px;
  overflow: hidden;
}

.guide-category-form .input-group {
  margin-bottom: 40px;
}

.arrow-down {
  width: 12px;
  height: 8px;
}

.more-info {
  text-align: left;
  margin-left: 35px;
  position: relative;
}

.more-info a {
  font-size: 1.4em;
  color: #e55cad;
}

.more-info .arrow-down {
  fill: #e55cad;
  margin-right: 18px;
}

.more-info::before {
  content: ' ';
  width: 50.4%;
  height: 1px;
  background: #ccc;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.category__item-profile .profile__title {
  font-size: 1.8em;
  margin: 54px 0 24px;
}

.category__item-profile .rating {
  margin-bottom: 30px;
}

.category__item-profile .profile__image-wrapper {
  background: #fff;
  text-align: center;
  margin-top: 32px;
}

@media (min-width: 1200px) {
  .category__item-profile .profile__image-wrapper {
    width: 30%;
    float: left;
    margin-top: 50px;
    margin-left: 15%;
  }
}

@media (min-width: 1200px) {
  .profile-info {
    float: right;
    width: 50%;
    margin-top: 50px;
  }
}

.profile-info.container {
  margin: 50px 0 30px;
}

.profile-info dd,
.profile-info dt {
  font-size: 1.6em;
  line-height: 1.875;
  border-right: 5px solid transparent;
  padding: 0 20px;
}

.profile-info dd {
  margin-right: 0;
}

.profile-info dt {
  border-color: #e55cad;
  font-weight: 700;
}

.profile-info dt::after {
  content: ': ';
}

.profile-info .profile-info__item + .profile-info__item {
  margin-top: 30px;
}

.profile-info a {
  color: #e55cad;
}

.profile-info .profile-info__item--inline dd {
  display: inline-block;
  width: 35%;
}

.about-us p {
  margin-top: 20px;
  font-size: 1.6em;
}

.about-us p + p {
  margin-top: 35px;
}

.about-us__image-wrapper img {
  width: 100%;
}

.about-us .about-us__share-container {
  margin-top: 40px;
}

.about-us .about-us__share-container p {
  color: #e55cad;
  margin-bottom: 26px;
}

.about-us .about-us__share-container .social-share__list__item--fb {
  background: #3b5999;
}

.about-us .about-us__share-container .social-share__list__item--twitter {
  background: #55acef;
}

.about-us .about-us__share-container .social-share__list__item--instagram {
  background: #11658a;
}

.about-us .about-us__share-container .social-share__list__item--google {
  background: #de4b39;
}

.about-us .about-us__share-container .social-share__list__item--utube {
  background: #d22215;
}

.about-us .about-us__share-container .social-share__list__item--pinterest {
  background: #bd081c;
}

.about-us-download {
  padding-bottom: 50px;
}

.about-us-download .section-title {
  max-width: 74.66666667%;
  margin-left: auto;
  margin-right: auto;
}

.team {
  list-style: none;
  padding: 0;
  overflow: scroll;
  white-space: nowrap;
  font-size: 0;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .team {
    overflow: initial;
    white-space: initial;
    margin: 0 auto 30px;
    max-width: 80%;
  }

  .team .slick-next,
  .team .slick-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 40%;
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }

  .team .slick-next:before,
  .team .slick-prev:before {
    content: '';
  }

  .team .slick-next svg,
  .team .slick-prev svg {
    width: 15px;
    height: 17px;
    fill: #fff;
  }

  .theme--green .team .slick-next,
  .theme--green .team .slick-prev {
    background-color: #9dc819;
  }

  .theme--green .team .slick-next:hover,
  .theme--green .team .slick-prev:hover {
    background-color: rgba(157, 200, 25, 0.65);
  }

  .team .slick-prev {
    right: -70px;
  }
}

.team::-webkit-scrollbar {
  display: none;
}

.team p {
  margin: 0;
}

.team li {
  width: 35.46666667%;
  display: inline-block;
  font-size: 1rem;
  text-align: center;
}

.team li + li {
  margin-right: 1.33333333%;
}

@media (min-width: 1200px) {
  .team li {
    width: 33%;
  }
}

.team .team__member-name {
  color: #9dc819;
  font-weight: 700;
  margin: 20px 0 5px;
}

.team img {
  width: 100%;
}

@media (min-width: 1200px) {
  .about-us__image-wrapper {
    text-align: center;
  }

  .about-us__image-wrapper img {
    width: auto;
    max-width: 100%;
  }
}

article {
  padding: 15px 0 30px;
}

.article__content {
  margin-bottom: 20px;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  color: #e55cad;
  font-size: 1.8em;
  font-weight: 600;
}

.article__content h4 {
  color: #9dc819;
}

.article__content a {
  color: #519cd2;
}

@media (min-width: 1200px) {
  article {
    padding: 30px 20px;
  }

  .article__content {
    width: 60%;
    float: right;
  }

  .article__header {
    max-width: 60%;
  }

  html .article-image-components {
    text-align: center;
  }

  html .article-image-components picture {
    display: block;
  }

  html .article-image-components .sources {
    float: none;
  }

  html .article-image-components .article__imageWrapper {
    float: right;
  }
}

.theme--blue .section-title,
.theme--blue .article-tags a {
  color: #1a8dd8;
}

.theme--green .section-title,
.theme--green .article-tags a {
  color: #9dc819;
}

.theme--purple .section-title,
.theme--purple .article-tags a {
  color: #e55cad;
}

.article__content * {
  font-size: 16px !important;
}

.article__content table {
  width: 100% !important;
  border-collapse: collapse;
  margin: 10px 0;
}

.article__content table td,
.article__content table th {
  padding: 5px;
  border: 1px solid #ccc;
}

.article__content table tr:nth-child(even) {
  background: #fbfbfb;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-size: 18px !important;
}

.article__content ol,
.article__content ul {
  padding-right: 15px;
}

ul.pagination {
  text-align: center;
  padding: 0 30px;
  margin: 0 auto 40px;
  max-width: 1200px;
  font-size: 16px;
}

ul.pagination li {
  display: inline-block;
}

ul.pagination li span,
ul.pagination li a {
  display: block;
  width: 30px;
}

.cards--full-width .card--videos .card__image-wrapper {
  height: 0;
  overflow: hidden;
  padding-bottom: 52.4%;
}

.theme--blue .card__details__title {
  color: #000;
}

.theme--blue .card__details__title a {
  color: #000;
}

.theme--blue .card__details__title a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 1px solid #1a8dd8;
}

.theme--blue .article-tags {
  color: #1a8dd8;
}

.theme--blue .card__details__action a {
  color: #1a8dd8;
}

.theme--green .card__details__title {
  color: #000;
}

.theme--green .card__details__title a {
  color: #000;
}

.theme--green .card__details__title a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 1px solid #9dc819;
}

.theme--green .article-tags {
  color: #9dc819;
}

.theme--green .card__details__action a {
  color: #9dc819;
}

.theme--purple .card__details__title {
  color: #000;
}

.theme--purple .card__details__title a {
  color: #000;
}

.theme--purple .card__details__title a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 1px solid #e55cad;
}

.theme--purple .article-tags {
  color: #e55cad;
}

.theme--purple .card__details__action a {
  color: #e55cad;
}

.card {
  width: 47.05882353%;
  float: right;
}

.card .card__image-wrapper {
  width: 100%;
}

.card__image-wrapper img {
  max-width: 100%;
  vertical-align: top;
  width: 100%;
}

.card__image-wrapper a {
  display: block;
}

.card .card__details {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: transparent;
}

.card .card__details__tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card .card__details__tags__item {
  font-size: 1.6em;
  display: inline-block;
}

.card .card__details__tags__item:before {
  content: '#';
  padding-left: 6px;
}

.card .card__details__tags__item + .card__details__tags__item {
  margin-right: 6.4%;
}

.card .card__details .card__details__title {
  min-height: 60px;
  font-size: 1.8em;
  margin: 25px 0 0;
  font-weight: normal;
  line-height: 1.5;
}

.section--secondary .card .card__details {
  background: transparent;
}

.cards__read-more {
  margin: 0 0 20px;
}

.cards--grid .card:nth-child(2n) {
  margin-right: 5.33333333%;
}

.cards--grid .card:nth-child(2n+1) {
  clear: right;
}

.cards--full-width .card:first-child {
  width: 100%;
  float: none;
  margin-bottom: 25px;
}

.cards--full-width .card:first-child .card__image-wrapper {
  width: 100%;
}

.cards--full-width .card:first-child .card__details {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cards--full-width .card:first-child .card__details {
  padding-right: 5.33333333%;
  padding-left: 5.33333333%;
  background: #fff;
}

.cards--full-width .card:nth-child(2n+3) {
  margin-right: 5.33333333%;
}

.cards--full-width .card:nth-child(2n+4) {
  clear: right;
}

@media (min-width: 1200px) {
  .cards--full-width .card:nth-child(2n+4) {
    clear: none;
  }
}

.cards p {
  margin: 0;
}

.cards--overlay .card:first-child {
  width: 100%;
  float: none;
  margin-bottom: 25px;
}

.cards--overlay .card:first-child .card__image-wrapper {
  width: 100%;
}

.cards--overlay .card:first-child .card__details {
  width: 88.8%;
  margin: 0 auto;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.cards--overlay .card:first-child .card__image-wrapper {
  position: relative;
}

.cards--overlay .card:first-child .card__details {
  z-index: 2;
  position: relative;
  margin-top: -15px;
  background-color: #fff;
  padding-right: 5.33333333%;
  padding-left: 5.33333333%;
}

.cards--overlay .card:nth-child(2n+3) {
  padding-left: 1.5%;
  padding-right: 2.5%;
  margin-left: 2%;
}

.cards--overlay .card:nth-child(2n+2) {
  padding-right: 2.5%;
  padding-left: 1.5%;
  margin-right: 2.5%;
}

.cards--overlay .card:nth-child(2n+4) {
  clear: right;
}

@media (min-width: 1200px) {
  .cards--overlay .card:nth-child(2n+4) {
    clear: none;
  }
}

.cards--divide .card:first-child {
  width: 100%;
  float: none;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}

.cards--divide .card:first-child .card__image-wrapper {
  width: 100%;
}

.cards--divide .card:first-child .card__details {
  width: 88.8%;
  margin: 0 auto;
  text-align: center;
}

.cards--divide .card:first-child .card__image-wrapper,
.cards--divide .card:first-child .card__details {
  width: 50%;
  vertical-align: top;
}

.cards--divide .card:first-child .card__image-wrapper {
  width: 100%;
  display: block;
}

.cards--divide .card:first-child .card__details {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
  padding-right: 5.33333333%;
  padding-left: 5.33333333%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
}

.cards--divide .card:first-child .card__details::before {
  position: absolute;
  left: -25px;
  top: 70px;
  content: '';
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid rgba(255, 255, 255, 0.8);
}

.cards--divide .card:nth-child(2n+3) {
  padding-left: 1.5%;
  padding-right: 2.5%;
  margin-left: 2%;
}

.cards--divide .card:nth-child(2n+2) {
  padding-right: 2.5%;
  padding-left: 1.5%;
  margin-right: 2.5%;
}

.cards--divide .card::after {
  clear: both;
  content: '';
  display: table;
}

.card--videos .card__image-wrapper {
  position: relative;
}

.card--videos .card__image-wrapper:after {
  position: absolute;
  content: url(/images/play-icon.png?d5cbc6bfc1b19f3fe2575a1c952d018c);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
}

@media (min-width: 1200px) {
  .cards--2 {
    text-align: center;
  }

  .cards--2 .card {
    float: none;
    display: inline-block;
  }

  .cards--full-width {
    margin-bottom: 50px;
  }

  .cards--full-width .card {
    width: 31.82214473%;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    float: right;
    margin-bottom: 25px;
  }

  .cards--full-width .card + .card {
    margin-right: 2.17959895%;
  }

  .cards--full-width .card:nth-child(3n + 1) {
    margin-right: 0;
  }

  .cards--full-width .card:first-child {
    width: 31.82214473%;
    float: right;
  }

  .section--secondary .cards--full-width .card__details {
    background: #fff;
  }

  .cards--full-width .card__details,
  .cards--full-width .card:first-child .card__details {
    padding-right: 1.74367916%;
    padding-left: 1.74367916%;
  }

  .cards--divide {
    margin: 0 auto 50px;
    max-width: 1180px;
  }

  .cards--divide .card {
    width: 31.82214473%;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    float: right;
  }

  .cards--divide .card + .card {
    margin-right: 2.17959895%;
  }

  .cards--divide .card:nth-child(2n+2),
  .cards--divide .card:nth-child(2n+3) {
    padding: 0;
    margin-left: 0;
  }

  .cards--divide .card .card__details {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .cards--divide .card:first-child {
    width: 31.82214473%;
    float: right;
  }

  .cards--divide .card:first-child .card__details {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
  }

  .cards--divide .card:first-child .card__details:after {
    content: none;
  }

  .section--secondary .cards--divide .card__details {
    background: #fff;
  }

  .cards--divide .card__details,
  .cards--divide .card:first-child .card__details {
    padding-right: 1.74367916%;
    padding-left: 1.74367916%;
  }

  .cards--overlay {
    max-width: 1180px;
    margin: 0 auto;
  }

  .cards--overlay .card {
    margin-bottom: 25px;
    float: right;
    width: 31.82214473%;
  }

  .cards--overlay .card .card__image-wrapper {
    position: relative;
  }

  .cards--overlay .card:first-child {
    float: right;
    width: 31.82214473%;
  }

  .cards--overlay .card:first-child .card__details {
    margin-top: -115px;
  }

  .cards--overlay .card + .card {
    margin-right: 2.17959895%;
  }

  .cards--overlay .card:nth-child(3n + 1) {
    margin-right: 0;
  }

  .cards--overlay .card:nth-child(2n+3),
  .cards--overlay .card:nth-child(2n+2) {
    padding: 0;
    margin-left: 0;
  }

  .cards--overlay .card .card__details {
    z-index: 2;
    position: relative;
    background-color: #fff;
    padding-right: 5.33333333%;
    padding-left: 5.33333333%;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    width: 88.8%;
    text-align: center;
    left: 0;
    right: 0;
    margin: -115px auto 0;
  }

  .cards--grid .card {
    width: 31.82214473%;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
  }

  .cards--grid .card .card__details {
    padding-right: 5.33333333%;
    padding-left: 5.33333333%;
    background: #fff;
  }

  .cards--grid .card:nth-child(2n+1) {
    clear: none;
  }

  .cards .card__details {
    background-color: #fff;
  }

  .cards .card:not(:nth-child(3n+1)) {
    margin-right: 2.17959895%;
  }

  .cards .card:nth-child(3n + 1) {
    margin-right: 0;
    clear: right;
  }
}

.about-author {
  padding-bottom: 0;
}

.about-author__imageWrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 118px;
  height: 118px;
  border: 3px solid #fff;
  margin: 0 auto;
  position: relative;
}

.about-author__details {
  background-color: #1a8dd8;
  padding: 80px 8% 45px;
  color: #fff;
  font-size: 1.6em;
  margin-top: -60px;
}

.about-author__details__title {
  font-weight: 700;
  margin: 0 0 15px;
  font-size: 1.6em;
}

.about-author__details__title::after {
  border-color: #fff;
}

.about-author__details__subtitle {
  font-size: 1.6em;
}

.about-author__details__overview {
  margin: 24px 0 35px;
  line-height: 2;
}

.about-author__details__action {
  margin: 0;
}

.about-author__details a {
  color: #fff;
}

.actions {
  background: url(/images/pink-dotted.jpg?24dd8d92cfe919f8ddcb356c334cb389) repeat;
  padding: 40px 0 100px;
}

@media (min-width: 1200px) {
  .actions {
    padding: 0;
  }

  .actions .container {
    max-width: none;
  }

  .actions .social-share .social-share__list__item {
    width: 49px;
    height: 49px;
  }
}

.actions ul {
  list-style: none;
  text-align: center;
}

.actions ul li {
  display: inline-block;
}

@media (min-width: 1200px) {
  .actions .section-title {
    margin-bottom: 27px;
  }
}

.actions .section-title::after {
  content: none;
}

.actions .actions__sign {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .actions .actions__sign {
    margin-top: 0;
  }
}

.actions .actions__sign .actions__sign__list {
  box-shadow: 0 1px 0 0 #ff90c5, inset -1px 0 0 #ff90c5;
  -moz-box-shadow: 0 1px 0 0 #ff90c5, inset -1px 0 0 #ff90c5;
  -webkit-box-shadow: 0 1px 0 0 #ff90c5, inset -1px 0 0 #ff90c5;
  padding: 0;
  border-bottom: 1px solid #e55cad;
  border-top: 1px solid #e55cad;
}

@media (min-width: 1200px) {
  .actions .actions__sign .actions__sign__list {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.actions .actions__sign .actions__sign__list__item {
  background-color: #ce539b;
  width: 50%;
  float: right;
}

@media (min-width: 1200px) {
  .actions .actions__sign .actions__sign__list__item {
    background-color: #e55cad;
    width: 47%;
    float: none;
    border: solid 1px white;
    border-right: solid 1px white;
  }

  .actions .actions__sign .actions__sign__list__item:hover {
    background-color: #9dc819;
    border-color: #9dc819;
    border-right-color: #9dc819;
    position: relative;
  }

  .actions .actions__sign .actions__sign__list__item:hover:before {
    content: '';
    width: 10px;
    height: 1px;
    display: block;
    background-color: white;
    position: absolute;
    top: 50%;
  }

  .actions .actions__sign .actions__sign__list__item:hover:after {
    content: '';
    width: 10px;
    height: 1px;
    display: block;
    left: 0;
    background-color: white;
    position: absolute;
    top: 50%;
  }
}

.actions .actions__sign .actions__sign__list__item + .actions__sign__list__item {
  position: relative;
}

.actions .actions__sign .actions__sign__list__item + .actions__sign__list__item:before {
  content: '';
  width: 1px;
  height: 100%;
  display: block;
  right: 0;
  background-color: #e55cad;
  position: absolute;
}

@media (min-width: 1200px) {
  .actions .actions__sign .actions__sign__list__item + .actions__sign__list__item {
    margin-right: 10px;
  }

  .actions .actions__sign .actions__sign__list__item + .actions__sign__list__item:before {
    height: 0;
  }

  .actions .actions__sign .actions__sign__list__item + .actions__sign__list__item:hover:before {
    content: '';
    width: 10px;
    height: 1px;
    display: block;
    background-color: white;
    position: absolute;
    top: 50%;
  }
}

.actions .actions__sign .actions__sign__list__item a {
  display: block;
  padding: 35px 0;
  text-align: center;
  color: #fff;
  font-size: 1.8em;
}

@media (min-width: 1200px) {
  .actions .actions__sign .actions__sign__list__item a {
    padding: 15px 2px;
    font-size: 1.6em;
  }

  .actions .actions__sign .actions__sign__list__item a:hover {
    text-decoration: none;
  }
}

.actions .actions__tags {
  padding: 43px 0;
}

@media (min-width: 1200px) {
  .actions .actions__tags {
    padding: 0;
  }
}

.actions .actions__tags .action__tags__list {
  padding: 0;
  max-width: 92%;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1200px) {
  .actions .actions__tags .action__tags__list {
    text-align: right;
    max-width: none;
  }
}

@supports ((display: -webkit-box) or (display: flex)) {
  .actions .actions__tags .action__tags__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

@media (min-width: 1200px) {
    .actions .actions__tags .action__tags__list {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      max-height: 290px;
    }

    .actions .actions__tags .action__tags__list li {
      float: none;
    }
}
}

.actions .actions__tags .action__tags__list .action__tags__list__item {
  position: relative;
  float: right;
  background-color: #ce539b;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .actions .actions__tags .action__tags__list .action__tags__list__item {
    background-color: initial;
    display: inline-block;
    float: none;
    margin-bottom: 10px;
    position: relative;
  }

  .actions .actions__tags .action__tags__list .action__tags__list__item:before {
    content: '';
    display: block;
    width: 1px;
    height: 1px;
    background-color: white;
    border: solid 3px white;
    border-radius: 50%;
    position: absolute;
    right: -16px;
    top: 50%;
  }
}

.actions .actions__tags .action__tags__list .action__tags__list__item a {
  padding: 8px 10px;
  color: #fff;
  display: block;
  font-size: 1.6em;
}

.actions .actions__tags .action__tags__list .action__tags__list__item + .action__tags__list__item {
  margin-right: 1.33333333%;
}

.actions .actions__more-info {
  margin-top: 36px;
}

.actions .actions__more-info .actions__more-info__list {
  padding: 0;
  max-width: 91.73333333%;
  margin: 0 auto;
  text-align: center;
}

.actions .actions__more-info .actions__more-info__list__item {
  padding: 0 4.8%;
  text-align: center;
  float: none;
  display: inline-block;
}

.actions .actions__more-info .actions__more-info__list__item + .actions__more-info__list__item {
  border-right: 1px solid #fff;
}

.actions .actions__more-info .actions__more-info__list__item a {
  color: #fff;
  font-size: 1.6em;
}

.actions .corporate-links {
  text-align: center;
  padding: 0;
  font-size: 0;
  margin-top: 30px;
}

.actions .corporate-links li {
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  padding: 0 15px;
}

.actions .corporate-links li + li {
  border-right: 1px solid #fff;
}

.actions .corporate-links a {
  color: #fff;
  font-size: 1.6em;
}

.actions__download {
  -webkit-box-shadow: 0 8px 6px -6px #ff72c5;
          box-shadow: 0 8px 6px -6px #ff72c5;
  border-bottom: 1px solid #af4784;
  padding: 40px 0;
  color: #fff;
}

@media (min-width: 1200px) {
  .actions__download {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: none;
    padding: 0;
  }
}

.actions__download .actions__download__title {
  font-size: 1.8em;
  text-align: center;
  line-height: 2;
  max-width: 58.66666667%;
  margin: 0 auto;
  font-weight: normal;
}

@media (min-width: 1200px) {
  .actions__download .actions__download__title {
    max-width: none;
  }
}

.actions__download__list {
  margin: 30px auto 0;
  max-width: 335px;
  text-align: center;
}

@media (min-width: 1200px) {
  .actions__download__list {
    margin-top: 20px;
  }
}

.actions__download__list .actions__download__list__item {
  width: 157px;
  display: inline-block;
}

@media (min-width: 1200px) {
  .actions__download__list .actions__download__list__item {
    margin-top: 10px;
  }
}

.actions__download__list .actions__download__list__item a {
  display: block;
}

.actions__download__list .actions__download__list__item img,
.actions__download__list .actions__download__list__item svg {
  max-width: 100%;
  vertical-align: top;
}

.actions__download__list .actions__download__list__item svg {
  height: 46px;
  width: 157px;
}

@media (min-width: 1200px) {
  .row {
    max-width: 1440px;
    margin: 0 auto;
  }

  .row::before,
  .row::after {
    content: "";
    display: table;
  }

  .row::after {
    clear: both;
  }

  .row .column {
    width: 33.2%;
    float: right;
    padding: 0 3.64963504%;
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
  }

  .row .column + .column:before {
    content: '';
    -webkit-box-shadow: 1px 6px 0px 0px #ff72c5;
            box-shadow: 1px 6px 0px 0px #ff72c5;
    width: 1px;
    height: 265px;
    display: block;
    position: absolute;
    background-color: #af4784;
    right: 0;
  }

  .search {
    text-align: center;
    margin-bottom: 53px;
  }

  .search .search-title {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
  }

  .search .search-form-container {
    background-color: initial;
    padding: 0;
  }

  .search #search-form .input-group {
    width: 100%;
  }

  .search #search-form button {
    left: 3%;
  }

  .search #search-field {
    border: none;
    font-size: 1.4em;
  }
}

.social-share .social-share__list {
  max-width: 326px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.social-share .social-share__list__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ce539b;
  display: inline-block;
}

.social-share .social-share__list__item + .social-share__list__item {
  margin-right: 4px;
}

.social-share .social-share__list__item a {
  display: block;
  text-align: center;
  height: 100%;
  position: relative;
  line-height: 42px;
}

@media (min-width: 1200px) {
  .social-share .social-share__list__item a {
    line-height: 48px;
  }
}

.social-share .social-share__list__item a svg {
  vertical-align: middle;
  margin: 0 auto;
  fill: #fff;
}

.social-share .social-share__list__item--fb svg {
  width: 16px;
  height: 34px;
}

.social-share .social-share__list__item--twitter svg {
  width: 44px;
  height: 33px;
}

.social-share .social-share__list__item--instagram svg {
  width: 32px;
  height: 35px;
}

.social-share .social-share__list__item--google svg {
  width: 31px;
  height: 34px;
}

.social-share .social-share__list__item--utube svg {
  width: 28px;
  height: 37px;
}

.social-share .social-share__list__item--pinterest svg {
  width: 32px;
  height: 35px;
  fill: #fff;
}

.social-share .social-share__list__item--dailymotion svg {
  width: 32px;
  height: 30px;
  fill: #fff;
}

.social-share .social-share__list__item--tumblr svg {
  width: 32px;
  height: 30px;
  fill: #fff;
}

.social-share .social-share__list__item:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.social-share .social-share__list__item--fb:hover {
  background: #3b5998;
}

.social-share .social-share__list__item--utube:hover {
  background-color: #d82524;
}

.social-share .social-share__list__item--google:hover {
  background-color: #dc4a38;
}

.social-share .social-share__list__item--instagram:hover {
  background-color: #893dc2;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent);
}

.social-share .social-share__list__item--twitter:hover {
  background-color: #1da1f2;
}

.social-share .social-share__list__item--pinterest:hover {
  background-color: #bd081c;
}

.social-share .social-share__list__item--dailymotion:hover {
  background-color: #03c4f7;
}

.social-share .social-share__list__item--tumblr:hover {
  background-color: #304f69;
}

.banner-slider + .cards__read-more {
  margin-top: 50px;
}

.banner-slider .card {
  text-align: center;
  margin-bottom: 10px;
}

.banner-slider--overlay .card {
  width: 100%;
  margin-bottom: 25px;
}

.banner-slider--overlay .card .card__image-wrapper {
  width: 100%;
}

.banner-slider--overlay .card .card__details {
  width: 88.8%;
  margin: 0 auto;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.banner-slider--overlay .card .card__image-wrapper {
  position: relative;
}

.banner-slider--overlay .card .card__details {
  z-index: 2;
  position: relative;
  margin-top: -15px;
  background-color: #fff;
  padding-right: 5.33333333%;
  padding-left: 5.33333333%;
}

.banner-slider .slick-next,
.banner-slider .slick-prev {
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 25%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

.theme--blue .banner-slider .slick-next,
.theme--blue .banner-slider .slick-prev {
  background-color: #1a8dd8;
}

.theme--blue .banner-slider .slick-next:hover,
.theme--blue .banner-slider .slick-prev:hover {
  background-color: rgba(26, 141, 216, 0.65);
}

.theme--purple .banner-slider .slick-next,
.theme--purple .banner-slider .slick-prev {
  background-color: #ce539b;
}

.theme--purple .banner-slider .slick-next:hover,
.theme--purple .banner-slider .slick-prev:hover {
  background-color: rgba(206, 83, 155, 0.65);
}

.theme--green .banner-slider .slick-next,
.theme--green .banner-slider .slick-prev {
  background-color: #9dc819;
}

.theme--green .banner-slider .slick-next:hover,
.theme--green .banner-slider .slick-prev:hover {
  background-color: rgba(157, 200, 25, 0.65);
}

.banner-slider .slick-next svg,
.banner-slider .slick-prev svg {
  height: 17px;
  width: 13px;
  fill: #fff;
}

.banner-slider .slick-next:before,
.banner-slider .slick-prev:before {
  content: '';
}

.banner-slider .slick-next {
  left: 19px;
  right: auto;
}

.banner-slider .slick-prev {
  right: 19px;
  left: auto;
}

.banner-slider .slick-dots li {
  margin: 0 2px;
}

.banner-slider .slick-dots li button:before {
  font-size: 11px;
  color: #b4b4b4;
  opacity: 1;
}

.banner-slider .slick-dots li.slick-active button:before {
  color: #ce539b;
}

.theme--purple .banner-slider .slick-dots li.slick-active button:before {
  color: #ce539b;
}

.theme--blue .banner-slider .slick-dots li.slick-active button:before {
  color: #1a8dd8;
}

.theme--green .banner-slider .slick-dots li.slick-active button:before {
  color: #9dc819;
}

.banner-slider-container {
  padding: 0;
}

@media (min-width: 1200px) {
  .banner-slider .slick-next,
  .banner-slider .slick-prev {
    top: 35%;
  }

  .banner-slider .card {
    margin-bottom: 25px;
  }

  .banner-slider .card .card__image-wrapper {
    position: relative;
  }

  .banner-slider .card .card__details {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    width: 88.8%;
    text-align: center;
    z-index: 2;
    position: relative;
    background-color: #fff;
    padding-right: 5.33333333%;
    padding-left: 5.33333333%;
    left: 0;
    right: 0;
    margin: -90px auto 0;
  }

  .banner-slider--overlay .card:not(.slick-active) .card__details {
    display: none;
  }

  .banner-slider--overlay .slick-active .product-details {
    display: block;
  }

  .banner-slider--overlay .card .card__details {
    margin-top: -115px;
  }

  .banner-slider--overlay .card:not(.slick-active) {
    position: relative;
  }

  .banner-slider--overlay .card:not(.slick-active):after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .theme--blue .banner-slider--overlay .slick-next,
  .theme--blue .banner-slider--overlay .slick-prev,
  .theme--green .banner-slider--overlay .slick-next,
  .theme--green .banner-slider--overlay .slick-prev,
  .theme--purple .banner-slider--overlay .slick-next,
  .theme--purple .banner-slider--overlay .slick-prev {
    background-color: transparent;
    width: 25px;
    height: 40px;
  }

  .theme--blue .banner-slider--overlay .slick-next:hover,
  .theme--blue .banner-slider--overlay .slick-prev:hover,
  .theme--green .banner-slider--overlay .slick-next:hover,
  .theme--green .banner-slider--overlay .slick-prev:hover,
  .theme--purple .banner-slider--overlay .slick-next:hover,
  .theme--purple .banner-slider--overlay .slick-prev:hover {
    background: none;
  }

  .banner-slider--overlay .slick-next,
  .banner-slider--overlay .slick-prev {
    top: 40%;
  }

  .banner-slider--overlay .slick-next svg,
  .banner-slider--overlay .slick-prev svg {
    width: 25px;
    height: 40px;
  }

  .banner-slider--hero {
    max-width: 67.21311475%;
    float: right;
  }

  .hero-wrapper {
    max-width: 1180px;
    margin: 30px auto 0;
  }

  .hero-wrapper .image-card {
    width: 24.59016393%;
    float: right;
    margin-right: 2.63157895%;
    margin-bottom: 30px;
  }

  .hero-wrapper .ads {
    width: 24.59016393%;
    float: right;
    margin-right: 2.63157895%;
  }

  .hero-wrapper .banner-slider {
    margin-top: 0;
  }
}

.article-tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-tags li {
  font-size: 1.6em;
  display: inline-block;
}

.article-tags li + li {
  margin-right: 6.4%;
}

.go-to-list {
  max-width: 89.86666667%;
  margin: 20px auto 20px;
  list-style: none;
  padding: 0;
}

.go-to-list li {
  background: #f4f4f4;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  position: relative;
  height: 72px;
  line-height: 72px;
  margin-bottom: 10px;
}

.go-to-list li a {
  display: block;
  font-size: 1.6em;
  color: #000;
  padding: 0 20px;
}

.go-to-list li a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.go-to-list li:after {
  content: url(/fonts/go-to-arrows.svg?78d3a86bebf5cee21d40e4ed357b9eb8);
  position: absolute;
  top: 0;
  left: 24px;
  pointer-events: none;
}

.go-to-list--secondary {
  margin-top: 0;
  padding-top: 0;
}

@media (min-width: 1200px) {
  .go-to-list {
    width: 50%;
    float: right;
  }

  .go-to-list + .ads {
    float: right;
    width: 50%;
    margin-top: 0;
  }
}

.article__header {
  margin: 0 18px 30px;
}

@media (min-width: 1200px) {
  .article__header {
    margin-right: 0;
  }
}

.article__header__title {
  font-size: 1.8em;
  line-height: 1.5;
  color: #000;
  margin: 25px 0;
}

.article__header .article__header__publish-date {
  font-size: 1.4em;
  color: #7e7e7e;
  margin: 0;
  display: inline-block;
  direction: ltr;
}

.article__header .article__duration {
  font-size: 1.4em;
  color: #7e7e7e;
  display: inline-block;
  margin: 0;
}

.article__header .article__duration::before {
  content: ' | ';
}

.article__imageWrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 1200px) {
  .article__imageWrapper {
    max-width: 60%;
    margin: 0 auto;
  }
}

.article__imageWrapper picture,
.article__imageWrapper img {
  width: 100%;
}

.article__save {
  margin: 0;
  float: left;
  padding: 0;
  background-color: transparent;
  border: 0;
}

.article__save svg {
  width: 23px;
  height: 23px;
  fill: #000;
  vertical-align: top;
}

.article__save:hover,
.article__save:focus,
.article__save.active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.article__save:hover svg,
.article__save:focus svg,
.article__save.active svg {
  fill: #e55cad;
}

.quiz-result__description {
  font-size: 1.6em;
  font-weight: 700;
  margin: 0;
  color: #e55cad;
}

.quiz-result__imageWrapper {
  margin: 25px 0;
  display: block;
}

.quiz-result__imageWrapper img {
  width: 100%;
}

.quiz-result__text {
  font-size: 1.6em;
  margin-bottom: 25px;
}

.quiz-result__share {
  text-align: center;
}

.quiz-result__share p {
  margin: 0 0 10px;
  font-size: 1.6em;
  color: #e55cad;
}

.quiz-result .repeat-quiz {
  text-align: left;
  margin-top: 45px;
}

.quiz-result .repeat-quiz a {
  color: #7e7e7e;
  font-size: 1.6em;
  text-decoration: underline;
  display: inline-block;
}

.quiz-result .repeat-quiz a:hover {
  text-decoration: none;
}

.quiz-result .addthis_inline_share_toolbox {
  text-align: center;
}

.horizontal-list--list-view {
  color: #000;
  margin: 35px 0 0;
  list-style: none;
  padding: 0;
}

.horizontal-list--list-view li {
  height: 75px;
  line-height: 70px;
  border-bottom: 1px solid #cccccc;
}

.horizontal-list--list-view li:nth-child(3) svg {
  width: 28px;
  height: 36px;
}

.horizontal-list--list-view li:nth-child(7) svg {
  width: 38px;
  height: 17px;
}

.horizontal-list--list-view li:nth-child(8) svg {
  width: 26px;
  height: 30px;
}

.horizontal-list--list-view li:nth-child(10) svg {
  width: 25px;
  height: 34px;
}

.horizontal-list--list-view li a {
  display: block;
  color: inherit;
  font-size: 1.6em;
  padding: 0 5.33333333%;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}

.horizontal-list--list-view li a:hover {
  color: #e55cad;
}

.horizontal-list--list-view li a:hover svg {
  fill: #e55cad;
}

.horizontal-list--list-view li svg,
.horizontal-list--list-view li span {
  display: inline-block;
  vertical-align: middle;
}

.horizontal-list--list-view li span {
  padding-right: 20px;
}

.horizontal-list--list-view li svg {
  fill: inherit;
  height: 31px;
  width: 31px;
}

.horizontal-list--guide.horizontal-list--list-view li:nth-child(2) {
  background-color: #e8f3fb;
}

.horizontal-list--guide.horizontal-list--list-view li:nth-child(4) {
  background-color: #fceef7;
}

.horizontal-list--guide.horizontal-list--list-view li:nth-child(6) {
  background-color: #f6fbe8;
}

.horizontal-list--guide.horizontal-list--list-view li:nth-child(8) {
  background-color: #fff8e6;
}

.horizontal-list--guide.horizontal-list--list-view li:nth-child(10) {
  background-color: #f8f8f8;
}

#shape-birthday {
  width: 25px;
  height: 34px;
}

#shape-children-shops {
  width: 32px;
  height: 28px;
}

#shape-events {
  width: 30px;
  height: 25px;
}

#shape-hospitals {
  width: 31px;
  height: 21px;
}

#shape-pregnancy-clothes {
  width: 26px;
  height: 30px;
}

.guide-container--grid .scan-2 svg {
  width: 42px;
}

.guide-container--grid .children-activity-2 svg {
  width: 48px;
}

#search-form {
  width: 100%;
  position: relative;
}

#search-form .input-group {
  width: 89.33333333%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  #search-form .input-group {
    width: 50%;
  }
}

#search-form button {
  position: absolute;
  background: transparent;
  border: 0;
  top: 20%;
  left: 8%;
  line-height: 1;
}

@media (min-width: 1200px) {
  #search-form button {
    left: 28%;
  }
}

#search-form button svg {
  width: 24px;
  height: 24px;
  fill: #000;
}

#search-form button:hover svg {
  fill: #e55cad;
}

#search-field {
  border-radius: 25px;
  border: 1px solid #cccccc;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  width: 100%;
  position: relative;
  color: #7e7e7e;
  font-size: 1.6em;
}

#search-field ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7e7e7e;
}

#search-field ::-moz-placeholder {
  /* Firefox 19+ */
  color: #7e7e7e;
}

#search-field :-ms-input-placeholder {
  /* IE 10+ */
  color: #7e7e7e;
}

#search-field :-moz-placeholder {
  /* Firefox 18- */
  color: #7e7e7e;
}

.search-form-container {
  background-color: #f4f4f4;
  padding-top: 30px;
  padding-bottom: 30px;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-list li {
  padding: 30px 20px;
}

@media (min-width: 1200px) {
  .download-list li {
    text-align: left;
    padding: 20px;
  }

  .download-list li p {
    text-align: right;
  }
}

.download-list li:nth-child(2n) {
  background-color: #f4f4f4;
}

.download-list li + li {
  border-top: 1px solid #ccc;
}

.download-list svg {
  width: 28px;
  height: 22px;
  fill: #e55cad;
  vertical-align: middle;
  margin-left: 12px;
}

.download-list a {
  color: #e55cad;
  font-size: 1.6em;
}

.download-list p {
  line-height: 2.25;
  font-size: 1.6em;
  color: #000;
  margin: 0 0 25px;
}

@media (min-width: 1200px) {
  .downloads-desktop-container {
    width: 60%;
    float: right;
  }

  .downloads-desktop-container .filter-container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .filter-container {
    max-width: 60%;
  }
}

.filter-container .select-wrapper {
  position: relative;
  border-top: 1px solid rgba(204, 204, 204, 0.8);
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}

.filter-container .select-wrapper select {
  width: 100%;
  height: 80px;
  background-color: #fceef7;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0 5.33333333%;
  font-size: 1.6em;
  color: #000;
}

.filter-container .select-wrapper svg {
  height: 8px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 8.8%;
  fill: #000;
}

.ask-form {
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .ask-form {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

.ask-form label {
  width: 100%;
  font-size: 1.6em;
}

.ask-form textarea {
  width: 100%;
  margin-top: 19px;
  border: 1px solid #d3d3d3;
  font-size: 1.6em;
  padding: 10px;
}

.ask-form .button {
  margin: 25px auto 0;
}

.ask-form .ask-disclaimer {
  font-size: 1.4em;
  margin: 0;
  color: #7e7e7e;
}

.ask-text-container {
  margin-bottom: 20px;
}

.ask-text-container label {
  color: #e55cad;
  font-size: 1.4em;
}

.ask-checkbox-container label {
  font-size: 1.4em;
  color: #7e7e7e;
}

.thread-card--blue .user-info__name,
.thread-card--blue .answer-tag a {
  color: #1a8dd8;
}

.thread-card--blue .user-info__name svg,
.thread-card--blue .answer-tag a svg {
  fill: #1a8dd8;
}

.thread-card--green .user-info__name,
.thread-card--green .answer-tag a {
  color: #9dc819;
}

.thread-card--green .user-info__name svg,
.thread-card--green .answer-tag a svg {
  fill: #9dc819;
}

.thread-card--purple .user-info__name,
.thread-card--purple .answer-tag a {
  color: #e55cad;
}

.thread-card--purple .user-info__name svg,
.thread-card--purple .answer-tag a svg {
  fill: #e55cad;
}

@media (min-width: 1200px) {
  .user-info {
    display: inline-block;
    float: right;
    width: 30%;
  }
}

.user-info__meta {
  margin-right: 10px;
}

.user-info__name {
  font-size: 1.6em;
  color: #1a8dd8;
  font-weight: normal;
  margin: 0;
}

@media (min-width: 1200px) {
  .user-info__name {
    font-size: 2em;
  }
}

.user-info__date {
  font-size: 1.4em;
  margin: 0;
}

.user-info__image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .user-info__image-wrapper {
    width: 70px;
    height: 70px;
  }
}

.user-info__image-wrapper svg {
  width: 40px;
  height: 40px;
}

@media (min-width: 1200px) {
  .user-info__image-wrapper svg {
    width: 70px;
    height: 70px;
  }
}

.user-info__meta,
.user-info__image-wrapper {
  float: right;
}

.thread-card p {
  margin: 0;
}

.thread-card .user-text {
  margin: 15px 0px;
  font-size: 1.6em;
}

@media (min-width: 1200px) {
  .thread-card .user-text {
    min-height: 70px;
    padding-right: 30px;
    margin-top: 0;
  }
}

.thread-card--question {
  padding: 30px 0 20px;
  position: relative;
}

.thread:nth-child(2) .thread-card--question {
  padding: 0 0 30px;
}

.section--secondary .thread:nth-child(2n+1) {
  background: transparent;
}

.thread-card--answer {
  padding: 30px 15px;
  margin-right: 10px;
}

.answer-tag {
  text-align: left;
  position: absolute;
  color: #1a8dd8;
  bottom: 0;
  left: 5px;
  width: 100%;
}

.answer-tag:before {
  content: '';
  background: rgba(204, 204, 204, 0.8);
  width: 70%;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
}

@media (min-width: 1200px) {
  .answer-tag:before {
    width: 90%;
  }
}

.answer-tag svg {
  width: 12px;
  height: 8px;
  margin-right: 10px;
}

.answer-tag a {
  font-size: 1.6em;
}

.thread-start .container {
  padding-right: 50px;
}

#reply {
  width: calc(100% - 50px);
  font-size: 1.4em;
  color: #000;
  margin-top: 10px;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  #reply {
    width: 60%;
    margin-right: 40px;
    height: 200px;
  }
}

#reply:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1200px) {
  .form-reply {
    position: relative;
  }
}

.form-reply button {
  float: left;
  border: 0;
  background: none;
  font-size: 1.2em;
}

@media (min-width: 1200px) {
  .form-reply button {
    float: none;
    position: absolute;
    right: 71%;
  }
}

.theme--blue .form-reply button {
  color: #1a8dd8;
}

.theme--green .form-reply button {
  color: #9dc819;
}

.theme--purple .form-reply button {
  color: #e55cad;
}

.form-reply .input-group {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .form-reply .input-group {
    margin-top: 50px;
  }
}

.more-button {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .more-button {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  .threads-container > .threads {
    width: 65%;
    float: right;
  }
}

@media (min-width: 1200px) {
  .threads-container > .ads {
    max-width: 23%;
    margin: 0 2%;
    float: right;
  }
}

.ads {
  text-align: center;
}

.guide-container .ads {
  margin-top: 50px;
  padding: 0;
}

.guide-container + .ads {
  margin-bottom: 30px;
}

.ads--last-item {
  margin-bottom: 30px;
}

.ad-on-the-side {
  float: left;
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

@media (max-width: 767px) {
  .ad-on-the-side {
    float: none;
    position: static;
  }
}

.toast-bottom-right {
  bottom: 50px !important;
}

.user-bio {
  padding: 50px 0;
  text-align: center;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.user-bio .container {
  position: relative;
  z-index: 2;
}

.user-bio form {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .user-bio form p {
    display: inline-block;
  }

  .user-bio form p + p {
    margin-right: 10px;
  }

  .user-bio form fieldset {
    width: 45%;
    display: inline-block;
    text-align: right;
  }

  .user-bio form fieldset:nth-child(2) {
    margin-left: 5%;
  }

  .user-bio form fieldset:first-child {
    display: block;
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }
}

.user-bio:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(79, 79, 79, 0.8);
  height: 100%;
}

.user-bio .user-bio__image-wrapper {
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  margin: 0 auto 25px;
  display: block;
}

.user-bio .user-bio__image-wrapper img {
  width: 100%;
}

@media (min-width: 1200px) {
  .user-bio .user-bio__image-wrapper {
    width: 200px;
    height: 200px;
  }
}

.user-bio .user-bio__name {
  font-size: 1.8em;
  font-weight: normal;
}

.user-bio .user-bio__overview {
  font-size: 1.6em;
}

@media (min-width: 1200px) {
  .user-bio .user-bio__overview {
    max-width: 600px;
    margin: 0 auto;
  }
}

.user-bio--light {
  background-color: #fff;
  color: #000;
  background-image: none;
}

.user-bio--light::after {
  content: none;
}

.user-bio__button-container {
  margin: 0;
}

.user-bio__button-container + .user-bio__button-container {
  margin-top: 30px;
}

.user-bio__button-container .button {
  width: 250px;
}

@media (min-width: 1200px) {
  .user-bio__button-container {
    width: 45%;
    display: inline-block;
  }
}

.register-choose-image {
  cursor: pointer;
}

.register-choose-image:hover {
  color: #e55cad;
}

.tabs-nav--scrollable ul {
  list-style: none;
  padding: 0;
  overflow-x: scroll;
  white-space: nowrap;
  margin-right: 5.33333333%;
  vertical-align: top;
}

@media (min-width: 1200px) {
  .tabs-nav--scrollable ul {
    overflow: initial;
    white-space: initial;
    margin: 0 auto;
  }

  .tabs-nav--scrollable ul .slick-next,
  .tabs-nav--scrollable ul .slick-prev {
    z-index: 2;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 40%;
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    background-color: #ce539b;
  }

  .tabs-nav--scrollable ul .slick-next:hover,
  .tabs-nav--scrollable ul .slick-prev:hover {
    background-color: rgba(206, 83, 155, 0.65);
  }

  .tabs-nav--scrollable ul .slick-next svg,
  .tabs-nav--scrollable ul .slick-prev svg {
    height: 17px;
    width: 13px;
    fill: #fff;
  }

  .tabs-nav--scrollable ul .slick-next:before,
  .tabs-nav--scrollable ul .slick-prev:before {
    content: '';
  }

  .tabs-nav--scrollable ul .slick-next {
    left: -40px;
    right: auto;
  }

  .tabs-nav--scrollable ul .slick-prev {
    right: -40px;
    left: auto;
  }
}

.tabs-nav--scrollable li {
  display: inline-block;
  width: 35.46666667%;
  height: 112px;
  white-space: normal;
  border-radius: 8px;
  position: relative;
  background: url(/fonts/steps-tabs.svg?f9f3ab34f4b9fa5052e936e8997a46b8) no-repeat center;
  background-color: rgba(0, 0, 0, 0.6);
  vertical-align: top;
}

@media (min-width: 1200px) {
  .tabs-nav--scrollable li {
    height: 70px;
    width: 100%;
  }
}

.tabs-nav--scrollable li + li {
  margin-right: 5px;
}

.tabs-nav--scrollable li a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 20px 0 5px;
  display: block;
  font-size: 1.8em;
  color: #fff;
  line-height: 1.6666666667;
}

.tabs-nav--scrollable li a:hover,
.tabs-nav--scrollable li a:focus {
  text-decoration: none;
}

.tabs-nav--scrollable li span {
  font-weight: 700;
  width: 100%;
  display: inline-block;
}

.tabs-nav--scrollable li.active,
.tabs-nav--scrollable li:hover {
  background-color: #e55cad;
}

.tabs-nav--scrollable ul::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1200px) {
  .tabs-nav--scrollable .slide-to {
    display: none;
  }
}

.tabs-nav--scrollable .slide-to svg {
  fill: #000;
  width: 13px;
  height: 16px;
}

.tabs-nav--scrollable .slide-to-left {
  float: left;
  margin-left: 5.33333333%;
}

.tabs-nav--scrollable .slide-to-right {
  float: right;
  margin-right: 5.33333333%;
}

.slide-to-left.disable,
.slide-to-right.disable {
  display: none;
}

.slide-to-left.disable svg,
.slide-to-right.disable svg {
  fill: #ccc;
}

.tabs-nav--default ul {
  list-style: none;
  padding: 0;
  margin-top: 0.26666667%;
}

@media (min-width: 1200px) {
  .tabs-nav--default ul {
    margin-top: 0.13333333%;
  }
}

.tabs-nav--default li {
  float: right;
  width: 49.86666667%;
  background: #666;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.tabs-nav--default li a {
  display: block;
  color: #fff;
  font-size: 1.6em;
}

.tabs-nav--default li + li {
  margin-right: 0.26666667%;
}

@media (min-width: 1200px) {
  .tabs-nav--default li + li {
    margin-right: 0.13333333%;
  }
}

.tabs-nav--default li span:before {
  content: '(';
}

.tabs-nav--default li span:after {
  content: ')';
}

.tabs-nav--default li.active {
  background: #e55cad;
  position: relative;
}

.tabs-nav--default li.active:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #e55cad;
}

.tabs-content__item {
  width: 100%;
}

.tabs-content__item {
  display: none;
}

.tabs-content__item.show {
  display: block;
}

.quiz {
  margin-top: 20px;
}

.quiz ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

.quiz li {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f4f4;
  color: #000;
  font-size: 1.4em;
}

.quiz li a {
  color: inherit;
  font-size: inherit;
}

.quiz li + li {
  margin-right: 5px;
}

.quiz li.active {
  background: #e55cad;
  color: #fff;
}

.quiz .tabs-nav {
  margin-bottom: 50px;
}

.question-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #e55cad;
  margin: 0 0 45px;
}

.question-choices {
  margin-bottom: 25px;
}

.question-choices .choice__item label {
  font-size: 1.6em;
  line-height: 1.875;
  color: #000;
}

.question-choices .choice__item {
  padding: 0 25px;
  height: 70px;
  line-height: 70px;
  border: 1px solid #ebebeb;
  background: #f9f9f9;
  width: 100%;
  border-radius: 8px;
}

.question-choices .choice__item input {
  padding-top: 20px;
}

.question-choices .choice__item + .choice__item {
  margin-top: 25px;
}

.quiz .tabs-nav--default li {
  float: none;
}

.menu-wrapper {
  position: absolute;
  top: 60px;
  right: 0;
  width: 80.8%;
  z-index: 100;
  height: 100%;
  display: none;
}

.menu-wrapper.show {
  display: inline-block;
  height: 100vh;
}

.menu-container {
  overflow: scroll;
  max-height: calc(100% - 108px);
  padding: 28px 0 45px;
  height: 100%;
  font-size: 1rem;
  background: url(/images/menu-background.jpg?7064c635cf00bf7ce79eecfff61c7b4a) repeat;
  text-align: right;
  width: 100%;
}

.menu-container .social-share .social-share__list__item {
  width: 42px;
  height: 42px;
}

.menu-container .button {
  width: auto;
  padding: 0 10px;
  min-width: 80px;
  font-size: 1.6em;
  height: 50px;
  line-height: 48px;
}

.menu-container .button:after,
.menu-container .button:before {
  width: 7.69230769%;
}

.menu-container .button + .button {
  margin-right: 3.7037037%;
}

.menu-container::-webkit-scrollbar {
  display: none;
}

.menu__actions {
  margin-top: 10px;
  margin-bottom: 38px;
}

.main-nav {
  margin: 20px 0 25px;
}

.main-nav ul {
  list-style: none;
  padding: 0;
}

.main-nav li {
  width: 100%;
}

@media (min-width: 1200px) {
  .main-nav li {
    width: auto;
    display: inline-block;
  }
}

.main-nav li a {
  display: block;
  color: #fff;
  font-size: 1.6em;
  font-weight: bold;
  padding: 0 23px;
  height: 55px;
  line-height: 53px;
  border-right: 7px solid transparent;
}

.main-nav li a:hover,
.main-nav li afocus,
.main-nav li a .active {
  border-right-color: #9dc819;
  background-color: rgba(0, 0, 0, 0.08);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1200px) {
  .main-nav li a:hover,
  .main-nav li afocus,
  .main-nav li a .active {
    border-right-color: transparent;
    background-color: transparent;
  }
}

.main-nav li a:hover svg,
.main-nav li afocus svg,
.main-nav li a .active svg {
  fill: #fff;
}

.main-nav li + li a {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .main-nav li + li a {
    border-top: none;
  }
}

.main-nav li svg {
  fill: #fff;
  margin-left: 10px;
}

.main-nav li ul a {
  font-weight: normal;
  padding-right: 35px;
}

.menu__user {
  text-align: center;
}

.menu__user .user__image-wrapper {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.menu__user .user__name {
  color: #fff;
  font-size: 1.8em;
  margin: 20px 0 40px;
}

.menu-eat {
  width: 24px;
  height: 30px;
}

.menu-names {
  width: 32px;
  height: 26px;
}

.menu-pregnancy-stages {
  width: 30px;
  height: 30px;
}

.menu-pregnancy-calculator {
  width: 34px;
  height: 34px;
}

.menu-delivery {
  width: 32px;
  height: 27px;
}

.menu-baby {
  width: 33px;
  height: 30px;
}

.menu-baby-starts {
  width: 28px;
  height: 32px;
}

.menu-download {
  width: 30px;
  height: 25px;
}

.menu-mother {
  width: 30px;
  height: 30px;
}

.menu-school {
  width: 31px;
  height: 31px;
}

.social-share__item--twitter-menu svg {
  width: 31px;
  height: 26px;
}

.menu-tools a.active,
.sub-menu a {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-tools a {
  position: relative;
}

.menu-tools a .go-to-arrows {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
  fill: #fff;
  height: 12px;
  width: 13px;
}

.menu-tools a.active .go-to-arrows {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.tools {
  overflow: scroll;
  white-space: nowrap;
  font-size: 0;
  margin-bottom: 30px;
  text-align: center;
}

.tools::-webkit-scrollbar {
  display: none;
}

.pregnancy-tools {
  padding: 40px 0 0;
}

.recipes-tools .tools {
  margin-bottom: 0;
}

.tool-card {
  width: 63.2%;
  display: inline-block;
  white-space: normal;
  font-size: 1rem;
  text-align: center;
  vertical-align: top;
}

@media (min-width: 1200px) {
  .tool-card {
    min-height: auto;
  }
}

.tool-card a {
  display: block;
  text-decoration: none;
  padding: 25px 5.33333333%;
}

.tool-card:first-child svg {
  width: 30px;
  height: 30px;
}

.tool-card:nth-child(2) svg {
  height: 36px;
  width: 37px;
}

.tool-card:nth-child(3) svg {
  height: 30px;
  width: 31px;
}

.theme--blue .tool-card {
  background: #1a8dd8;
}

.theme--blue .tool-card:hover {
  background: rgba(26, 141, 216, 0.8);
}

.theme--purple .tool-card {
  background: #e55cad;
}

.theme--purple .tool-card:hover {
  background: rgba(229, 92, 173, 0.8);
}

.theme--green .tool-card {
  background: #9dc819;
}

.theme--green .tool-card:hover {
  background: rgba(157, 200, 25, 0.8);
}

.tool-card .tool__image-wrapper {
  width: 60px;
  height: 60px;
  line-height: 54px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}

.tool-card svg {
  width: 50px;
  height: 34px;
  fill: #fff;
  vertical-align: middle;
}

.tool-card + .tool-card {
  margin-right: 1.33333333%;
}

.tool-card .tool__title {
  font-size: 1em;
}

.tool-card .tool__title span {
  color: #fff;
  font-weight: 700;
  font-size: 1.8em;
}

.tool-card .tool__title.title-decoration {
  margin-bottom: 30px;
}

.tool-card .tool__title.title-decoration::after {
  border-color: #fff;
}

.tool-card .tool__description {
  margin: 0;
  font-size: 1.6em;
  color: #fff;
}

.cards .tool-card {
  width: 100%;
  margin-bottom: 25px;
}

@media (min-width: 1200px) {
  .tools {
    overflow: initial;
    white-space: initial;
    margin: 0 auto 30px;
  }

  .tools .tool-card {
    width: 33.1299041%;
  }

  .tools .tool-card + .tool-card {
    margin-right: 0.08718396%;
  }
}

.accordion,
.go-to--full {
  margin-bottom: 30px;
}

.accordion a,
.go-to--full a {
  color: #000;
  display: block;
}

.accordion a:hover,
.accordion a:focus,
.go-to--full a:hover,
.go-to--full a:focus {
  text-decoration: none;
}

.accordion ul,
.go-to--full ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion ul a,
.go-to--full ul a {
  display: block;
}

.accordion a {
  display: inline-block;
  width: 100%;
  line-height: 1.6;
  vertical-align: middle;
}

.pane {
  display: none;
}

.accordion__item,
.go-to--full__item {
  background: #f4f4f4;
  width: 100%;
}

.accordion__item .accordion__item-title,
.accordion__item .go-to--full__item-title,
.go-to--full__item .accordion__item-title,
.go-to--full__item .go-to--full__item-title {
  margin: 0;
  height: 70px;
  line-height: 68px;
  border-bottom: 1px solid #ccc;
  position: relative;
  font-size: 1.8em;
}

.accordion__item .accordion__item-title a,
.accordion__item .go-to--full__item-title a,
.go-to--full__item .accordion__item-title a,
.go-to--full__item .go-to--full__item-title a {
  font-weight: 700;
  padding: 0 20px;
}

.accordion__item .accordion__item-title.active,
.go-to--full__item .accordion__item-title.active {
  background: #e4e4e4;
}

.accordion__item .accordion__item-title.active::after,
.go-to--full__item .accordion__item-title.active::after {
  content: url(/fonts/minus.svg?749545dab312247aa9560612da7cea54);
}

.accordion__item .accordion__item-title::after,
.go-to--full__item .accordion__item-title::after {
  content: url(/fonts/add.svg?2f9d5172d3082c1121446dcddde70502);
  position: absolute;
  top: 0;
  left: 20px;
  pointer-events: none;
}

.accordion__item .go-to--full__item-title:after,
.go-to--full__item .go-to--full__item-title:after {
  content: url(/fonts/go-to-arrows.svg?78d3a86bebf5cee21d40e4ed357b9eb8);
  position: absolute;
  top: 0;
  left: 24px;
  pointer-events: none;
}

.accordion__item + .accordion__item .accordion__item-title,
.go-to--full__item + .accordion__item .accordion__item-title {
  border-top: 1px solid #fff;
}

.accordion__item .pane li,
.go-to--full__item .pane li {
  padding: 0 20px;
  background: #e4e4e4;
  padding: 21px 30px;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  font-size: 1.6em;
}

.go-to--full__item + .go-to--full__item .go-to--full__item-title {
  border-top: 1px solid #fff;
}

.go-to--full__item:first-child .go-to--full__item-title {
  border-top: 1px solid #ccc;
}

@media (min-width: 1200px) {
  .recipes-category .accordion {
    width: 60%;
    margin-bottom: 50px;
    border: 1px solid #ccc;
  }
}

.ratings {
  float: right;
}

.ratings .br-reverse {
  float: right;
}

.ratings .br-wrapper::after {
  clear: both;
  content: '';
  display: table;
}

.ratings--static .rate {
  display: inline-block;
}

.ratings--static .rate svg {
  width: 22px;
  height: 22px;
  fill: #d2d2d2;
}

.ratings--static .rate.fill svg {
  fill: #EDB867;
}

.guide-container--grid {
  background: url(/images/guide-grid.jpg?b407a10345c473879d3f175924c791c3) no-repeat center;
  background-size: cover;
  position: relative;
  padding-bottom: 0;
}

.guide-container--grid::after {
  content: '';
  display: block;
  background: rgba(79, 79, 79, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.guide-container--grid::before {
  content: '';
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}

.guide-container--grid .guide-content {
  z-index: 10;
  position: relative;
  margin-top: 30px;
  color: #fff;
}

.guide-container--grid > * {
  z-index: 5;
}

.guide-container--grid .section-title {
  font-size: 2.2em;
}

.guide-container--grid .section-title.title-decoration:after {
  border-color: #fff;
}

.guide-container--grid ul {
  list-style: none;
  padding: 0;
  font-size: 0;
}

.guide-container--grid li {
  font-size: 1rem;
  text-align: center;
  float: right;
  width: 50%;
  height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.guide-container--grid li:nth-child(2n+1) {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 1200px) {
  .guide-container--grid li {
    width: 25%;
  }

  .guide-container--grid li:nth-child(n-1) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.guide-container--grid a {
  display: inline-block;
  margin-top: 32px;
  color: #fff;
  font-size: 1.8em;
}

.guide-container--grid a:hover,
.guide-container--grid a:focus {
  color: #e55cad;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.guide-container--grid a:hover svg,
.guide-container--grid a:focus svg {
  fill: #e55cad;
}

.guide-container--grid svg {
  width: 38px;
  height: 38px;
  vertical-align: top;
  fill: #fff;
}

.guide-container--grid span {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
}

.guide-container--grid .horizontal-list {
  margin-top: 25px;
}

#shape-birthday-2 {
  width: 30px;
  height: 40px;
}

#shape-children-shops-2 {
  width: 32px;
  height: 28px;
}

#shape-events-2 {
  width: 40px;
  height: 33px;
}

#shape-hospitals-2 {
  width: 37px;
  height: 27px;
}

#shape-pregnancy-clothes-2 {
  width: 32px;
  height: 36px;
}

.quiz-introduction p {
  margin: 0;
}

.quiz-introduction .quiz-introduction__text {
  font-size: 1.6em;
  line-height: 1.875;
  margin-bottom: 50px;
}

.child-when-container .ads {
  margin: 50px 0 55px;
}

.child-when-container .tabs-content__item p {
  font-size: 1.6em;
  line-height: 1.875;
}

.child-when-container .tabs-content__item p + p {
  margin-top: 40px;
}

.child-when-container li {
  background: url(/fonts/bear-tabs.svg?a2a6ff93c14023d7910f3d5a707acc68) cover no-repeat center;
  background-color: rgba(0, 0, 0, 0.6);
}

.trending-names {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .trending-names {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.trending-names ul {
  list-style: none;
  padding: 0;
  margin-top: 1px;
}

.trending-names li {
  color: #fff;
  font-size: 1.6em;
}

.trending-names .trending-names__title,
.trending-names li {
  height: 60px;
  line-height: 60px;
}

.trending-names svg {
  vertical-align: middle;
}

.trending-names__title {
  margin: 0;
}

.trending-names__item {
  float: right;
  width: 49.25373134%;
  text-align: center;
}

.trending-names__item + .trending-names__item {
  margin-right: 0.29850746%;
}

.trending-names__item li + li {
  margin-top: 1px;
}

.trending-names__item a {
  color: #fff;
}

.trending-names__item--boy .trending-names__title {
  background: #1a8dd8;
}

.trending-names__item--boy li:first-child {
  background: rgba(26, 141, 216, 0.9);
}

.trending-names__item--boy li:nth-child(2) {
  background: rgba(26, 141, 216, 0.7);
}

.trending-names__item--boy li:nth-child(3) {
  background: rgba(26, 141, 216, 0.6);
}

.trending-names__item--boy li:nth-child(4) {
  background: rgba(26, 141, 216, 0.5);
}

.trending-names__item--boy li:nth-child(5) {
  background: rgba(26, 141, 216, 0.4);
}

.trending-names__item--boy svg {
  width: 36px;
  height: 32px;
}

.trending-names__item--girl .trending-names__title {
  background: #e55cad;
}

.trending-names__item--girl li:first-child {
  background: rgba(229, 92, 173, 0.8);
}

.trending-names__item--girl li:nth-child(2) {
  background: rgba(229, 92, 173, 0.7);
}

.trending-names__item--girl li:nth-child(3) {
  background: rgba(229, 92, 173, 0.6);
}

.trending-names__item--girl li:nth-child(4) {
  background: rgba(229, 92, 173, 0.5);
}

.trending-names__item--girl li:nth-child(5) {
  background: rgba(229, 92, 173, 0.4);
}

.trending-names__item--girl svg {
  width: 35px;
  height: 36px;
}

.name-summary-info {
  background: url(/images/boy-name-background.png?6563eb446051cba7d33ecb908988372c) #1a8dd8 no-repeat center;
  padding: 0;
}

@media (min-width: 1200px) {
  .name-summary-info {
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 62%;
  }
}

.name-summary-info .name-summary__item {
  float: right;
  height: 95px;
  width: 24.8%;
  background-color: transparent;
}

.name-summary-info .name-summary__item + .name-summary__item {
  border-right: 0.002666666667vw solid #fff;
}

.name-summary-info dl {
  margin: 0;
  color: #fff;
  text-align: center;
  border-bottom: 5px solid #9dc819;
}

.name-summary-info dd {
  font-weight: 700;
  margin: 20px 0;
}

.name-summary-info dd,
.name-summary-info dt {
  font-size: 1.6em;
}

.name-summary-info .title-decoration:after {
  border-color: #fff;
  bottom: -8px;
  width: 20px;
}

.form label,
.form input,
.form select {
  margin-bottom: 10px;
  font-size: 1.6em;
  height: 40px;
  line-height: 40px;
  text-align: right;
}

.form--block label,
.form--block input,
.form--block select,
.form--block textarea {
  width: 100%;
}

.form input,
.form select,
.form textarea {
  border: 1px solid #d3d3d3;
  padding: 0 10px;
  background-color: #fff;
}

.form textarea {
  font-size: 16px;
  padding: 10px;
}

@media (max-width: 767px) {
  .form textarea {
    max-height: 150px;
  }
}

.theme--purple label {
  color: #e55cad;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(/fonts/arrow-down.svg?6c5f16dd36da7ac01028c8c796138ffd) 10px 50% no-repeat;
}

.date-picker {
  background: url(/fonts/calendar.svg?d259f76d5c88d4cf06347e93cf27ff55) 10px 50% no-repeat;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 20px 0;
}

form.form--narrow {
  margin: 0 auto;
  text-align: right;
}

@media (min-width: 1200px) {
  form.form--narrow {
    max-width: 60%;
  }
}

form.form--narrow fieldset {
  width: 100%;
  margin: 5px 0;
}

@media (min-width: 1200px) {
  form.form--narrow fieldset {
    width: 100%;
  }
}

form.form--narrow p {
  margin-top: 40px;
  width: 100%;
}

.help-block {
  color: #e55cad;
}

.name-results__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 45px;
}

@media (min-width: 1200px) {
  .name-results__list {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.name-results__list li {
  float: right;
  text-align: center;
  height: 70px;
  line-height: 70px;
  border-radius: 8px;
  width: 48.65671642%;
  background-color: #fff;
  margin-bottom: 8px;
  -webkit-box-shadow: 0 0 1px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
}

.name-results__list li a {
  font-size: 1.6em;
  color: #000;
  display: block;
}

.name-results__list li a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.name-results__list li:hover,
.name-results__list li:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #1a8dd8;
}

.name-results__list li:hover a,
.name-results__list li:focus a {
  text-decoration: none;
  color: #fff;
}

.name-results__list li:nth-child(2n) {
  margin-right: 2.3880597%;
}

.name-results__button-container {
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .find-baby-name {
    text-align: right;
  }
}

.find-baby-name input[type='radio']:checked + label:before {
  color: #fff;
  text-align: center;
  content: url(/fonts/radio-active.svg?550e0e30bb6aa088209d07e87238f9b9);
  background: #fff;
  padding: 2px 3px;
}

.find-baby-name input[type='radio'] + label:before {
  border: 1px solid #d8d8d8;
  background: #fff;
  display: inline-block;
  height: 25px;
  padding: 0;
  width: 25px;
  border-radius: 50%;
  line-height: 25px;
  margin-left: 15px;
}

.find-baby-name .find-name__choices-item {
  display: inline-block;
}

.find-baby-name .find-name__choices-item + .find-name__choices-item {
  margin-right: 13.33333333%;
}

@media (min-width: 1200px) {
  .find-baby-name .input-group {
    max-width: 50%;
  }

  .find-baby-name .input-group--secondary {
    max-width: 22.2%;
  }
}

.find-baby-name .input-group + .input-group {
  margin-top: 30px;
}

.find-baby-name .button-container {
  margin-top: 50px;
}

@media (min-width: 1200px) {
  .find-baby-name .button-container {
    max-width: none;
  }
}

.guide-result-list {
  list-style: none;
  padding: 0;
}

.guide-result-list li {
  border-bottom: 1px solid #ccc;
  padding: 30px 20px;
}

.guide-result-list li + li {
  border-top: 1px solid #fff;
}

.guide-result-list li:nth-child(2n) {
  background: #f4f4f4;
}

.guide-result-list li:last-child {
  border-bottom: 0;
}

.guide-result-list .guide-result__image-wrapper,
.guide-result-list .guide-result__info {
  float: right;
}

.guide-result-list .guide-result__image-wrapper {
  max-width: 29.85074627%;
  max-height: 26.66666667vw;
  margin-left: 5.97014925%;
  border: 1px solid #d3d3d3;
  vertical-align: top;
  background: #fff;
  padding: 10px 5px;
}

.guide-result-list .guide-result__image-wrapper img {
  vertical-align: middle;
  width: 100%;
}

.guide-result-list .guide-result__info {
  max-width: 64.17910448%;
}

.guide-result-list .guide-result__info-name {
  margin: 0 0 15px;
  font-size: 1.6em;
}

.guide-result-list .guide-result__info-name a {
  font-size: 1em;
  color: inherit;
  text-decoration: none;
  display: block;
}

.guide-result-list .guide-result__info-name a:hover {
  text-decoration: underline;
}

.guide-result-list .link-container {
  margin: 5px 0 0;
}

.guide-result-list .link-container a {
  color: #1a8dd8;
  font-size: 1.6em;
}

.form--secondary .input-group__title {
  color: #e55cad;
  font-size: 1.6em;
  margin-bottom: 19px;
}

.form--secondary label {
  font-size: 1.6em;
}

.form--secondary .select-wrapper {
  position: relative;
}

.form--secondary .select-wrapper select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  border: 1px solid #d3d3d3;
  padding: 0 12px;
  background: #fff;
  font-size: 1.6em;
  color: #000;
}

.form--secondary .select-wrapper:after {
  position: absolute;
  content: url(/fonts/arrow-down.svg?6c5f16dd36da7ac01028c8c796138ffd);
  top: 40%;
  left: 15px;
  pointer-events: none;
}

.form--secondary .input-group--secondary {
  display: inline-block;
  width: 46.86567164%;
}

.form--secondary .input-group--secondary:nth-child(2n+2) {
  margin-right: 5.4%;
}

.form--secondary .input-group:not(.input-group--secondary) + .input-group--secondary {
  margin-right: 0;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .form--secondary--3 .input-group {
    display: inline-block;
    width: 33%;
  }
}

.arrow-down {
  width: 12px;
  height: 8px;
}

.gallery-slider-container img {
  width: auto;
  margin: 0 auto;
  max-height: 100%;
}

.gallery-slider-container .gallery__title {
  color: #e55cad;
  font-size: 1.6em;
  margin: 60px 0 30px;
}

.gallery-slider-container .gallery__title::before {
  content: counter(counter-index1) "- ";
  counter-increment: counter-index1;
}

.gallery-slider-container .gallery__description {
  font-size: 1.6em;
  margin: 0 0 40px;
}

.gallery-slider-container .slick-dots {
  top: 215px;
  bottom: auto;
}

@media (min-width: 1200px) {
  .gallery-slider-container .slick-dots {
    top: 440px;
  }
}

.gallery-slider-container .slick-dots li + li {
  margin-right: 2.66666667%;
}

.gallery-slider-container .slick-dots li button {
  font-size: 1.4em;
  line-height: 1;
  color: #000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e1e1e1;
}

.gallery-slider-container .slick-dots li button:before {
  content: '';
}

.gallery-slider-container .banner-slider {
  position: relative;
  float: right;
}

.gallery-slider-container .slick-dots li.slick-active button {
  background: #e55cad;
  color: #fff;
}

.gallery-slider-container .gallery__image-wrapper {
  position: relative;
  display: block;
  max-height: 260px;
}

@media (min-width: 1200px) {
  .gallery-slider-container .gallery__image-wrapper {
    max-height: 630px;
  }
}

.gallery-slider-container .gallery__image-wrapper:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 52.5%;
}

.gallery-slider-container .gallery__image-wrapper::after {
  content: url(/fonts/search.svg?c93338c29fea156ab9d1a4f976b49a71);
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(229, 92, 173, 0.6);
  overflow: hidden;
  height: 50px;
  line-height: 72px;
  width: 50px;
  text-align: center;
}

.gallery-slider-container .gallery__image-wrapper > picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.smartphoto {
  direction: ltr;
}

.go-to-category {
  padding-top: 0;
}

.category-title {
  height: 115px;
  line-height: 115px;
  outline: 1px solid #ccc;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #f4f4f4;
}

.category-title a {
  display: block;
  padding: 0 25px;
  color: #000;
  position: relative;
}

.category-title a::after {
  content: url(/fonts/menu-videos.svg?7e03581fb22384fde024b10321446885);
  position: absolute;
  left: 20px;
  pointer-events: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sources {
  margin-top: 20px;
  margin-bottom: 0;
  margin-right: 15px;
}

@media (min-width: 1200px) {
  .sources {
    margin-right: 0;
  }
}

.sources dd {
  margin: 0;
}

.sources dd + dd::before {
  content: ', ';
}

.sources dd,
.sources dt {
  display: inline-block;
}

.sources a {
  color: #e55cad;
}

.sources a:hover,
.sources a:focus {
  text-decoration: underline;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1200px) {
  .sources--secondary {
    margin-right: 30px;
  }
}

.article-image-components .sources {
  margin-top: 3px;
  float: left;
  margin-left: 5px;
}

.go-to-author {
  clear: both;
}

.go-to-author + .ads {
  margin-top: 20px;
}

.author-title {
  outline: 1px solid #ccc;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #f4f4f4;
  font-size: 1em;
  padding: 15px 25px;
}

.author-title__image-wrapper {
  float: right;
  width: 32%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
  vertical-align: top;
  position: relative;
}

.author-title a {
  display: block;
  color: #000;
  position: relative;
  font-size: 1em;
}

.author-title a p {
  margin: 0;
  font-size: 1.6em;
}

.author-title a:hover,
.author-title a:focus {
  color: #e55cad;
  text-decoration: none;
}

.author-title__details {
  float: right;
  padding: 0 4%;
  width: 68%;
  margin-top: 5px;
}

.author-title .written-by {
  font-style: italic;
  font-size: 1em;
}

@media (min-width: 768px) {
  .author-title {
    width: 100%;
    margin: 0 auto;
  }

  .author-title__image-wrapper {
    width: 115px;
    height: 115px;
  }
}

@media (min-width: 1200px) {
  .author-title {
    width: 100%;
    margin: 0 auto;
  }

  .author-title__image-wrapper {
    width: 115px;
    height: 115px;
  }

  .go-to-author {
    width: 75%;
  }
}

.tools-nav--main {
  background: url(/images/menu-background.jpg?7064c635cf00bf7ce79eecfff61c7b4a) repeat;
  width: 80%;
  position: absolute;
  top: 60px;
  left: 0;
  font-size: 1.6rem;
  overflow: scroll;
  height: 0;
  z-index: 1000;
}

.tools-nav--main svg {
  fill: #fff;
  margin-left: 10px;
}

.tools-nav--main ul {
  padding: 0;
  margin: 0;
  max-height: calc(100% - 108px);
  list-style: none;
}

.tools-nav--main a {
  padding: 0 20px;
  color: #fff;
}

.tools-nav--main li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tools-nav--main a {
  display: block;
}

.tools-nav--main.show {
  height: 100vh;
}

.tools-nav--main.show ul {
  max-height: calc(100% - 108px);
  overflow: scroll;
}

.slick-loading .slick-list {
  background: transparent;
}

#Leaderboard {
  padding-top: 10px;
}

@media (max-width: 767px) {
  #Leaderboard {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .banner-slider .card {
    margin-bottom: 20px;
  }

  .home .slick-dots {
    bottom: 0;
  }
}

@media (min-width: 1200px) {
  .desktop-container {
    padding: 0 20px;
  }

  .cards--full-width {
    margin-bottom: 0;
  }

  .section-title {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .cards--divide {
    margin-bottom: 5px;
  }
}

.user-bio {
  padding: 20px 0;
}

.article__header {
  margin-bottom: 0;
}

form.form--narrow p {
  margin-top: 20px;
}

.section-title {
  margin-bottom: 20px;
}

section {
  padding: 10px 0;
}

.ads + section {
  padding-top: 0;
}

.ads + section.section--secondary {
  padding-top: 10px;
}

.about-us .about-us__share-container {
  margin-top: 0;
}

.section--secondary {
  padding: 20px 0;
}

.eat-tool .circular-button-container {
  margin-top: 20px;
}

.article__header__title {
  margin: 10px 0;
}

.article--video .article__header .container {
  margin: 0 0 10px;
}

.article--video .article__header {
  margin-bottom: 0;
}

.ads--secondary {
  margin-bottom: 10px;
}

.slick-slide.card img {
  max-height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
}

.home .banner-slider-container {
  margin-bottom: 15px;
}

.home .banner-slider {
  margin-bottom: 0;
}

.home .ads {
  padding-top: 20px;
  padding-bottom: 20px;
}

.banner-slider + .cards__read-more {
  margin: 0 0 10px;
}

.cards__read-more {
  margin-bottom: 10px;
}

.tabs-desc ol,
.tabs-desc ul {
  font-size: 1.6em;
  line-height: 1.875;
}

.pregnancy-tools {
  padding-top: 15px;
}

.go-to-list {
  margin-bottom: 0;
}

.fb_hide_iframes iframe {
  left: auto !important;
  right: -1000px;
}

@media (max-width: 767px) {
  .home .banner-slider {
    margin-bottom: 20px;
  }
}

.stages-content p,
.tabs-desc ol,
.tabs-desc ul {
  font-size: 16px;
}

