@charset "UTF-8";
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@keyframes slideUp {
  to {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.slideUp {
  overflow: hidden;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

@-webkit-keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@keyframes slideDown {
  from {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.slideDown {
  overflow: hidden;
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate;
}

html {
  box-sizing: border-box;
}

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

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

img,
video,
audio {
  max-width: 100%;
}

img,
video {
  height: auto;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  font-size: 110%;
  position: relative;
  margin-right: 3px;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

body {
  font-family: "Roboto", verdana, sans-serif;
  line-height: 24px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

a {
  color: #255bbd;
}

a:hover {
  color: #f34248;
}

h1.title, h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", verdana, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  color: #000;
  margin-bottom: 12px;
}

h1.title {
  font-size: 60px;
  line-height: 64px;
}

h1,
.h1 {
  font-size: 48px;
  line-height: 52px;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 40px;
}

h3,
.h3 {
  font-size: 24px;
  line-height: 32px;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 24px;
}

h5,
.h5 {
  font-size: 16px;
  line-height: 24px;
}

h6,
.h6 {
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
dl + h2,
dl + h3,
dl + h4,
dl + h5,
dl + h6,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
hr + h2,
hr + h3,
hr + h4,
hr + h5,
hr + h6,
pre + h2,
pre + h3,
pre + h4,
pre + h5,
pre + h6,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
form + h2,
form + h3,
form + h4,
form + h5,
form + h6,
figure + h2,
figure + h3,
figure + h4,
figure + h5,
figure + h6 {
  margin-top: 32px;
}

.subheading {
  margin-top: -8px;
  margin-bottom: 8px;
  font-weight: 300;
}

ul, ol,
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0 0 0 24px;
}

ol ol li {
  list-style-type: lower-alpha;
}

ol ol ol li {
  list-style-type: lower-roman;
}

nav ul, nav ol {
  margin: 0;
  list-style: none;
}

dl dt {
  font-weight: 700;
}

dd {
  margin-left: 24px;
}

p, blockquote, hr, pre, ol, ul, dl, table, fieldset, figure, address, form {
  margin-bottom: 16px;
}

hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

blockquote {
  padding-left: 24px;
  border-left: 2px solid rgba(0, 0, 0, 0.125);
  font-style: italic;
  color: rgba(0, 0, 0, 0.65);
}

pre, code, samp, var, kbd {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 14px;
}

pre {
  color: rgba(0, 0, 0, 0.85);
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
  line-height: 20px;
  overflow: none;
  white-space: pre-wrap;
}

.small, time, cite, small, figcaption {
  font-size: 12px;
  line-height: 16px;
}

cite {
  color: rgba(0, 0, 0, 0.5);
}

figcaption {
  font-style: italic;
  padding-top: 4px;
  padding-bottom: 4px;
}

figure figcaption {
  position: relative;
  top: -4px;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
}

mark, code, samp, kbd {
  padding: 4px 8px 2px 8px;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.85);
}

pre code {
  font-size: 100%;
  white-space: pre;
  padding: 0;
  background: none;
  line-height: 24px;
}

mark {
  background-color: #fed443;
}

code {
  background: #f4f4f4;
}

var {
  color: rgba(0, 0, 0, 0.6);
  font-style: normal;
}

strong, b {
  line-height: 1;
}

samp {
  color: #fff;
  background: #5a89df;
}

kbd {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

sub,
sup {
  font-size: x-small;
  line-height: 0;
  margin-left: 4px;
  position: relative;
}

sup {
  top: -4px;
}

sub {
  bottom: -2px;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2.12766%;
}

.row.centered {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.row.centered .col {
  padding-left: 1.06383%;
  padding-right: 1.06383%;
}

.row.right {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.row.bottom {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.row.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.row.between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.row.equal .col {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.row.equal .col > div {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.row.splice {
  margin-left: 0;
}

.row.splice .col {
  padding-left: 0;
}

.col {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
  padding-left: 2.12766%;
}

.col.first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.col.last {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media (max-width: 768px) {
  .col.first-on-small {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .col.last-on-small {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.pull-right {
  margin-left: auto;
}

.col-1 {
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
  width: 8.33333%;
}

.col-2 {
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
  width: 16.66667%;
}

.col-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
  width: 25%;
}

.col-4 {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
  width: 33.33333%;
}

.col-5 {
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
  width: 41.66667%;
}

.col-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  width: 50%;
}

.col-7 {
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
  width: 58.33333%;
}

.col-8 {
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
  width: 66.66667%;
}

.col-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
  width: 75%;
}

.col-10 {
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
  width: 83.33333%;
}

.col-11 {
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
  width: 91.66667%;
}

.col-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.row-layout {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.col-fluid {
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

@media (max-width: 768px) {
  .row-layout {
    display: block;
  }
  .col-fixed {
    -ms-flex: 1 !important;
    -webkit-box-flex: 1 !important;
    flex: 1 !important;
  }
  .row-layout > .col-fixed {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .row-layout > .col-fluid {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
  }
  .col:not(th):not(td),
  [class^="col-"]:not(th):not(td),
  [class*=" col-"]:not(th):not(td) {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
  .col {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-left: 0;
  }
  .pull-right,
  [class^="offset-"],
  [class*=" offset-"] {
    margin-left: 0;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
  empty-cells: show;
  font-size: 15px;
}

th {
  text-align: left;
  font-weight: 700;
  vertical-align: bottom;
}

td {
  vertical-align: top;
}

tr.align-middle td,
td.align-middle {
  vertical-align: middle;
}

th,
td {
  padding: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

tfoot th,
tfoot td {
  color: rgba(0, 0, 0, 0.5);
}

table.bordered {
  margin-top: -1px;
}

table.bordered td,
table.bordered th {
  border: 1px solid #eee;
}

table.striped tr:nth-child(odd) td {
  background: #f4f4f4;
}

table.bordered td:first-child,
table.bordered th:first-child,
table.striped td:first-child,
table.striped th:first-child {
  padding-left: 16px;
}

table.bordered td:last-child,
table.bordered th:last-child,
table.striped td:last-child,
table.striped th:last-child {
  padding-right: 16px;
}

table.flat td,
table.flat th {
  border: none;
  padding: 0;
}

input,
select,
textarea,
fieldset {
  font-family: "Roboto", verdana, sans-serif;
  font-size: 14px;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="url"],
input[type="password"] {
  height: 40px;
  padding: 8px 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
}

select,
textarea {
  display: block;
  width: 100%;
  line-height: 1.75;
  padding: 8px 10px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #dfdfdf;
}

select:not([multiple]) {
  cursor: pointer;
  height: 40px;
  vertical-align: middle;
}

label {
  vertical-align: middle;
}

textarea:focus,
select:focus,
input:focus {
  outline: none;
  background: #fff;
  border-color: #bbb;
}

textarea:disabled,
select:disabled,
input:disabled,
textarea.disabled,
select.disabled,
input.disabled {
  resize: none;
  opacity: 0.75;
  cursor: default;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}

fieldset {
  padding: 39px 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

legend {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 1em;
  margin-left: -1em;
  top: 2px;
  position: relative;
  line-height: 0;
}

.form {
  margin-bottom: 0;
}

.form .form-item {
  margin-bottom: 24px;
}

.form input[type="email"],
.form input[type="number"],
.form input[type="search"],
.form input[type="text"],
.form input[type="date"],
.form input[type="tel"],
.form input[type="url"],
.form input[type="password"],
.form select,
.form textarea {
  display: block;
  width: 100%;
}

.form input.width-50,
.form textarea.width-50,
.form select.width-50 {
  width: 50%;
}

.form label {
  font-size: 14px;
  color: #111;
  font-weight: normal;
  display: block;
}

.form .checkboxes label,
.form label.checkbox {
  text-transform: none;
  font-weight: normal;
  cursor: pointer;
  color: inherit;
  font-size: 15px;
}

.form .checkboxes label {
  margin-bottom: 8px;
}

.form .checkboxes label:last-child {
  margin-bottom: 0;
}

.form .checkboxes-inline {
  display: block;
}

.form .checkboxes-inline label {
  font-size: inherit;
  color: inherit;
  display: inline-block;
  margin-right: 16px;
  text-transform: none;
  font-weight: normal;
}

.form span.error,
.form div.error,
.form span.success,
.form div.success {
  text-transform: none;
  font-weight: normal;
  font-size: 12px;
}

.form span.error,
.form span.success {
  margin-left: .4rem;
}

.form-inline textarea,
.form-inline select,
.form-inline input[type="email"],
.form-inline input[type="number"],
.form-inline input[type="search"],
.form-inline input[type="text"],
.form-inline input[type="date"],
.form-inline input[type="tel"],
.form-inline input[type="url"],
.form-inline input[type="password"] {
  width: auto;
  display: inline-block;
}

input.big,
select.big {
  font-size: 18px;
  height: 48px;
}

input.big {
  padding: 16px 10px;
}

select.big {
  padding: 6px 10px;
}

.desc {
  text-transform: none;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
}

ul.desc {
  margin-bottom: 8px;
}

span.desc {
  margin-left: 4px;
  line-height: 20px;
}

input.error,
textarea.error,
select.error {
  margin-top: -1px;
  background: none;
  background-color: rgba(243, 66, 72, 0.1);
  border: 1px solid #f34248;
}

input.success,
textarea.success,
select.success {
  margin-top: -1px;
  background: none;
  background-color: rgba(96, 174, 77, 0.1);
  border: 1px solid #60ae4d;
}

.controls {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.controls input {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
  margin-bottom: 0 !important;
}

.controls .button,
.controls span {
  -ms-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.controls span {
  font-weight: normal;
  background-color: #eee;
  padding: 0 12px;
  color: #555;
  font-size: 12px;
  line-height: 40px;
  white-space: nowrap;
}

.controls .button {
  border-radius: 0 4px 4px 0;
}

@media (max-width: 768px) {
  .form input,
  .form textarea,
  .form select {
    font-size: 16px;
  }
  .form input.width-50,
  .form textarea.width-50,
  .form select.width-50 {
    width: 100%;
  }
}

button,
.button {
  font-family: "Roboto", verdana, sans-serif;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  line-height: 1.125rem;
  min-height: 40px;
  padding: 10px 28px;
  border: 1px solid transparent;
  vertical-align: middle;
  -webkit-appearance: none;
  color: #000;
  background-color: #eee;
  border-radius: 4px;
}

input.button {
  height: auto;
}

button:hover,
.button:hover {
  outline: none;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  box-shadow: inset 0 0 0 40px rgba(0, 0, 0, 0.125);
}

.button:disabled,
.button.disabled {
  cursor: default;
  font-style: normal;
  opacity: .5;
}

.button:disabled:hover,
.button.disabled:hover {
  color: #000;
  box-shadow: none;
}

.button.outline {
  background: none;
  font-weight: normal;
}

.button.outline:hover {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.button.outline,
.button.outline:disabled:hover,
.button.outline.disabled:hover {
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.4);
}

.button.small {
  font-size: 12px;
  min-height: 32px;
  padding: 6px 20px;
}

.button.small.upper {
  font-size: 10px;
}

.button.big {
  font-size: 18px;
  min-height: 48px;
  padding: 14px 48px;
}

.button.big.upper {
  font-size: 13px;
}

.button.upper {
  font-size: 11px;
}

.button.primary {
  background: #3c74d9;
  color: #fff;
}

.button.primary:focus, .button.primary:hover {
  color: rgba(255, 255, 255, 0.6);
}

.button.primary:focus:disabled, .button.primary:focus.disabled, .button.primary:hover:disabled, .button.primary:hover.disabled {
  color: #fff;
  background: #3c74d9;
}

.button.primary.outline:hover {
  color: rgba(60, 116, 217, 0.6);
  border-color: rgba(60, 116, 217, 0.4);
}

.button.primary.outline, .button.primary.outline:disabled:hover, .button.primary.outline.disabled:hover {
  color: #3c74d9;
  border-color: #3c74d9;
  background: none;
}

.button.inverted {
  background: #fff;
  color: #000;
}

.button.inverted:focus, .button.inverted:hover {
  color: rgba(0, 0, 0, 0.6);
}

.button.inverted:focus:disabled, .button.inverted:focus.disabled, .button.inverted:hover:disabled, .button.inverted:hover.disabled {
  color: #000;
  background: #fff;
}

.button.inverted.outline:hover {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.button.inverted.outline, .button.inverted.outline:disabled:hover, .button.inverted.outline.disabled:hover {
  color: white;
  border-color: white;
  background: none;
}

.buttons.group {
  display: inline-block;
  vertical-align: bottom;
}

.buttons.group .button {
  float: left;
  margin-left: -1px;
  border-radius: 0;
}

.buttons.group .button:first-child {
  border-radius: 4px 0 0 4px;
}

.buttons.group .button:last-child {
  border-radius: 0 4px 4px 0;
}

.label {
  font-size: 10px;
  font-weight: normal;
  display: inline;
  line-height: 1;
  top: -1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  color: #000;
  background: #f4f4f4;
  padding: 2px 8px;
  letter-spacing: .01em;
}

.label a,
.label a:hover {
  color: #000;
  text-decoration: none;
}

.label.primary {
  background: #3c74d9;
}

.label.primary,
.label.primary a {
  color: #fff;
}

.label.primary.outline {
  border-color: #3c74d9;
}

.label.primary.outline,
.label.primary.outline a {
  color: #3c74d9;
}

.label.primary.tag {
  background: none;
}

.label.primary.tag,
.label.primary.tag a {
  color: #3c74d9;
}

.label.error {
  background: #f34248;
}

.label.error,
.label.error a {
  color: #fff;
}

.label.error.outline {
  border-color: #f34248;
}

.label.error.outline,
.label.error.outline a {
  color: #f34248;
}

.label.error.tag {
  background: none;
}

.label.error.tag,
.label.error.tag a {
  color: #f34248;
}

.label.success {
  background: #60ae4d;
}

.label.success,
.label.success a {
  color: #fff;
}

.label.success.outline {
  border-color: #60ae4d;
}

.label.success.outline,
.label.success.outline a {
  color: #60ae4d;
}

.label.success.tag {
  background: none;
}

.label.success.tag,
.label.success.tag a {
  color: #60ae4d;
}

.label.warning {
  background: #fed443;
}

.label.warning,
.label.warning a {
  color: #000;
}

.label.warning.outline {
  border-color: #fed443;
}

.label.warning.outline,
.label.warning.outline a {
  color: #fed443;
}

.label.warning.tag {
  background: none;
}

.label.warning.tag,
.label.warning.tag a {
  color: #fed443;
}

.label.inverted {
  background: #fff;
}

.label.inverted,
.label.inverted a {
  color: #000;
}

.label.inverted.outline {
  border-color: #fff;
}

.label.inverted.outline,
.label.inverted.outline a {
  color: #fff;
}

.label.inverted.tag {
  background: none;
}

.label.inverted.tag,
.label.inverted.tag a {
  color: #fff;
}

.label.outline {
  background: none;
  padding: 1px 7px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.label.outline,
.label.outline a {
  color: rgba(0, 0, 0, 0.65);
}

.badge {
  padding: 2px 6px;
  border-radius: 24px;
}

.badge.outline {
  padding: 1px 5px;
}

.label.tag {
  padding: 0;
  background: none;
  font-weight: bold;
  letter-spacing: .02em;
}

.label.tag.primary,
.label.tag.primary a {
  color: #3c74d9;
}

.label.tag.error,
.label.tag.error a {
  color: #f34248;
}

.label.tag.success,
.label.tag.success a {
  color: #60ae4d;
}

.label.tag.warning,
.label.tag.warning a {
  color: #fed443;
}

.label.tag.inverted,
.label.tag.inverted a {
  color: #fff;
}

.button:hover .badge {
  opacity: .6;
}

h6 .label {
  top: -3px;
}

.alert {
  position: relative;
  padding: 15px 24px;
  padding-right: 40px;
  line-height: 20px;
  font-size: 14px;
  color: #000;
  background: #f4f4f4;
  border: 1px solid #dbdbdb;
  display: block;
  font-weight: normal;
  border-radius: 4px;
  margin-bottom: 24px;
}

.alert a {
  color: #000;
  font-weight: bold;
}

.alert a:hover {
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.6);
}

.alert h5 {
  margin-bottom: 4px;
}

.alert p,
.alert ul,
.alert ol {
  margin-bottom: 0;
}

.alert .close {
  position: absolute;
  top: 15px;
  right: 8px;
}

.alert.primary {
  color: #3c74d9;
  background-color: rgba(60, 116, 217, 0.15);
  border: 1px solid rgba(60, 116, 217, 0.15);
}

.alert.primary a,
.alert.primary h5 {
  color: #3c74d9;
}

.alert.primary a:hover {
  color: #000;
}

.alert.error {
  color: #f34248;
  background-color: rgba(243, 66, 72, 0.15);
  border: 1px solid rgba(243, 66, 72, 0.15);
}

.alert.error a,
.alert.error h5 {
  color: #f34248;
}

.alert.error a:hover {
  color: #000;
}

.alert.success {
  color: #60ae4d;
  background-color: rgba(96, 174, 77, 0.15);
  border: 1px solid rgba(96, 174, 77, 0.15);
}

.alert.success a,
.alert.success h5 {
  color: #60ae4d;
}

.alert.success a:hover {
  color: #000;
}

.alert.warning {
  color: #c09501;
  background-color: rgba(254, 212, 67, 0.15);
  border: 1px solid rgba(254, 212, 67, 0.15);
  border-color: rgba(254, 212, 67, 0.5);
}

.alert.warning a,
.alert.warning h5 {
  color: #c09501;
}

.alert.warning a:hover {
  color: #000;
}

.message {
  display: none;
  position: fixed;
  border-radius: 4px;
  z-index: 500;
  top: 16px;
  right: 16px;
  width: 320px;
  line-height: 20px;
  font-size: 14px;
  padding: 16px 20px;
  color: rgba(0, 0, 0, 0.9);
  background: #f4f4f4;
}

.message .close {
  position: absolute;
  top: 6px;
  right: 6px;
}

.message h1,
.message h2,
.message h3,
.message h4,
.message h5,
.message h6 {
  color: inherit;
}

.message ul,
.message ol {
  margin-bottom: 0;
}

.message.line {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding-right: 56px;
}

.message.line .close {
  top: 16px;
  right: 16px;
}

.message .buttons {
  margin-top: 16px;
}

.message .buttons a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 8px;
}

.message.line .buttons {
  margin-top: 0;
  display: inline-block;
}

.message.primary {
  background: #3c74d9;
  color: rgba(255, 255, 255, 0.9);
}

.message.error {
  background: #f34248;
  color: rgba(255, 255, 255, 0.9);
}

.message.success {
  background: #60ae4d;
  color: rgba(255, 255, 255, 0.9);
}

.message.warning {
  background: #fed443;
}

.message.primary a,
.message.error a,
.message.success a {
  color: rgba(255, 255, 255, 0.9);
}

.message.primary a:hover,
.message.error a:hover,
.message.success a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.tabs {
  margin-bottom: 24px;
  font-size: 14px;
}

.tabs li em,
.tabs li.active a {
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: default;
  text-decoration: none;
  background: none;
}

.tabs em,
.tabs a {
  position: relative;
  top: 1px;
  font-style: normal;
  display: block;
  padding: 7px 24px;
  border: 1px solid transparent;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.tabs a:hover {
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
  background-color: #f2f2f2;
}

@media (min-width: 768px) {
  .tabs ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-top: -1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tabs li em,
  .tabs li.active a {
    border-bottom: 1px solid #fff;
  }
}

.breadcrumb {
  font-size: 12px;
  margin-bottom: 24px;
}

.breadcrumb ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb.centered ul {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.breadcrumb em,
.breadcrumb a {
  font-style: normal;
  padding: 0 10px;
  display: inline-block;
  white-space: nowrap;
}

.breadcrumb em {
  color: rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
}

.breadcrumb a:hover {
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}

.breadcrumb li:after {
  display: inline-block;
  content: '/';
  color: rgba(0, 0, 0, 0.4);
}

.breadcrumb li:last-child:after {
  display: none;
}

.breadcrumb li:first-child em,
.breadcrumb li:first-child a {
  padding-left: 0;
}

.breadcrumb li.active em,
.breadcrumb li.active a {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4);
}

.pagination {
  margin: 24px 0;
  font-size: 14px;
}

.pagination ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.pagination.centered ul {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.pagination em,
.pagination a {
  display: inline-block;
  font-style: normal;
  padding: 8px 16px;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid transparent;
}

.pagination a {
  text-decoration: none;
  color: #000;
}

.pagination a:hover {
  color: rgba(0, 0, 0, 0.5);
  background: #f4f4f4;
}

.pagination em,
.pagination li.active a {
  color: rgba(0, 0, 0, 0.5);
  background: #f4f4f4;
  cursor: text;
}

.pagination.upper {
  font-size: 11px;
}

.pager em,
.pager a {
  border-radius: 24px;
  border-color: rgba(0, 0, 0, 0.1);
}

.pager li {
  -ms-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.pager li.next {
  text-align: right;
}

.pager.centered li {
  -ms-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  margin-left: 4px;
  margin-right: 4px;
}

.pager.flat em,
.pager.flat a {
  border: none;
  display: block;
  padding: 0;
}

.pager.flat a {
  font-weight: bold;
}

.pager.flat a:hover {
  background: none;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pager.flat ul {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .pager.flat li {
    -ms-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 8px;
    text-align: left;
  }
}

.dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 280px;
  color: #000;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.dropdown.dropdown-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: none;
  border: none;
}

.dropdown .close {
  margin: 20px auto;
}

.dropdown.open {
  overflow: auto;
}

.dropdown ul {
  list-style: none;
  margin: 0;
}

.dropdown ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.dropdown ul li:last-child {
  border-bottom: none;
}

.dropdown ul a {
  display: block;
  padding: 8px 8px 7px 8px;
  text-decoration: none;
  color: #000;
}

.dropdown ul a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 200;
}

.modal {
  position: relative;
  margin: auto;
  margin-top: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #000;
}

@media (max-width: 768px) {
  .modal input[type="text"],
  .modal input[type="password"],
  .modal input[type="email"],
  .modal input[type="url"],
  .modal textarea {
    font-size: 16px;
  }
}

.modal-header {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header:empty {
  display: none;
}

.modal-body {
  padding: 36px 56px;
}

.modal .close {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px;
  position: absolute;
  top: 18px;
  right: 16px;
  opacity: .3;
}

.modal .close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .modal-header,
  .modal-body {
    padding: 24px;
  }
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.end {
  margin-bottom: 0 !important;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
}

@media (max-width: 768px) {
  .float-right {
    float: none;
  }
}

.float-left {
  float: left;
}

@media (max-width: 768px) {
  .float-left {
    float: none;
  }
}

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

.text-center,
.text-centered {
  text-align: center;
}

.hide {
  display: none;
}

@media (max-width: 768px) {
  .hide-on-small {
    display: none !important;
  }
}

.show-on-small {
  display: none !important;
}

@media (max-width: 768px) {
  .show-on-small {
    display: block !important;
  }
}

@media print {
  .hide-on-print {
    display: none !important;
  }
  .show-on-print {
    display: block !important;
  }
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.black {
  color: #000;
}

.muted {
  color: rgba(0, 0, 0, 0.5) !important;
}

.soft-muted {
  color: rgba(0, 0, 0, 0.7) !important;
}

a.muted:hover,
a.soft-muted:hover {
  color: #000 !important;
}

.error {
  color: #f34248;
}

.success {
  color: #60ae4d;
}

.upper {
  text-transform: uppercase;
  letter-spacing: .08em;
}

.normal {
  font-weight: normal !important;
}

.light {
  font-weight: 300 !important;
}

.italic {
  font-style: italic !important;
}

.bold {
  font-weight: bold !important;
}

.highlight {
  background-color: rgba(60, 116, 217, 0.075);
}

.round {
  border-radius: 56px;
}

input.round {
  border-radius: 24px;
}

.nowrap,
.nowrap td {
  white-space: nowrap;
}

.req {
  font-weight: bold;
  color: #f34248;
  font-size: 1.1em;
  text-transform: none;
}

.close {
  font-weight: normal;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  opacity: 0.5;
  border: none;
  line-height: 25.2px;
  height: 28px;
  width: 28px;
  font-size: 28px;
}

.close:before {
  content: '\00D7';
}

.close:hover {
  opacity: 1;
  text-decoration: none !important;
}

.close.inverted {
  color: #fff;
}

.close.small {
  line-height: 18px;
  height: 20px;
  width: 20px;
  font-size: 20px;
}

.close.big {
  line-height: 32.4px;
  height: 36px;
  width: 36px;
  font-size: 36px;
}

@media (min-width: 768px) {
  .fullwidth {
    -ms-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
  }
  .fullwidth ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .fullwidth li {
    -ms-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
    text-align: center;
  }
  .fullwidth li em,
  .fullwidth li a {
    display: block;
  }
}

.width-100 {
  width: 100%;
}

.width-50 {
  width: 50%;
}

@media (max-width: 768px) {
  .width-50 {
    width: 100% !important;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}

.overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.search-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 18px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  position: relative;
  top: -1px;
  font-weight: bold;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.search-icon:before {
  content: "\26B2";
}

.search-icon.inverted {
  color: #fff;
}

button .search-icon {
  top: 0;
}

button:hover .search-icon {
  opacity: .6;
}

.menu-icon {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 15px;
  width: 16px;
  line-height: 1;
  font-style: normal;
  color: #000;
  font-weight: normal;
}

.menu-icon:before {
  content: "\2630";
}

.menu-icon.inverted {
  color: #fff;
}

button:hover .menu-icon {
  opacity: .6;
}

.caret {
  position: relative;
  display: inline-block;
  height: 0;
  vertical-align: middle;
  width: 0;
  margin-left: 2px;
}

.caret:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.caret.down:before {
  border-top: 4px solid #000;
}

.caret.up:before {
  border-bottom: 4px solid #000;
}

.caret.down.inverted:before {
  border-top-color: #fff;
}

.caret.up.inverted:before {
  border-bottom-color: #fff;
}

.button:hover .caret {
  opacity: .6;
}

.offcanvas {
  background: #fff;
  position: fixed;
  padding: 24px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 300;
  overflow-y: scroll;
}

.offcanvas .close {
  position: absolute;
  top: 8px;
  right: 8px;
}

.offcanvas-left {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-right {
  left: auto;
  right: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-push-body {
  position: relative;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2, h3, h4 {
    page-break-after: avoid;
  }
  @page {
    margin: 0.5cm;
  }
}

/* was previously #77797a; */
/* Global */
h1 {
  font-weight: 400;
  font-family: "goudy-old-style", serif;
  font-size: 40px;
  line-height: 45px;
  color: #2e3639;
  margin: 0px 0px 30px 0px;
}

h1 strong {
  color: #00aeef;
  font-weight: 400;
}

h2 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #0060a9;
  margin: 15px 0px;
}

h3 {
  font-family: "goudy-old-style", serif;
  color: #2e3639;
  font-weight: 400;
  text-align: center;
  font-size: 30px;
  margin: 0px 0px 40px 0px;
}

h4 {
  font-family: "goudy-old-style", serif;
  margin-left: 20px;
  width: 80%;
}

h4 a {
  text-decoration: none;
  color: #2e3639;
}

h4 a:hover {
  color: #e40031;
}

.dotted-line-break {
  border-bottom: dotted #666 1px;
  width: 80%;
  margin: 60px auto;
}

/* Header */
.header {
  font-family: "Roboto", verdana, sans-serif;
  position: fixed;
  z-index: 30;
  width: 100%;
  background-color: #fff;
  color: #2e3639;
  border-bottom: solid #ccc 1px;
  height: 102px;
  /* previously 115px; */
}

@media screen and (max-width: 1025px) {
  .header {
    position: absolute;
  }
}

.header--sw-link {
  width: 100%;
  background-color: #333;
  padding: 7px 20px;
  color: #fff;
  font-size: 12px;
}

.header--sw-link p {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.header--sw-link a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.header--sw-link a:hover {
  color: #fff;
}

.header--navigation {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header--navigation ul:nth-child(1) {
  width: 400px;
  margin-top: -17px;
}

@media screen and (max-width: 1025px) {
  .header--navigation ul:nth-child(1) {
    margin-top: 18px;
  }
}

.header--navigation ul {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.header--navigation__swlogo {
  padding: 3px 26px 0px 30px;
}

.header--navigation__swlogo img {
  height: 50px;
  width: auto;
}

@media screen and (max-width: 480px) {
  .header--navigation__swlogo {
    max-width: 20%;
    min-width: 140px !important;
  }
}

@media screen and (max-width: 1025px) {
  .header--navigation__swlogo {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 23% !important;
    flex: 0 0 23% !important;
    min-width: 150px;
    padding: 0px 10px 0px 20px;
    margin-top: -10px;
  }
}

.header--navigation__separator {
  width: 1px;
  background-color: #bebebe;
  height: 55px;
  margin-top: 2px;
}

@media screen and (max-width: 1025px) {
  .header--navigation__separator {
    margin-top: -13px;
  }
}

.header--navigation__rcmlogo {
  padding: 0px 0px 3px 30px;
}

.header--navigation__rcmlogo img {
  height: 56px;
  width: auto;
}

@media screen and (max-width: 480px) {
  .header--navigation__rcmlogo {
    max-width: 20%;
    min-width: 140px !important;
  }
}

@media screen and (max-width: 1025px) {
  .header--navigation__rcmlogo {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 23% !important;
    flex: 0 0 23% !important;
    min-width: 150px;
    padding: 10px 0px 0px 10px;
    margin-top: -20px;
  }
}

/* Main content area */
.main-content-wrapper {
  width: 100%;
  max-width: 2000px;
  /*   max-width:1024px; */
  margin: 0 auto;
}

.home-panels-wrap {
  width: 100%;
  padding-bottom: 20px;
  background-color: #f8f4f1;
}

.sharing {
  width: 100%;
  max-width: 400px;
  font-size: 14px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sharing .addthis_inline_share_toolbox {
  margin-left: 10px;
  margin-top: -4px;
}

.sharing a {
  padding: 8px !important;
}

.intro-block {
  padding-top: 102px;
  position: relative;
}

.intro-block h1 {
  font-weight: 400;
  line-height: 45px;
  color: #333;
  margin: 0px 0px 30px 0px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.intro-block h1 strong {
  color: #00aeef;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .intro-block h1 {
    margin-top: -30px !important;
    font-size: 18px !important;
    line-height: 20px !important;
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 1025px) {
  .intro-block h1 {
    font-size: 30px;
    line-height: 30px;
    margin-top: -30px;
  }
}

@media screen and (max-width: 1245px) {
  .intro-block h1 {
    margin-bottom: 20px;
    font-size: 32px;
  }
}

@media screen and (max-width: 1570px) {
  .intro-block h1 {
    line-height: 35px;
  }
}

.intro-block .article__breadcrumbs {
  text-align: center;
  padding: 20px 0px;
}

.intro-block .article__breadcrumbs span {
  color: #fbde7b;
}

.intro-block--pic {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .intro-block--pic {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .intro-block--pic {
    text-align: center;
    margin-left: -25%;
  }
}

@media screen and (max-width: 480px) {
  .intro-block--pic {
    background-color: #edeff0;
  }
}

.intro-block--pic img {
  border-bottom: solid #fbde7b 3px;
}

@media screen and (max-width: 1200px) {
  .intro-block--pic img {
    min-width: 1200px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .intro-block--pic img {
    min-width: 480px;
    height: auto;
  }
}

.intro-block .introPara {
  width: 90%;
  max-width: 545px;
  margin: 30px auto;
  text-align: center;
  color: #2e3639;
  font-size: 1.15rem;
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .intro-block .introPara {
    margin: 40px auto 30px auto;
  }
}

.intro-block--text {
  position: absolute;
}

@media screen and (max-width: 480px) {
  .intro-block--text {
    width: 70%;
    left: 5%;
    top: 210px;
  }
}

@media screen and (min-width: 480px) and (max-width: 680px) {
  .intro-block--text {
    width: 65%;
    left: 5%;
    top: 190px;
  }
}

@media screen and (min-width: 680px) and (max-width: 768px) {
  .intro-block--text {
    width: 45%;
    left: 7%;
    top: 210px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .intro-block--text {
    width: 50%;
    left: 5%;
    top: 210px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1380px) {
  .intro-block--text {
    left: 10%;
    top: 170px;
    width: 35%;
  }
}

@media screen and (min-width: 1381px) and (max-width: 1570px) {
  .intro-block--text {
    left: 19%;
    top: 230px;
    width: 28%;
  }
}

@media screen and (min-width: 1571px) {
  .intro-block--text {
    top: 250px;
    left: 25%;
    width: 22%;
  }
}

.intro-block--text h2 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #00aeef;
  margin: 15px 0px;
}

@media screen and (max-width: 480px) {
  .intro-block--text h2 {
    font-size: 12px;
    margin: 0px 0px;
  }
}

.intro-block--text ul {
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 200;
  font-size: 14px;
  margin-left: 15px;
}

@media screen and (max-width: 480px) {
  .intro-block--text ul {
    width: 70%;
    font-size: 12px;
    line-height: 17px;
  }
}

.intro-block--logo {
  position: absolute;
  width: 100%;
  bottom: 20px;
  text-align: right;
}

.intro-block--logo img {
  width: 100px !important;
  height: auto;
}

@media screen and (max-width: 480px) {
  .intro-block--logo {
    right: 4%;
    bottom: 10px;
    width: 57px;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .intro-block--logo {
    bottom: 20px;
    width: 15% !important;
    right: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .intro-block--logo {
    bottom: 20px;
    right: 4%;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1245px) {
  .intro-block--logo {
    right: 11%;
  }
}

@media screen and (min-width: 1245px) {
  .intro-block--logo {
    right: 26%;
  }
}

.intro-block--arrow {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 45px;
  font-size: 75px;
  transition: all 0.2s linear;
}

@media screen and (max-width: 480px) {
  .intro-block--arrow {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .intro-block--arrow {
    bottom: 20px;
  }
}

.intro-block--arrow a {
  color: #e40031;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  display: block;
}

.intro-block--arrow:hover {
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
}

@media screen and (max-width: 480px) {
  .home-page .intro-block--text {
    top: 145px;
  }
}

@media screen and (max-width: 480px) {
  .home-page .intro-block--pic {
    visibility: hidden;
  }
}

.rcm-categories {
  width: 100%;
  max-width: 980px;
  margin: 60px auto;
}

.rcm-categories a {
  color: #fff;
  text-decoration: none;
}

.rcm-categories--main-banner {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .rcm-categories--main-banner {
    max-width: 600px !important;
  }
}

.rcm-categories--main-banner div {
  width: 100%;
  overflow: hidden;
  margin-bottom: -10px;
  border-radius: 10px 10px 0px 0px;
}

.rcm-categories--main-banner img {
  width: 100%;
  height: auto;
  transition: all .5s ease-in-out;
  margin: 0;
  padding: 0;
}

.rcm-categories--main-banner img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.rcm-categories--main-banner__caption {
  position: relative;
  z-index: 10;
  background-color: #72d8b6;
  color: #fff;
  padding: 30px;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 30px;
  font-weight: 200;
  border-radius: 0px 0px 10px 10px !important;
}

.rcm-categories--small-banners {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .rcm-categories--small-banners {
    max-width: 600px !important;
    margin-top: 25px;
  }
}

.rcm-categories--small-banners .banner {
  margin-bottom: 24px;
  width: 100%;
}

.rcm-categories--small-banners .banner div {
  width: 100%;
  overflow: hidden;
  margin-bottom: -10px;
  border-radius: 10px 10px 0px 0px;
}

.rcm-categories--small-banners img {
  width: 100%;
  height: auto;
  transition: all .5s ease-in-out;
  margin: 0;
  padding: 0;
}

.rcm-categories--small-banners img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.rcm-categories--small-banners__caption {
  position: relative;
  z-index: 10;
  background-color: #f68f84;
  color: #fff;
  margin-top: -10px;
  padding: 10px;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 18px;
  font-weight: 200;
  border-radius: 0px 0px 10px 10px !important;
}

.rcm-categories--small-banners__caption.yellow {
  background-color: #fbde7b;
  color: #2e3639;
}

.trying-for-a-baby .intro-block .article__breadcrumbs {
  visibility: hidden;
}

.trying-for-a-baby .intro-block h1 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 36px;
  line-height: 45px;
  color: #333;
  margin: 0px 0px 30px 0px;
  position: relative;
  z-index: 2;
  margin: -40px auto 0px auto;
  padding: 10px 0px 13px 0px;
  text-align: center;
  width: 320px;
  border-radius: 0px;
  background-color: #fbde7b;
}

.trying-for-a-baby .intro-block h1 strong {
  color: #00aeef;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .trying-for-a-baby .intro-block h1 {
    width: 90% !important;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .trying-for-a-baby .intro-block h1 {
    width: 40%;
  }
}

@media screen and (max-width: 1025px) {
  .trying-for-a-baby .intro-block h1 {
    width: 50%;
    font-size: 30px;
    line-height: 35px;
  }
}

.trying-for-a-baby .intro-block--pic {
  margin-top: -8px;
}

.trying-for-a-baby .intro-block--pic img {
  border-bottom: solid #fbde7b 3px;
}

.expectant-mum .intro-block .article__breadcrumbs {
  visibility: hidden !important;
}

.expectant-mum .intro-block h1 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  margin: 0px 0px 30px 0px;
  position: relative;
  z-index: 2;
  margin: -40px auto 0px auto;
  padding: 10px 0px 13px 0px;
  text-align: center;
  width: 320px;
  border-radius: 0px;
  background-color: #f68f84;
}

.expectant-mum .intro-block h1 strong {
  color: #00aeef;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .expectant-mum .intro-block h1 {
    width: 90% !important;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .expectant-mum .intro-block h1 {
    width: 40%;
  }
}

@media screen and (max-width: 1025px) {
  .expectant-mum .intro-block h1 {
    width: 50%;
    font-size: 30px;
    line-height: 35px;
  }
}

.expectant-mum .intro-block--pic {
  margin-top: -8px;
}

.expectant-mum .intro-block--pic img {
  border-bottom: solid #f68f84 3px;
}

.new-mum .intro-block .article__breadcrumbs {
  visibility: hidden !important;
}

.new-mum .intro-block h1 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 36px;
  line-height: 45px;
  color: #fff;
  margin: 0px 0px 30px 0px;
  position: relative;
  z-index: 2;
  margin: -40px auto 0px auto;
  padding: 10px 0px 13px 0px;
  text-align: center;
  width: 320px;
  border-radius: 0px;
  background-color: #72d8b6;
}

.new-mum .intro-block h1 strong {
  color: #00aeef;
  font-weight: 400;
}

@media screen and (max-width: 480px) {
  .new-mum .intro-block h1 {
    width: 90% !important;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .new-mum .intro-block h1 {
    width: 40%;
  }
}

@media screen and (max-width: 1025px) {
  .new-mum .intro-block h1 {
    width: 50%;
    font-size: 30px;
    line-height: 35px;
  }
}

.new-mum .intro-block--pic {
  margin-top: -8px;
}

.new-mum .intro-block--pic img {
  border-bottom: solid #72d8b6 3px;
}

.stories-page .intro-block {
  padding-top: 102px;
}

.rcm-articles {
  margin-bottom: 0px auto 60px auto;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .rcm-articles {
    max-width: 750px !important;
  }
}

.rcm-articles--teaser {
  border-radius: 8px;
  color: #2e3639;
  margin: 5px !important;
  min-width: 220px;
  max-width: 300px;
  padding: 0px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px 0 #ccc;
}

@media screen and (max-width: 768px) {
  .rcm-articles--teaser {
    width: 48% !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 auto !important;
    flex: 1 0 auto !important;
    margin: 5px auto;
    min-width: 210px;
  }
}

@media screen and (max-width: 480px) {
  .rcm-articles--teaser {
    width: 85%;
    margin: 10px auto;
    max-width: 97% !important;
  }
}

.rcm-articles--teaser img {
  padding: 0px;
  height: auto;
  margin-bottom: -20px;
  width: 100%;
}

.rcm-articles--teaser h4 {
  font-size: 19px;
}

.rcm-articles--teaser p {
  font-weight: 200;
  width: 85%;
  margin-left: 20px;
  font-size: 0.8rem;
  line-height: 1.3;
}

.category-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin: -20px 0px 10px 20px;
  position: relative;
  z-index: 20;
  padding: 0 5px;
}

.category-tag.green {
  background-color: #72d8b6;
}

.category-tag.pink {
  background-color: #f68f84;
}

.category-tag.yellow {
  background-color: #fbde7b;
  color: #2e3639;
}

.article-panes {
  width: 100%;
  max-width: 980px;
  margin: 40px auto 0px auto;
}

@media screen and (max-width: 768px) {
  .article-panes {
    max-width: 90%;
    margin: 50px 0 0 30px;
  }
}

@media screen and (max-width: 480px) {
  .article-panes {
    width: 80%;
  }
}

.article-panes.row.between {
  border-bottom: dotted #2e3639 1px;
  margin-bottom: 60px;
}

.article-panes--featured {
  border-radius: 10px;
  border: solid #fbde7b 3px;
  padding: 50px 30px 30px 30px;
}

.article-panes--featured h4 {
  font-size: 21px;
  margin-left: 0px;
}

.article-panes--featured .fa-angle-right {
  margin-left: 5px;
}

.article-panes--featured .category-tag.green {
  margin-left: 0px;
  background-color: #72d8b6;
}

.article-panes--featured .category-tag.pink {
  margin-left: 0px;
  background-color: #f68f84;
}

.article-panes--featured .category-tag.yellow {
  margin-left: 0px;
  background-color: #fbde7b;
  color: #2e3639;
}

.article-panes--featured p.greenline {
  border-top: solid #72d8b6 1px;
  width: 20px;
}

.article-panes--featured p.pinkline {
  border-top: solid #f68f84 1px;
  width: 20px;
}

.article-panes--featured p.yellowline {
  border-top: solid #fbde7b 1px;
  width: 20px;
}

.article-panes--featured p {
  color: #777;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 18px;
}

.article-panes--snippets {
  margin: 0px 0px 0px 30px;
}

@media screen and (max-width: 768px) {
  .article-panes--snippets {
    margin: 0px 30px 0px 0px;
  }
}

.article-panes--snippets__entry {
  border-bottom: dotted #2e3639 1px;
  margin: 50px 0px 0px 30px;
}

.article-panes--snippets__entry h4 {
  margin-left: 0px;
}

.article-panes--snippets__entry .category-tag.green {
  margin-left: 0px;
  background-color: #72d8b6;
}

.article-panes--snippets__entry .category-tag.pink {
  margin-left: 0px;
  background-color: #f68f84;
}

.article-panes--snippets__entry .category-tag.yellow {
  margin-left: 0px;
  background-color: #fbde7b;
  color: #2e3639;
}

.article-panes--snippets__entry p {
  color: #777;
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 200;
}

.article-panes--snippets__entry.lower {
  margin-left: 30px;
  margin-bottom: 60px;
  margin-top: 30px;
  border-bottom: none;
  padding-left: 10px !important;
}

@media screen and (max-width: 768px) {
  .article-panes--snippets__entry.lower {
    margin-left: 30px;
    margin-top: 0px;
    max-width: 90%;
  }
}

.article-panes--snippets__entry.lower.col {
  padding-left: 0;
}

.trying-for-a-baby .article-panes--snippets__entry, .expectant-mum .article-panes--snippets__entry, .trying-for-a-baby .article-panes--snippets__entry {
  border-bottom: none;
}

.real-life .rcm-articles--teaser {
  height: 625px;
  position: relative;
}

.real-life .teaser-pic {
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.real-life h4 {
  font-family: "Roboto", verdana, sans-serif;
  margin-top: 20px;
  color: #90c92b;
  font-weight: 200;
}

.real-life h4 a {
  color: #2e3639;
}

.real-life h4 a:hover {
  color: #e40031;
}

.real-life h2 {
  font-family: "goudy-old-style", serif;
  color: #2e3639;
  font-size: 20px;
  line-height: 25px;
  margin: 14px 12px 19px 15px;
}

.real-life h2 a {
  color: #2e3639;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.real-life h2 a:hover {
  color: #e40031;
}

.real-life p {
  font-family: "Roboto", verdana, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #94989a;
  position: absolute;
  bottom: 2px;
}

.real-life p strong {
  font-weight: 600;
  color: #2e3639;
}

.see-more-link {
  font-family: "Roboto", verdana, sans-serif;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.see-more-link a {
  color: #90c92b;
  text-decoration: none;
}

.see-more-link a:hover {
  color: #e40031;
}

.recipes h4 {
  font-family: "goudy-old-style", serif;
  margin-top: 25px;
  color: #2e3639;
  font-weight: 400;
  text-align: left;
  font-size: 20px;
}

.recipes h4 a {
  color: #2e3639;
}

.recipes h4 a:hover {
  color: #e40031;
}

.recipes p {
  text-align: left;
  color: #999;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.recipes p:before {
  content: url(/mums/media/1228/clock-whiteback.gif);
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.pull-quote {
  width: 60%;
  min-width: 320px;
  max-width: 630px !important;
  border: solid #90c92b 2px;
  border-radius: 10px;
  margin: 80px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pull-quote {
    min-width: 300px;
  }
}

.pull-quote p {
  font-family: "goudy-old-style", serif;
  margin-top: -35px !important;
  padding: 20px;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 28px;
  color: #2e3639;
  line-height: 30px;
}

.pull-quote p strong {
  color: #90c92b;
  font-weight: 300;
}

.pull-quote .button {
  position: relative;
  bottom: -20px;
  background-color: #90c92b;
  color: #fff;
  margin: 0 auto;
  text-align: left;
}

.pull-quote .button a {
  color: #fff;
}

.whats-my-bmi {
  width: 100%;
  max-width: 545px;
  margin: 60px auto 0px auto;
  text-align: left;
  color: #2e3639;
  font-size: 1.15rem;
  color: #333;
  font-weight: 400;
}

.whats-my-bmi .bmi-calc .col {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-preferred-size: 0 !important;
  flex-basis: 0 !important;
}

.whats-my-bmi .calc-button {
  background-color: #90c92b;
  color: #fff;
  width: 170px;
  margin: 60px auto;
  padding: 10px;
  text-align: center;
  display: block;
  cursor: pointer;
}

.whats-my-bmi .component-intro-note {
  font-size: 17px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .whats-my-bmi {
    width: 90%;
  }
}

.whats-my-bmi .ng-cloak, .whats-my-bmi .ng-hide {
  display: none !important;
}

.whats-my-bmi h3 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 30px;
  color: #333;
  margin: 50px auto;
}

.whats-my-bmi h4 {
  font-weight: 400;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 20px;
  color: #333;
  text-align: left;
  padding: 0;
  margin: 0px 0px 10px 0px;
}

.whats-my-bmi .component-intro-text {
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 40px;
  border-bottom: solid #90c92b 2px;
  padding-bottom: 20px;
}

.whats-my-bmi .component-intro-text strong {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.whats-my-bmi .form-elements {
  font-family: "Roboto", verdana, sans-serif;
}

.whats-my-bmi .form-elements p {
  line-height: 36px;
  max-width: 70px;
}

.whats-my-bmi .form-elements input {
  margin-left: 10px;
  max-width: 70px;
}

@media screen and (max-width: 768px) {
  .whats-my-bmi .form-elements input {
    font-size: 16px !important;
  }
}

.whats-my-bmi .convertedHeightImp, .whats-my-bmi .convertedWeightImp, .whats-my-bmi .calculatedCategoryName, .whats-my-bmi .convertedHeightMetric, .whats-my-bmi .convertedWeightMetric {
  display: none;
}

.whats-my-bmi .bmi-results {
  font-family: "goudy-old-style", serif;
  border: solid #90c92b 2px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 546px;
  margin: 70px auto 50px auto;
}

.whats-my-bmi .bmi-results h2 {
  font-family: "goudy-old-style", serif;
  font-size: 27px;
  color: #2e3639;
  margin: -25px auto 30px auto;
  background-color: #fff;
  padding: 10px;
  max-width: 300px;
}

.whats-my-bmi .bmi-results--number {
  font-style: normal;
  color: #90c92b;
  font-size: 55px;
  font-weight: 600;
  margin-bottom: -10px;
}

.whats-my-bmi .bmi-results--message {
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 300;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.whats-my-bmi .bmi-results--message.fade {
  opacity: 1;
}

.whats-my-bmi .bmi-results--message.fade.ng-hide {
  opacity: 0;
}

.whats-my-bmi .bmi-results--message h4 {
  width: 100%;
}

.whats-my-bmi .height-unit-switcher #imperialBtn, .whats-my-bmi .height-unit-switcher #imperialBtn2, .whats-my-bmi .weight-unit-switcher #imperialBtn, .whats-my-bmi .weight-unit-switcher #imperialBtn2 {
  border-radius: 4px 0px 0px 4px;
  width: 100px;
}

.whats-my-bmi .height-unit-switcher #metricBtn, .whats-my-bmi .height-unit-switcher #metricBtn2, .whats-my-bmi .weight-unit-switcher #metricBtn, .whats-my-bmi .weight-unit-switcher #metricBtn2 {
  border-radius: 0px 4px 4px 0px;
  margin-left: -6px;
  width: 100px;
}

@media screen and (max-width: 768px) {
  .whats-my-bmi .height-unit-switcher #metricBtn, .whats-my-bmi .height-unit-switcher #metricBtn2, .whats-my-bmi .weight-unit-switcher #metricBtn, .whats-my-bmi .weight-unit-switcher #metricBtn2 {
    margin-left: 0px;
  }
}

.whats-my-bmi .height-unit-switcher .button, .whats-my-bmi .weight-unit-switcher .button {
  border-radius: 0px;
}

.whats-my-bmi .height-unit-switcher .button.btn-selected, .whats-my-bmi .weight-unit-switcher .button.btn-selected {
  background-color: #00aeef;
  color: #fff;
}

.whats-my-bmi .height-unit-switcher .button.initial-state, .whats-my-bmi .weight-unit-switcher .button.initial-state {
  background-color: #00aeef !important;
  color: #fff;
}

/*custom message for expectant mums section*/
.whats-my-bmi .bmi-results--message p.expectant {
  display: none;
}

body.expectant-mum .whats-my-bmi .bmi-results--message p.expectant {
  display: block;
}

body.expectant-mum .whats-my-bmi .bmi-results--message p.other-sections {
  display: none;
}

/* */
.bmi-chart {
  width: 100%;
  max-width: 695px;
  margin: 20px auto 20px auto;
}

.bmi-chart p {
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  margin: 30px 0px;
}

.find-nearest.button {
  position: relative;
  bottom: -20px;
  background-color: #edeff0 !important;
  color: #2e3639 !important;
  width: 60%;
  margin: 0 auto;
  border-radius: 0px;
}

@media screen and (max-width: 850px) {
  .find-nearest.button {
    font-size: 11px;
    line-height: 13px;
  }
}

@media screen and (max-width: 480px) {
  .find-nearest.button {
    width: 70%;
    line-height: 19px;
  }
}

.find-nearest.button a {
  color: #fff;
}

.find-nearest.button span {
  background-color: #90c92b;
  color: #fff;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px 13px;
}

@media screen and (max-width: 768px) {
  .find-nearest.button span {
    padding: 10px 8px;
  }
}

.find-nearest.button span a {
  color: #fff;
}

.find-nearest.button span a:hover {
  color: #2e3639;
}

.footer {
  width: 100%;
  background-color: #edeff0;
  font-family: "Roboto", verdana, sans-serif;
  margin: 0;
  padding: 45px;
}

.footer--links {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.footer--links__columns {
  width: 33% !important;
  max-width: 320px !important;
  min-width: 200px;
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 0 auto !important;
  flex: 1 0 auto !important;
}

.footer h2 {
  font-weight: 300;
  font-size: 18px;
  padding: 0px 10px;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  letter-spacing: 1px;
}

.footer h2.yellow {
  background-color: #fbde7b;
  color: #2e3639;
}

.footer h2.pink {
  background-color: #f68f84;
}

.footer h2.green {
  background-color: #72d8b6;
}

.footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 22px;
}

.footer ul a {
  color: #666;
  text-decoration: none;
  display: block;
}

.footer ul a:hover {
  color: #e40031;
}

.footer--terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-top: dotted #2e3639 1px;
  text-align: left !important;
  font-size: 12px;
  padding: 30px 10px 10px 10px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .footer--terms {
    padding: 30px 30px 10px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer--terms .footerlogo {
  width: 10%;
  max-width: 160px;
}

@media screen and (max-width: 768px) {
  .footer--terms .footerlogo {
    width: 75%;
    margin: 0 auto 30px auto;
  }
}

.footer--terms .footer-rcmlogo {
  width: 20%;
  max-width: 160px;
  padding: 0px 41px 0px 11px;
}

@media screen and (max-width: 768px) {
  .footer--terms .footer-rcmlogo {
    padding: 30px;
    margin: 0 auto;
    width: 75%;
  }
}

.footer--terms .footerlinks {
  width: 78%;
  max-width: 680px;
  text-align: center;
  padding-right: 60px;
  line-height: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .footer--terms .footerlinks {
    padding-right: 0px;
    height: auto;
  }
}

.footer--terms .footerlinks p {
  line-height: 16px;
  font-weight: 300;
  font-size: 10px;
  color: #333;
  margin: 4px 0px;
}

.footer--terms .footerlinks p:last-child {
  padding-bottom: 16px;
}

.footer--terms .footerlinks p.brandcopyright {
  font-size: 12px;
}

.footer--terms .footerlinks ul {
  list-style-type: none;
  margin: 0px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .footer--terms .footerlinks ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer--terms .footerlinks ul li {
  padding: 0px 15px;
  margin: 0;
  border-right: solid #333 1px;
}

@media screen and (max-width: 768px) {
  .footer--terms .footerlinks ul li {
    border-right: none;
  }
}

.footer--terms .footerlinks ul li:nth-last-child(1) {
  border-right: none;
}

.footer--terms .footerlinks ul a {
  color: #666;
}

.footer--terms .footerlinks ul a:hover {
  color: #e40031;
}

@media (max-width: 1025px) {
  .nav-wrapper {
    width: 100%;
    height: 45px;
    display: block;
    margin: 3px auto;
    background-color: transparent;
    font-size: 14px;
    text-align: left;
    position: relative;
  }
  .nav-wrapper .header--navigation__swlogo img, .nav-wrapper .header--navigation__rcmlogo img {
    max-height: 50px;
  }
  .nav-wrapper .main-menu {
    position: absolute;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    top: 45px !important;
    background: #fff;
    transition: max-height 0.2s linear, opacity .4s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .nav-wrapper .main-menu {
    display: block;
  }
}

@media (max-width: 1025px) {
  .nav-wrapper a {
    color: #2e3639;
  }
  .nav-wrapper .main-menu li {
    display: block;
    width: 100% !important;
  }
  .nav-wrapper .main-menu li a {
    display: block;
    padding: 10px 15px;
    position: relative;
  }
  .nav-wrapper .main-menu li a:hover {
    color: #777;
    background: #fff;
  }
  .showMenu {
    max-height: 175px !important;
    overflow: visible !important;
    opacity: 1 !important;
  }
  .showMenu li {
    border-top: solid #ccc 1px;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .showMenu li {
    background-color: #fff;
  }
}

@media (max-width: 1025px) {
  .showMenu li:nth-child(1) {
    margin-top: 3px;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .showMenu li:nth-child(1) {
    margin-top: 0px;
  }
}

@media (max-width: 1025px) {
  .showMenu li:nth-last-child(1) {
    border-bottom: solid #ccc 1px;
  }
  .showMenu a {
    text-decoration: none;
  }
  .showMenu a:hover {
    color: #000 !important;
    background-color: #edeff0 !important;
  }
  .arrow {
    font-size: 9px;
  }
  .dropdown-menu {
    display: none;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .dropdown-menu {
    display: block;
    background-color: #fff;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .dropdown-menu li {
    padding-left: 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1025px) and (max-width: 1025px) {
  .dropdown-menu li a:before {
    content: '>';
    margin-right: 10px;
  }
}

@media (max-width: 1025px) {
  .showDropdown {
    display: none;
    background: #fff;
  }
  .toggle-menu {
    position: absolute;
    top: 9px;
    right: 10px;
    float: right;
    z-index: 9999;
    padding: 0px 4px;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
  }
  .toggle-menu .span {
    display: block;
    margin: 4px 0;
    width: 19px;
    height: 2px;
    background: #777;
  }
  .toggle-menu:hover > .span {
    background: #e40031;
  }
}

@media (min-width: 1025px) {
  .nav-wrapper {
    max-width: 1124px;
    min-height: 40px;
    display: block;
    margin: 20px auto;
    background: transparent;
    font-size: 15px;
    text-align: left;
    padding: 0px;
  }
  .nav-wrapper a {
    color: #2e3639;
    text-decoration: none;
    display: block;
  }
  .nav-wrapper .main-menu {
    position: absolute;
    top: 68px;
    width: 100%;
    margin-left: 39% !important;
    max-width: 480px;
  }
  .nav-wrapper .main-menu li {
    display: inline-block;
    padding-left: 15px;
  }
  .nav-wrapper .main-menu li a {
    display: block;
    padding-left: 0px;
    position: relative;
  }
  .nav-wrapper .main-menu li a:hover {
    color: #e40031;
  }
  .dropdown-menu {
    position: absolute;
    background: #fff;
    transition: all 0.2s linear;
    visibility: hidden;
    opacity: 1;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    z-index: 999;
    box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.17);
    padding: 20px 0px 10px 0px;
    width: 33%;
    font-size: 14px;
  }
  .dropdown-menu li {
    display: block !important;
    padding: none;
    padding-left: 0px !important;
    line-height: 13px;
    margin-bottom: 10px;
  }
  .dropdown-menu li a {
    display: block !important;
    padding: none;
    padding-left: 0px !important;
    padding: 3px 15px !important;
  }
  .arrow {
    font-size: 9px;
  }
  .main-menu li:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@media (min-width: 1025px) {
  .nav-wrapper {
    font-size: 17px;
    padding: 0px 20px;
  }
  .nav-wrapper .main-menu {
    top: 68px;
    margin-left: 30%;
    max-width: 680px;
  }
}

@media (min-width: 1175px) {
  .nav-wrapper .main-menu {
    margin-left: 440px !important;
  }
}

.article {
  max-width: 1024px;
  padding-top: 175px;
  margin: 0 auto;
  font-family: "Roboto", verdana, sans-serif;
}

@media screen and (max-width: 1025px) {
  .article {
    padding: 175px 20px 0px 20px;
  }
}

.article__breadcrumbs {
  position: absolute;
  width: 100%;
  left: 0px;
  padding: 124px 8px 8px 8px;
  border-bottom: solid #ccc 1px;
}

.article__breadcrumbs ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1024px;
}

@media screen and (max-width: 1025px) {
  .article__breadcrumbs ul {
    width: 100%;
  }
}

.article__breadcrumbs li {
  margin: 0;
  padding: 0;
  padding-right: 25px;
  position: relative;
}

.article__breadcrumbs li:after {
  content: '●';
  color: #72d8b6;
  position: absolute;
  right: 11px;
  font-size: 0.4rem;
  top: 3px;
}

.article__breadcrumbs li:last-child:after {
  display: none;
}

.article__breadcrumbs a, .article__breadcrumbs span {
  color: #a0a1a2;
  text-decoration: none;
  font-size: 0.8rem;
  font-family: "Roboto", verdana, sans-serif;
}

.article__breadcrumbs a:hover, .article__breadcrumbs a.active, .article__breadcrumbs span:hover, .article__breadcrumbs span.active {
  color: #7d7d7d;
}

.article__content {
  max-width: 768px;
  margin: 0 auto;
}

.article__title {
  /*    padding: 35px 40px 0 40px;   */
  padding: 35px 0px 0px 0px;
}

.article__title span {
  background: #72d8b6;
  color: #FFFFFF;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Roboto", verdana, sans-serif;
  padding: 1px 5px 0px 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article__title h1 {
  font-family: "goudy-old-style", serif;
  color: #2f373a;
  font-size: 40px;
  margin-bottom: 25px;
  margin-top: 22px;
}

.article__intro {
  /*   padding: 0 40px;   */
  padding: 0px;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.article__intro p {
  color: #333;
  margin: 0;
  font-weight: 300;
  font-size: 19px;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 1.1rem;
}

.article__intro span {
  color: #4f4f4f;
}

.article__copy {
  /*  padding: 0 40px;  */
  padding: 0px;
  margin-bottom: 50px;
}

.article__copy h2 {
  font-family: "goudy-old-style", serif !important;
  color: #2f373a;
  font-size: 26px;
  margin: 50px 0px 20px 0px;
}

.article__copy h3 {
  color: #e40031;
  font-size: 1.2rem;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
  margin-top: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.article__copy p {
  color: #333;
  margin: 0;
  font-size: 1.0rem;
  font-weight: 200;
  line-height: 1.6;
}

.article__copy a {
  color: #222;
}

.article__copy ul li {
  color: #333 !important;
}

.article__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
  /* remove below width setting if full width not req */
}

.article__image img {
  width: 100%;
  height: auto;
  max-width: 755px;
  margin: 0 auto;
}

.article__table {
  padding: 0 40px;
  margin-bottom: 60px;
}

.article__table p {
  color: #333;
  margin: 0;
  font-size: 1.0rem;
  font-weight: 200;
  line-height: 1.3;
}

.article__table h2 {
  font-family: "goudy-old-style", serif !important;
  color: #2f373a;
  font-size: 26px;
  margin: 50px 0px 20px 0px;
}

.article__table h3 {
  color: #e40031;
  font-size: 1.2rem;
  margin: 0;
  margin-bottom: 15px;
  text-align: left;
  margin-top: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.article__table a {
  color: #000;
}

.article__table th {
  color: #e40031;
  font-size: 1.2rem;
  margin: 0;
  text-align: left;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  padding: 10px;
  padding-bottom: 30px;
}

.article__table td {
  border: none;
  padding: 5px 10px;
  color: #333;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 1rem;
  font-weight: 200;
}

.article__table td:first-child {
  border-radius: 10px 0 0 10px;
}

.article__table td:last-child {
  border-radius: 0 10px 10px 0;
}

.article__table tr {
  border: none;
  border-radius: 30px;
}

.article__table tr:nth-child(2n) {
  background: #edeff0;
}

.article__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 40px;
}

.article__quote p {
  font-family: "goudy-old-style", serif;
  font-size: 1.4rem;
  max-width: 350px;
  line-height: 1.2;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
  color: #53585a;
}

.article__quote span {
  color: #a0a1a2;
  font-size: 0.8rem;
  font-family: "Roboto", verdana, sans-serif;
}

.article__share .sharing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article__share .sharing .addthis_inline_share_toolbox {
  padding-left: 10px;
}

.find-more {
  width: 100%;
  background-color: #f8f4f1;
  padding: 60px 0px;
}

.find-more__title {
  font-weight: 400;
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 1px;
  font-family: "goudy-old-style", serif;
  color: #2e3639;
  padding: 0px 0px 40px 0px;
}

.find-more__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.find-more__section {
  max-width: 366px;
  min-width: 280px;
  margin: 11px;
  border-radius: 10px;
  overflow: hidden;
}

.find-more__section a {
  text-decoration: none;
  display: block;
}

.find-more__section-image {
  width: 100%;
  overflow: hidden;
}

.find-more__section-image img {
  display: block;
  transition: all .5s ease-in-out;
}

.find-more__section-image img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.find-more__section-label {
  background: #e40031;
  width: 100%;
  color: #FFFFFF;
  padding-left: 25px;
  height: 35px;
  line-height: 35px;
}

.find-more__articles {
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.find-more__article {
  min-width: 155px;
  width: 25%;
  margin: 11px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 1px 1px 2px 0 #ccc;
}

@media screen and (max-width: 768px) {
  .find-more__article {
    width: 33% !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 0 auto !important;
    flex: 1 0 auto !important;
  }
}

.find-more__article.col {
  padding-left: 0 !important;
}

.find-more__article a {
  text-decoration: none;
  display: block;
}

.find-more__article-image {
  width: 100%;
  overflow: hidden;
}

.find-more__article-image img {
  display: block;
  transition: all .5s ease-in-out;
  width: 100%;
}

.find-more__article-image img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.find-more__article-label {
  border-top: 2px solid #72d8b6;
  background: #fff;
  padding: 20px;
}

.find-more__article-label h4 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "goudy-old-style", serif;
  color: #2f373a;
  font-size: 1.2rem;
  width: 100%;
}

.find-more__article-label p {
  color: #333;
  line-height: 1.3;
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0;
}

.find-more--yellow .find-more__article-label {
  border-color: #fbde7b;
}

.find-more--pink .find-more__article-label {
  border-color: #f68f84;
}

.find-more--green .find-more__article-label {
  border-color: #72d8b6;
}

.recipes-page .intro-block--pic {
  margin-left: 0px;
}

@media screen and (max-width: 480px) {
  .recipes-page .intro-block--pic {
    margin-left: -90px;
  }
}

@media screen and (max-width: 768px) {
  .recipes-page .intro-block--pic {
    margin-bottom: -60px;
  }
}

.recipes-page .intro-block--pic img {
  border-bottom: 0;
}

@media screen and (max-width: 480px) {
  .recipes-page .intro-block--pic img {
    visibility: visible;
    min-width: 480px;
    height: auto;
    margin-left: -30px;
  }
}

@media screen and (max-width: 1200px) {
  .recipes-page .intro-block--pic img {
    min-width: 480px !important;
    height: auto;
  }
}

.recipe-finder {
  width: 100%;
  margin: 0 auto;
  font-family: "Roboto", verdana, sans-serif;
  background-color: #f8f4f1;
}

.recipe-finder--filters {
  padding: 32px 0px 20px 0px;
  margin-top: -6px;
}

.recipe-finder--filters ul {
  list-style-type: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recipe-finder--filters ul {
    text-align: center;
    margin-top: 50px;
  }
}

.recipe-finder--filters a {
  text-decoration: none;
  color: #4f4f4f;
  text-transform: uppercase;
  display: block;
  padding: 5px 0px;
  border: solid #2e3639 1px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .recipe-finder--filters a {
    margin: 0px auto 20px auto;
    width: 50%;
  }
}

.recipe-finder--filters a.active {
  text-decoration: none;
  color: #e40031;
}

.recipe-finder--filters a:hover {
  color: #e40031;
  border: solid #e40031 1px;
}

.recipe-finder--recipesWrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.recipe-finder--recipesWrap__recipe {
  border-radius: 20px;
  color: #2e3639;
  margin: 0px 10px 30px 10px;
  padding: 0px;
  overflow: hidden;
  width: 100%;
  height: 450px;
  position: relative;
  max-width: 308px !important;
  background-color: #fff;
  box-shadow: 1px 1px 2px 0 #ccc;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe {
    margin: 0px auto 30px auto;
  }
}

.recipe-finder--recipesWrap__recipe .recipe-pic {
  position: relative;
  /* img:hover { opacity:.6;}  */
}

.recipe-finder--recipesWrap__recipe .recipe-pic img {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  transition: all .5s ease-in-out;
  margin: 0;
  padding: 0;
}

.recipe-finder--recipesWrap__recipe .recipe-pic--video-tag {
  width: 74px;
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 20px;
}

.recipe-finder--recipesWrap__recipe .recipe-pic--video-tag img {
  max-width: 74px;
  height: auto !important;
}

.recipe-finder--recipesWrap__recipe .recipe-text {
  margin: 0;
  padding: 0;
}

.recipe-finder--recipesWrap__recipe h2 {
  font-family: "goudy-old-style", serif;
  color: #2e3639;
  font-size: 26px;
  line-height: 28px;
  margin: 10px 7px 5px 20px;
}

.recipe-finder--recipesWrap__recipe h2 a {
  color: #2e3639;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.recipe-finder--recipesWrap__recipe h2 a:hover {
  color: #e40031;
}

.recipe-finder--recipesWrap__recipe p {
  font-size: 12px;
  font-weight: 300;
  padding: 0px 30px 0px 0px;
  line-height: 19px;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe p {
    margin: 0px 20px 20px 20px;
  }
}

.recipe-finder--recipesWrap__recipe ul {
  list-style-type: none;
  margin: 0px 0px 15px 0px;
  font-size: 14px;
  font-weight: 300;
}

.recipe-finder--recipesWrap__recipe ul li {
  color: #94989a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px 0px 0px 20px;
  font-size: 14px;
  padding-top: 10px;
  border-top: solid #ccc 1px;
  position: absolute;
  bottom: 15px;
  width: 87%;
}

.recipe-finder--recipesWrap__recipe ul li:before {
  content: url(/mums/media/1228/clock-whiteback.gif);
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.recipe-finder--recipesWrap__recipe.featured {
  color: #fff;
  background-color: #e92449;
  width: 100%;
  max-width: 633px !important;
  margin: 0 auto 30px auto;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe.featured {
    max-width: 90% !important;
    height: 320px;
  }
}

@media screen and (max-width: 680px) {
  .recipe-finder--recipesWrap__recipe.featured {
    height: auto;
    min-height: 300px;
  }
}

@media screen and (max-width: 400px) {
  .recipe-finder--recipesWrap__recipe.featured {
    min-height: 450px;
  }
}

.recipe-finder--recipesWrap__recipe.featured .recipe-text {
  margin-top: 0px;
}

@media screen and (max-width: 868px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-text {
    margin-top: -10px;
    max-width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-text {
    margin-top: -70px !important;
    max-width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-text--intro {
    display: none;
  }
}

.recipe-finder--recipesWrap__recipe.featured .recipe-pic {
  position: relative;
  margin-bottom: -26px;
  max-width: 425px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

@media screen and (max-width: 868px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-pic {
    max-width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-pic {
    max-width: 100%;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
  }
}

.recipe-finder--recipesWrap__recipe.featured .recipe-pic img {
  width: 100%;
  height: 450px;
}

@media screen and (max-width: 868px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-pic img {
    height: auto;
  }
}

.recipe-finder--recipesWrap__recipe.featured .recipe-pic img:nth-child(1) {
  position: relative;
  left: -32px;
  top: 0px;
}

@media screen and (max-width: 868px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-pic img:nth-child(1) {
    left: 0px;
  }
}

.recipe-finder--recipesWrap__recipe.featured .recipe-pic--video-tag {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
}

@media screen and (max-width: 868px) {
  .recipe-finder--recipesWrap__recipe.featured .recipe-pic--video-tag {
    left: 0px;
  }
}

.recipe-finder--recipesWrap__recipe.featured h2 {
  font-family: "goudy-old-style", serif;
  color: #fff;
  font-size: 34px;
  line-height: 36px;
  margin: 30px 0px 20px 0px;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe.featured h2 {
    margin: 30px 20px 20px 20px;
  }
}

@media screen and (max-width: 400px) {
  .recipe-finder--recipesWrap__recipe.featured h2 {
    font-size: 25px;
    line-height: 25px;
  }
}

.recipe-finder--recipesWrap__recipe.featured h2 a {
  color: #fff;
  text-decoration: none;
}

.recipe-finder--recipesWrap__recipe.featured h2 a:hover {
  color: #f68f84;
}

.recipe-finder--recipesWrap__recipe.featured p {
  font-size: 16px;
  line-height: 21px;
  opacity: 0.8;
}

.recipe-finder--recipesWrap__recipe.featured ul {
  list-style-type: none;
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe.featured ul {
    margin: 0px 10px 20px 20px;
  }
}

.recipe-finder--recipesWrap__recipe.featured ul li {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px 10px 0px 0px;
  border-top: solid #fff 1px;
  width: 30%;
  border-top: solid #ed506d 1px;
}

@media screen and (max-width: 768px) {
  .recipe-finder--recipesWrap__recipe.featured ul li {
    width: 87%;
  }
}

.recipe-finder--recipesWrap__recipe.featured ul li:before {
  content: url(/mums/media/1227/clock-redback.gif);
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.recipe-finder .pull-quote {
  width: 60%;
  min-width: 320px;
  max-width: 630px !important;
  border: solid #90c92b 2px;
  border-radius: 10px;
  margin: 80px auto;
  text-align: center;
}

.recipe-finder .pull-quote p {
  font-family: "goudy-old-style", serif;
  margin-top: -35px !important;
  padding: 20px;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 28px;
  color: #2e3639;
  line-height: 30px;
}

.recipe-finder .pull-quote p strong {
  color: #90c92b;
  font-weight: 300;
}

.recipe-finder .pull-quote .button {
  position: relative;
  bottom: -20px;
  background-color: #90c92b;
  color: #fff;
  margin: 0 auto;
  text-align: left;
}

.recipe-finder .pull-quote .button a {
  color: #fff;
}

/* Recipe Detail Page */
@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.recipe-page .article {
  padding-top: 30px;
  max-width: 685px;
}

.recipe-page .article__breadcrumbs {
  padding-bottom: 10px;
  padding-top: 125px;
  width: 100%;
  margin: 0 auto;
}

.recipe-detail {
  width: 100%;
  padding-top: 175px;
  max-width: 1024px;
  margin: 0 auto;
}

.recipe-detail--hero {
  position: relative;
  padding: 0;
  margin: 0;
  max-height: 505px;
  text-align: center;
}

.recipe-detail--hero img.main-pic {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .recipe-detail--hero img.main-pic {
    margin: 0 auto;
    max-width: 480px;
  }
}

.recipe-detail--hero__video-tag {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 94px;
  z-index: 2;
  overflow: hidden;
}

.recipe-detail--hero__video-tag img {
  -webkit-animation: 1s ease-out 0s 1 slideInFromLeft;
  animation: 1s ease-out 0s 1 slideInFromLeft;
  margin-left: 0px;
}

.recipe-detail--hero__options-tag {
  position: absolute;
  bottom: 30px;
  right: 0px;
  z-index: 2;
}

.recipe-detail--description {
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 300;
  padding: 20px;
  max-width: 450px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 24px;
}

.recipe-detail--description h1 {
  color: #2e3639;
  font-family: "goudy-old-style", serif;
  font-size: 34px;
  line-height: 38px;
}

.recipe-detail--description .dotted-line-break {
  width: 100%;
  margin: 30px 0px;
}

.recipe-detail--description .recipe-stats ul {
  list-style-type: none;
  font-family: "Roboto Condensed", verdana, sans-serif;
  font-size: 15px;
  line-height: 16px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.recipe-detail--description .recipe-stats ul li {
  max-width: 90px;
  color: #2e3639;
  padding-left: 0px;
}

.recipe-detail--description .recipe-stats ul li.serves {
  -webkit-animation: fadein 1.5s;
  animation: fadein 1.5s;
  padding-top: 40px;
  background-image: url("/img/serves-icon.gif");
  background-repeat: no-repeat;
  background-position: top center;
}

.recipe-detail--description .recipe-stats ul li.prep {
  -webkit-animation: fadein 2.5s;
  animation: fadein 2.5s;
  padding-top: 40px;
  background-image: url("/img/prep-icon.gif");
  background-repeat: no-repeat;
  background-position: top center;
}

.recipe-detail--description .recipe-stats ul li.cook {
  -webkit-animation: fadein 3.5s;
  animation: fadein 3.5s;
  padding-top: 40px;
  background-image: url("/img/cook-icon.gif");
  background-repeat: no-repeat;
  background-position: top center;
}

@media screen and (max-width: 768px) {
  .recipe-detail--description .recipe-stats ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.recipe-detail--description__tip {
  background-image: url("/img/light-bulb-icon.gif");
  background-repeat: no-repeat;
  padding-left: 50px;
  font-family: "Roboto", verdana, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #2e3639;
  height: 50px;
}

.ingredients-and-method {
  margin: 30px auto 0px auto;
  max-width: 1024px;
}

@media screen and (max-width: 768px) {
  .ingredients-and-method {
    margin: 60px auto;
    width: 90%;
    text-align: center;
  }
}

.ingredients-and-method h2 {
  font-family: "goudy-old-style", serif;
  color: #e40031;
  font-size: 30px;
  font-weight: 700;
  margin: 0px 0px 30px 0px;
}

.ingredients-and-method--ingredients {
  font-family: "Roboto", verdana, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.ingredients-and-method--ingredients ul {
  list-style-type: disc;
  margin: 0px 0px 0px 20px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1025px) {
  .ingredients-and-method--ingredients ul {
    list-style-type: none;
    margin: 0px;
  }
}

.ingredients-and-method--ingredients li {
  margin: 14px 0px;
}

.ingredients-and-method--ingredients__suggestion {
  margin: 30px 0px;
}

.ingredients-and-method--ingredients__suggestion p {
  margin: 0;
}

.ingredients-and-method--ingredients__suggestion p:nth-child(1) {
  color: #e40031;
}

.ingredients-and-method--ingredients__suggestion .col-9 {
  padding-top: 15px;
}

.ingredients-and-method--ingredients--banner {
  width: 100%;
}

.ingredients-and-method--ingredients .dotted-line-break {
  width: 95%;
  margin: 0 auto 30px auto;
}

.ingredients-and-method--method ol {
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}

.ingredients-and-method--method ol li {
  font-family: "Roboto", verdana, sans-serif;
  position: relative;
  margin: 14px 0px;
  padding: 6px 0px;
  list-style: none;
  background-color: #fff;
}

@media screen and (min-width: 1025px) {
  .ingredients-and-method--method ol li {
    margin: 0 0 16px 1.5em;
    padding: 6px 5px;
  }
}

.ingredients-and-method--method ol li:before {
  position: relative;
  box-sizing: border-box;
  border-radius: 100px;
  width: 1.8em;
  height: 1.8em;
  padding: 6px;
  color: #2e3639;
  background: #fff;
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 800;
  text-align: left;
  font-size: 15px;
}

@media screen and (min-width: 1025px) {
  .ingredients-and-method--method ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    font-weight: 400;
    top: 0px;
    left: -2em;
  }
}

.ingredients-and-method--method li ol,
.ingredients-and-method--method li ul {
  margin-top: 6px;
}

.ingredients-and-method--method ol ol li:last-child {
  margin-bottom: 0;
}

.recipe-cta {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  padding: 30px 0px;
}

.recipe-cta h4 {
  font-family: "Roboto", verdana, sans-serif;
  margin: 10px 0px;
  padding: 0;
  font-weight: 400;
  width: 100%;
  font-size: 17px;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

.recipe-cta a {
  color: #e40031;
}

/* Story pages */
.stories-page .intro-block {
  position: relative;
}

@media screen and (max-width: 768px) {
  .stories-page .intro-block {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .stories-page .intro-block--pic {
    margin-left: 0px;
    margin-bottom: -50px;
  }
}

@media screen and (max-width: 480px) {
  .stories-page .intro-block--pic {
    margin-left: -100px;
  }
}

@media screen and (max-width: 325px) {
  .stories-page .intro-block--pic {
    margin-left: -150px;
    margin-bottom: -50px;
  }
}

.stories-page .intro-block--pic img {
  border-bottom: 0;
}

@media screen and (max-width: 480px) {
  .stories-page .intro-block--pic img {
    visibility: visible;
    min-width: 610px !important;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .stories-page .intro-block--pic img {
    min-width: 480px;
    height: auto;
  }
}

.stories-page .intro-block--storyBtns {
  width: 320px;
  margin: -70px auto 40px auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .stories-page .intro-block--storyBtns {
    margin: -27px auto 20px auto;
  }
}

@media screen and (max-width: 768px) {
  .stories-page .intro-block--storyBtns {
    margin: 12px auto 20px auto !important;
  }
}

.stories-page .intro-block--storyBtns .button {
  background-color: #90c92b;
  color: #fff;
  font-family: "Roboto", verdana, sans-serif;
  font-weight: 300;
  padding: 10px;
  margin: 0px 5px;
}

@media screen and (max-width: 480px) {
  .stories-page .intro-block--storyBtns .button {
    font-size: 12px;
    padding: 3px 10px;
    min-height: 30px;
  }
}

.stories-page .stories-finder {
  width: 100%;
  margin: 0 auto;
  font-family: "Roboto", verdana, sans-serif;
  background-color: #f8f4f1;
  padding-top: 10px;
  margin-top: -16px;
}

.stories-page .stories-finder--filters {
  padding: 12px 0px 8px 0px;
  font-size: 13px;
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}

.stories-page .stories-finder--filters ul {
  list-style-type: none;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--filters ul {
    text-align: center;
  }
}

.stories-page .stories-finder--filters a {
  text-decoration: none;
  color: #4f4f4f;
  text-transform: uppercase;
  display: block;
  padding: 5px 0px;
  border: solid #2e3639 1px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--filters a {
    margin: 0px auto 20px auto;
    width: 50%;
  }
}

.stories-page .stories-finder--filters a.active {
  text-decoration: none;
  color: #e40031;
}

.stories-page .stories-finder--filters a:hover {
  color: #e40031;
  border: solid #e40031 1px;
}

.stories-page .stories-finder--filters.fix-search {
  position: fixed;
  top: 155px;
  z-index: 3;
  padding: 12px 0px 0px 0px;
  width: 100%;
  max-width: 1024px;
  background-color: #fff;
  transition: padding .2s;
}

.stories-page .stories-finder--storiesWrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap {
    width: 90%;
  }
}

.stories-page .stories-finder--storiesWrap__story {
  position: relative;
  border-radius: 8px;
  color: #2e3639;
  margin: 0px 10px 30px 10px;
  min-width: 220px;
  max-width: 220px;
  height: 520px;
  padding: 0px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 2px 0 #ccc;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story {
    margin: 0px auto 30px auto;
    max-width: 300px !important;
  }
}

.stories-page .stories-finder--storiesWrap__story .story-pic {
  position: relative;
  width: 100%;
  max-height: 305px;
  overflow: hidden;
  /* img:hover { opacity:0.6; }  */
}

.stories-page .stories-finder--storiesWrap__story .story-pic img {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  transition: all .5s ease-in-out;
}

.stories-page .stories-finder--storiesWrap__story .story-text {
  margin: 0px 0px 0px 0px;
  padding: 0;
}

.stories-page .stories-finder--storiesWrap__story .story-text strong {
  color: #000;
}

.stories-page .stories-finder--storiesWrap__story h2 {
  font-family: "goudy-old-style", serif;
  color: #2e3639;
  font-size: 26px;
  line-height: 28px;
  margin: 14px 12px 19px 15px;
}

.stories-page .stories-finder--storiesWrap__story h2 a {
  color: #2e3639;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.stories-page .stories-finder--storiesWrap__story h2 a:hover {
  color: #e40031;
}

.stories-page .stories-finder--storiesWrap__story p {
  font-size: 12px;
  font-weight: 300;
  padding: 0px 30px 0px 0px;
  line-height: 19px;
}

.stories-page .stories-finder--storiesWrap__story p.story-stats {
  font-size: 15px;
  font-weight: 400;
  color: #94989a;
  padding: 0px 10px 0px 20px;
  position: absolute;
  bottom: 2px;
}

.stories-page .stories-finder--storiesWrap__story p.story-stats strong {
  font-weight: 400;
}

.stories-page .stories-finder--storiesWrap__story ul {
  list-style-type: none;
  margin: 0px 0px 15px 0px;
  font-size: 14px;
  font-weight: 300;
}

.stories-page .stories-finder--storiesWrap__story ul li {
  display: inline-block;
  margin: 0px 0px 0px 20px;
  font-size: 12px;
}

.stories-page .stories-finder--storiesWrap__story ul li i {
  color: #e40031;
  font-size: 14px;
}

.stories-page .stories-finder--storiesWrap__story.featured {
  color: #fff;
  background-color: #e92449;
  max-width: 466px !important;
  margin: 0px 10px 30px 0px;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured {
    height: 410px;
  }
}

@media screen and (max-width: 530px) {
  .stories-page .stories-finder--storiesWrap__story.featured {
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured p {
    margin: 0px 20px 20px 20px;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured p.story-stats {
  color: #fff;
  font-size: 15px;
  padding: 0px 10px 0px 0px;
  position: absolute;
  bottom: 2px;
}

.stories-page .stories-finder--storiesWrap__story.featured .story-text {
  margin: 5px 0px 0px 0px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-text {
    margin-top: -20px;
    max-width: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (max-width: 530px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-text--intro {
    display: none;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured .story-text strong {
  color: #fff;
}

@media screen and (max-width: 530px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-text h2 {
    font-size: 18px !important;
    line-height: 20px !important;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured .story-pic {
  position: relative;
  margin-bottom: -26px;
  max-height: 100%;
  overflow: none;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-pic {
    max-width: 50%;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured .story-pic img {
  width: 100%;
  height: 520px;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-pic img {
    height: auto;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured .story-pic img:nth-child(1) {
  position: relative;
  left: -32px;
  top: 0px;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured .story-pic img:nth-child(1) {
    left: 0px;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured h2 {
  font-family: "goudy-old-style", serif;
  color: #fff;
  font-size: 32px;
  line-height: 31px;
  margin: 20px 15px 20px 0px;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured h2 {
    margin: 40px 20px 20px 20px;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured h2 a {
  color: #fff;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

.stories-page .stories-finder--storiesWrap__story.featured h2 a:hover {
  color: #f68f84;
}

.stories-page .stories-finder--storiesWrap__story.featured ul {
  list-style-type: none;
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .stories-page .stories-finder--storiesWrap__story.featured ul {
    margin: 0px 10px 20px 20px;
  }
}

.stories-page .stories-finder--storiesWrap__story.featured ul li {
  display: inline-block;
  margin: 0px 10px 0px 0px;
}

.stories-page .stories-finder--storiesWrap__story.featured ul li i {
  color: #fff;
}

.stories-page blockquote {
  border-left: none !important;
  color: #000 !important;
}

.stories-page blockquote p {
  color: #000 !important;
}

.stories-page .pull-quote {
  width: 60%;
  min-width: 320px;
  max-width: 630px !important;
  border: solid #90c92b 2px;
  border-radius: 10px;
  margin: 80px auto;
  text-align: center;
}

.stories-page .pull-quote p {
  font-family: "goudy-old-style", serif;
  margin-top: -35px !important;
  padding: 20px;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 28px;
  color: #2e3639;
  line-height: 30px;
}

.stories-page .pull-quote p strong {
  color: #90c92b;
  font-weight: 300;
}

.stories-page .pull-quote .button {
  position: relative;
  bottom: -20px;
  background-color: #90c92b;
  color: #fff;
  margin: 0 auto;
  text-align: left;
}

.stories-page .pull-quote .button a {
  color: #fff;
}

/* Stories Detail Page */
.story-page .article {
  padding-top: 30px;
  max-width: 685px;
}

.story-page .article__image-group {
  margin: 50px auto;
  max-width: 207px;
}

.story-page .article__image-group .col {
  text-align: center;
}

.story-page .article__image-group img {
  border: solid #fff 5px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

.story-page .article__image-group p {
  max-width: 207px;
  font-size: 12px;
  line-height: 16px;
  color: #2e3639;
  margin-top: -6px;
  margin-left: -3px;
  background-image: url("/img/shadow-curve.jpg");
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 17px 10px 0px 10px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.story-page .article__breadcrumbs {
  padding-bottom: 10px;
  padding-top: 125px;
  width: 100%;
  margin: 0 auto;
}

.story-page .rcm-articles.real-life {
  background-color: #f8f4f1;
  max-width: 1100px;
  padding: 20px 0px;
  margin: 0 auto;
}

.story-page h3 {
  background-color: transparent;
  font-family: "goudy-old-style", serif;
  width: 100%;
  display: block;
  padding: 20px 0px 0px 0px;
  font-weight: 300;
  font-size: 26px;
}

.story-detail {
  width: 100%;
  max-width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 175px 20px 0px 20px;
}

@media screen and (max-width: 768px) {
  .story-detail {
    display: block;
  }
}

.story-detail .sharing {
  padding: 0px;
  text-align: left !important;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  width: 100%;
  margin: 35px 0px 30px -10px;
}

.story-detail--description {
  padding: 40px 0px 0px 0px !important;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .story-detail--description {
    padding: 40px 25px 0px 25px !important;
    margin-left: 0px;
  }
}

.story-detail--description__name {
  font-weight: 200;
  font-size: 22px;
  color: #2e3639;
}

.story-detail--description h1 {
  font-size: 44px;
  line-height: 44px;
  color: #2e3639;
  font-family: "goudy-old-style", serif;
  margin: 0;
}

.story-detail--description p.sw-comment {
  font-family: "Roboto", verdana, sans-serif;
  font-size: 22px;
  line-height: 28px;
  color: #333;
  font-weight: 300;
}

.story-detail--description .story-stats {
  display: none;
  margin: 50px 0px;
  border-radius: 5px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  /* IE10+, FF16+, Chrome26+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#33000000',GradientType=1 );
}

@media screen and (max-width: 768px) {
  .story-detail--description .story-stats {
    margin: 50px auto;
    max-width: 320px;
    text-align: center;
  }
}

.story-detail--description .story-stats ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", verdana, sans-serif;
  font-weight: 300;
  max-width: 45%;
}

.story-detail--description .story-stats--weight-loss {
  border-radius: 100px;
  background-color: #90c92b;
  width: 135px;
  height: 135px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  text-transform: lowercase;
  padding-top: 35px;
}

@media screen and (max-width: 768px) {
  .story-detail--description .story-stats--weight-loss {
    margin: 0 auto;
  }
}

.story-detail--description .story-stats--weight-loss span {
  font-size: 15px;
  line-height: 16px;
  text-transform: uppercase;
}

.story-detail--description .story-stats--weight-now, .story-detail--description .story-stats--weight-start, .story-detail--description .story-stats--weight-time, .story-detail--description .story-stats--weight-height {
  padding: 10px;
  font-size: 12px;
  line-height: 18px;
}

.story-detail--description .story-stats--weight-now p, .story-detail--description .story-stats--weight-start p, .story-detail--description .story-stats--weight-time p, .story-detail--description .story-stats--weight-height p {
  padding: 0;
  margin: 0;
}

.story-detail--description .story-stats--weight-now p:nth-child(2), .story-detail--description .story-stats--weight-start p:nth-child(2), .story-detail--description .story-stats--weight-time p:nth-child(2), .story-detail--description .story-stats--weight-height p:nth-child(2) {
  font-size: 24px;
  color: #90c92b;
  line-height: 24px;
}

.story-detail--hero {
  position: relative;
  padding: 0;
  margin: 0;
  width: 320px;
  max-width: 320px;
  min-width: 320px;
}

@media screen and (max-width: 768px) {
  .story-detail--hero {
    margin: 0 auto;
  }
}

.story-detail--hero img.main-pic {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.story-detail--hero ul li {
  list-style-type: none;
}

.story-detail--hero__video-tag {
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: 2;
}

.story-detail--hero__options-tag {
  position: absolute;
  bottom: 30px;
  right: 0px;
  z-index: 2;
}

.story-detail--hero .arrows-wrapper .leftSlide {
  color: red;
  width: 25px;
  height: 40px;
  padding-top: 9px;
  padding-left: 6px;
  background-color: #fff;
  border-radius: 0px 3px 3px 0px;
  position: absolute;
  z-index: 9;
  cursor: pointer;
  left: 0px;
  text-align: left;
  top: 200px;
}

.story-detail--hero .arrows-wrapper .rightSlide {
  color: red;
  width: 25px;
  height: 40px;
  padding-top: 9px;
  padding-right: 6px;
  background-color: #fff;
  border-radius: 3px 0px 0px 3px;
  position: absolute;
  z-index: 9;
  cursor: pointer;
  right: 0px;
  text-align: right;
  top: 200px;
}

.story-detail--hero .arrows-wrapper .fa {
  font-size: 20px;
}

/* Additional carousel styles */
.story-carousel {
  text-align: center !important;
}

.story-carousel--thumbs {
  cursor: pointer;
  text-align: left;
  margin: 10px 0px;
  max-width: 320px;
}

.story-carousel--thumbs .slick-slide {
  width: 80px !important;
}

.story-carousel--thumbs .slick-slide img {
  border-radius: 6px;
  max-width: 70px;
}

.story-carousel .slick-list {
  max-height: 435px;
  border-radius: 7px;
}
