@charset "UTF-8";
/************ COLORS ************/
/************ GLOBAL ************/
/************ LOGOS ************/
/************ HEADER SIZES************/
/************ ICONS ************/
/************ SOCIAL ************/
@font-face {
  font-family: 'custom-icons';
  src: url("../fonts/custom-icons.eot");
  src: url("../fonts/custom-icons.eot") format("embedded-opentype"), url("../fonts/custom-icons.woff2") format("woff2"), url("../fonts/custom-icons.woff") format("woff"), url("../fonts/custom-icons.ttf") format("truetype"), url("../fonts/custom-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "custom-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

/* Define Global Font Below */
body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; }

body h1, body h2, body h3 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px; }

body.cpxi_system_font_title_italic h1, body.cpxi_system_font_title_italic h2, body.cpxi_system_font_title_italic h3 {
  font-style: italic; }

body.cpxi_system_font_title_weight100 h1, body.cpxi_system_font_title_weight100 h2, body.cpxi_system_font_title_weight100 h3 {
  font-weight: 100; }

body.cpxi_system_font_title_weight200 h1, body.cpxi_system_font_title_weight200 h2, body.cpxi_system_font_title_weight200 h3 {
  font-weight: 200; }

body.cpxi_system_font_title_weight300 h1, body.cpxi_system_font_title_weight300 h2, body.cpxi_system_font_title_weight300 h3 {
  font-weight: 300; }

body.cpxi_system_font_title_weight400 h1, body.cpxi_system_font_title_weight400 h2, body.cpxi_system_font_title_weight400 h3 {
  font-weight: 400; }

body.cpxi_system_font_title_weight500 h1, body.cpxi_system_font_title_weight500 h2, body.cpxi_system_font_title_weight500 h3 {
  font-weight: 500; }

body.cpxi_system_font_title_weight600 h1, body.cpxi_system_font_title_weight600 h2, body.cpxi_system_font_title_weight600 h3 {
  font-weight: 600; }

body.cpxi_system_font_title_weight700 h1, body.cpxi_system_font_title_weight700 h2, body.cpxi_system_font_title_weight700 h3 {
  font-weight: 700; }

body.cpxi_system_font_title_weight800 h1, body.cpxi_system_font_title_weight800 h2, body.cpxi_system_font_title_weight800 h3 {
  font-weight: 800; }

body h4, body h5, body h6 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px; }

.cpxi-medium-title {
  font-size: 1.3em;
  font-weight: bold;
  text-transform: uppercase;
  list-style: none; }

.cpxi-large-title {
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  list-style: none; }

.cpxi-small-title {
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  list-style: none; }

.cpxi-italic-title {
  font-size: 1.3em;
  font-weight: bold;
  list-style: none;
  font-style: italic; }

.cpxi-article-font {
  font-weight: 300;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1.25em;
  text-rendering: optimizeLegibility; }

@media screen and (min-width: 768px) {
  .cpxi-large-title {
    font-size: 2.3em; }
  .cpxi-italic-title {
    font-size: 1.8em; } }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger-box {
  width: 33px;
  height: 22px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 33px;
  height: 3px;
  border-radius: 6px;
  position: absolute;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -9px; }

.hamburger-inner::after {
  bottom: -9px; }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  transition: top 0.1s 0.14s ease, opacity 0.1s ease; }

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease; }

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

.fade {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }

.shadow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 94%;
    left: 5%;
    height: 20px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .shadow:hover, .shadow:focus, .shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); }
    .shadow:hover:before, .shadow:focus:before, .shadow:active:before {
      opacity: 1;
      -webkit-transform: translateY(5px);
      transform: translateY(5px); }

.grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .grow:hover:before, .grow:focus:before, .grow:active:before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }

.underline-from-center {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .underline-from-center:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    right: 50%;
    bottom: 0px;
    height: 4px;
    background: red;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    border-radius: 2px; }
  .underline-from-center:hover:before, .underline-from-center:focus:before, .underline-from-center:active:before {
    left: 0;
    right: 0; }

/************* AMP STYLES *************/
/*********** SVG ICONS ************/
.svg-icons {
  fill: grey; }

.svg-icons.icon-facebook {
  fill: #ffffff; }

.svg-icons.icon-twitter {
  fill: #ffffff; }

.svg-icons.icon-pinterest {
  fill: #ffffff; }

.svg-icons.icon-tumblr {
  fill: #ffffff; }

.svg-icons.icon-stumbleupon {
  fill: #ffffff; }

.svg-icons.icon-instagram {
  fill: #ffffff; }

.svg-icons.icon-youtube {
  fill: #ffffff; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  word-wrap: break-word;
  word-break: normal; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

ol {
  list-style-type: decimal;
  list-style-position: inside; }

small {
  font-size: 85%; }

em, i {
  font-style: italic; }

b, strong, th {
  font-weight: bold; }

td {
  vertical-align: top; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

pre {
  background: #f5f5f5;
  color: #666;
  font-family: monospace;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

textarea {
  overflow: auto; }

input[type="text"], textarea {
  border: solid 1px #e0e0e0; }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

label, input[type="button"], input[type="submit"], input[type="image"], button {
  cursor: pointer; }

button, input, select {
  margin: 0;
  border: none; }

button {
  padding: 0;
  width: auto;
  overflow: visible; }

blockquote, q {
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none; }

blockquote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin: 24px 40px; }

blockquote blockquote {
  margin-right: 0; }

blockquote cite, blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase; }

blockquote em, blockquote i {
  font-style: normal;
  font-weight: 300; }

blockquote strong, blockquote b {
  font-weight: 400; }

/*********** GLOBAL MARKUP STYLES ***********/
a {
  text-decoration: none;
  cursor: pointer; }

button:focus, input[type="text"] {
  outline: none; }

.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

.none {
  display: none; }

.hidden {
  visibility: hidden; }

/*********** FLEXBOX DISPLAY ***********/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center; }

/*********** GLOBAL CONTAINERS ***********/
#main-content {
  margin: 90px auto 0; }

.push-down-content {
  width: 100%;
  height: 70px;
  position: relative; }

.push-down-content.slim-header {
  height: 70px; }

.cpxi-top-banner-ad ~ #master-container .push-down-content {
  height: 280px; }

.cpxi-top-banner-ad.scroll-to-fix ~ #master-container .push-down-content {
  height: 0; }

.cpxi-top-banner-ad.scroll-to-fix.fix-to-top ~ #master-container .push-down-content {
  height: 130px; }

.cpxi-top-banner-ad.scroll-to-fix.fix-to-top ~ #master-container .push-down-content.slim-header {
  height: 70px; }

.master-container {
  overflow: hidden; }

.home .content-container {
  max-width: 1160px; }

.content-container {
  margin: 0 auto;
  max-width: 1368px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: auto;
  padding: 0 20px; }

.feat-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 30px; }
  .feat-container img {
    width: 100%;
    display: block; }
  .feat-container .article-content {
    padding: 10px 20px; }

#sidebar-cpxi-right-rail-sidebar {
  max-width: 300px;
  width: 100%; }

/*********** BUTTONS ***********/
.cpxi-buttons:active {
  position: relative;
  top: 1px; }

.cpxi-buttons a {
  padding: 0; }

.cpxi-button-large {
  background-color: red;
  color: white;
  max-width: 100%;
  vertical-align: middle;
  font-size: 2em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px; }
  .cpxi-button-large a, .cpxi-button-large span {
    padding: 20px 10px;
    display: block;
    text-align: center; }
  .cpxi-button-large:hover {
    background-color: #cc0000; }
  .cpxi-button-large:active {
    position: relative;
    top: 1px; }

.cpxi-button-medium {
  background-color: red;
  color: white;
  max-width: 170px;
  vertical-align: middle;
  font-size: 1.5em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 170px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px; }
  .cpxi-button-medium a, .cpxi-button-medium span {
    padding: 15px;
    display: block;
    text-align: center; }
  .cpxi-button-medium:hover {
    background-color: #cc0000; }
  .cpxi-button-medium:active {
    position: relative;
    top: 1px; }

.cpxi-button-small {
  background-color: red;
  color: white;
  max-width: 140px;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: none;
  text-align: center;
  width: 100%;
  max-width: 140px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px; }
  .cpxi-button-small a, .cpxi-button-small span {
    padding: 10px 20px;
    display: block;
    text-align: center; }
  .cpxi-button-small:hover {
    background-color: #cc0000; }
  .cpxi-button-small:active {
    position: relative;
    top: 1px; }

.cpxi-secondary-button {
  background-color: #e6e6e6;
  color: #999;
  max-width: 60px;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: none;
  text-align: center;
  width: 100%;
  max-width: 60px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px; }
  .cpxi-secondary-button a, .cpxi-secondary-button span {
    padding: 23px 0;
    display: block;
    text-align: center; }
  .cpxi-secondary-button:hover {
    background-color: #cdcdcd; }
  .cpxi-secondary-button:active {
    position: relative;
    top: 1px; }

/*********** SOCIAL ICONS ***********/
.icons {
  margin-right: 1em;
  display: inline-block;
  text-align: left;
  width: auto;
  background-color: transparent; }
  .icons:before {
    font-family: "custom-icons";
    color: grey;
    font-size: 1.5em;
    vertical-align: middle; }

.comment-icon:before {
  content: ""; }

.fb-icon:before {
  content: "";
  color: #3b5998; }

.tw-icon:before {
  content: "";
  color: #00aced; }

.pin-icon:before {
  content: "";
  color: #cb2027; }

.inst-icon:before {
  content: "";
  color: #bc2a8d; }

.yt-icon:before {
  content: "";
  color: #bb0000; }

.tblr-icon:before {
  content: "";
  color: #32506d; }

.plus-icon:before {
  content: ""; }

.is-active .plus-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

.email-icon:before {
  content: ""; }

.search-icon:before {
  content: ""; }

.bubbles-icon:before {
  content: "";
  margin: 0 6px 0 0; }

.vuukle-comments-count .share-buttons {
  background-color: #f42222;
  max-width: 100%;
  width: 95%; }

.search-head {
  font-size: 2.5em;
  padding: 0 0 20px; }

/*********** AUTHOR PAGE ***********/
.author-info {
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .author-info .author-avatar {
    width: 96px;
    height: 96px;
    margin: 8px 20px 10px 0;
    display: inline-block;
    vertical-align: top; }
    .author-info .author-avatar img {
      max-width: 100%;
      border-radius: 50%; }
  .author-info .author-description {
    width: calc(100% - 130px);
    display: inline-block;
    margin-bottom: 40px; }
    .author-info .author-description h4 {
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: -1px;
      font-size: 29px;
      display: inline-block;
      position: relative;
      margin-top: 0; }
      .author-info .author-description h4:after {
        content: '';
        display: block;
        width: 50%;
        height: 5px;
        margin-bottom: 8px; }
    .author-info .author-description p {
      font-size: 15px;
      line-height: 1.1em; }

/*************ABOUT US SHORTCODE*************/
.brand-ambassador {
  margin: 40px 0; }
  .brand-ambassador .image {
    font-size: 2.3em;
    margin: 20px 20px;
    float: left;
    border-radius: 100%;
    border: 3px solid grey;
    overflow: hidden;
    position: relative;
    max-width: 96px;
    max-height: 96px; }
    .brand-ambassador .image img {
      padding: 0 !important;
      margin: 0; }

#nib_contact_form {
  padding: 20px; }

@media screen and (max-width: 414px) {
  .nib_contact_form input:not(.cpxi-buttons) {
    width: 95% !important; }
  #nib_contact_form {
    padding: 0; }
  textarea#nib_message {
    width: 95% !important; } }

/*********** SOCIAL SHARE BUTTONS ***********/
button.share-buttons {
  background-color: grey;
  color: white;
  max-width: 40px;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: none;
  text-align: center;
  width: 100%;
  max-width: 40px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  padding: 10px;
  margin: 0;
  width: 40px;
  margin-right: 4px;
  color: white;
  font-size: 1em;
  vertical-align: initial; }
  button.share-buttons a, button.share-buttons span {
    padding: 0;
    display: block;
    text-align: center; }
  button.share-buttons:hover {
    background-color: #676767; }
  button.share-buttons:active {
    position: relative;
    top: 1px; }
  button.share-buttons span {
    margin: 0; }
  button.share-buttons .icons:before {
    color: white;
    font-size: 1.2em; }

button.fb-share {
  background-color: #3b5998; }

button.fb-comment {
  background-color: #555555; }

button.tw-share {
  background-color: #00aced; }

button.plus-button {
  background-color: #373737; }

button.pin-share {
  background-color: #cb2027; }

button.tblr-share {
  background-color: #32506d; }

button.share-buttons.email {
  background-color: grey; }

/* Icon Pop */
@-webkit-keyframes icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5); } }

@keyframes icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5); } }

@media screen and (min-width: 768px) {
  .push-down-content {
    height: 175px; }
  .push-down-content.no-tagline {
    height: 162px; }
  .cpxi-top-banner-ad ~ #master-container .push-down-content {
    height: 325px; }
  .cpxi-top-banner-ad.scroll-to-fix.fix-to-top ~ #master-container .push-down-content {
    height: 175px; }
  #main-content {
    margin: 170px auto 20px; }
  body.ios #top-nav-bar .flex {
    display: -webkit-box; } }

@media screen and (max-width: 414px) {
  .author-info .author-description {
    width: 100%; }
  .cpxi-button-large {
    font-size: 1.6em; }
  .cpxi-button-large a, .cpxi-button-large span {
    padding: 20px 5px; } }

.top-bar-secondary .cpxi-header-socials {
  max-width: 100%; }
  .top-bar-secondary .cpxi-header-socials .expand-social-links {
    margin-right: 25px;
    font-size: 16px; }

.top-bar-secondary .slim-header .social-share-buttons {
  min-width: auto; }

.top-bar-secondary .cpxi-theme-logo {
  padding: 0 60px 0 0; }

.copyright-container {
  text-align: center;
  font-size: 16px;
  margin: 0 auto;
  padding: 30px 0; }

.footer-links {
  margin: 0 auto; }
  .footer-links li {
    display: inline-block; }
    .footer-links li.divider-pipe {
      color: white;
      margin: 0 15px; }
      .footer-links li.divider-pipe:last-child {
        display: none; }

.copyright {
  color: #999;
  margin: 15px 0 10px 0;
  font-size: 14px; }

.consumed-media-footer {
  font-size: 10px; }
  .consumed-media-footer a {
    display: block; }

.adchoice-arrow {
  margin-top: -3px;
  margin-left: 5px;
  height: 12px;
  width: 12px; }

/*End of cookie CSS*/
@media screen and (max-width: 414px) {
  .footer-links li.divider-pipe {
    margin: 5px; } }

.single-content article > *:not(.cpxi-article-body, .fb-comments, footer),
.single-content .cpxi-article-body > *:not(.cpxi-article-font, .above-social),
.single-content .cpxi-article-font > *:not(.article-content),
.single-content .article-content > *:not(.gallery-standard-slide):not(.wp-caption),
.single-content .gallery-standard-slide > *:not(.gallery-image) {
  margin: 0 20px; }

#main-content .gallery-standard-slide p:not(.wp-caption-text), #main-content .single-content .article-content p:not(.wp-caption-text), #main-content .single-content header, .cpxi-article-body .cpxi-article-font > h2, .cpxi-article-body .call-to-action, #main-content .single-content .article-content .gallery-standard-slide > h4 {
  margin: 10px 20px; }

.cpxi-article-font h2,
.cpxi-article-font h3 {
  font-style: normal;
  text-transform: none;
  margin: 10px 20px;
  font-size: 1.8em;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1.5px; }

/*============= Article Header =================*/
.default-post .info-meta {
  color: #999;
  text-transform: uppercase;
  margin: 12px 0;
  font-size: 12px; }
  .default-post .info-meta a {
    display: inline-block; }

.info-meta {
  overflow: hidden;
  padding: 20px 0 10px; }

.info-meta .cpxi-buttons.return-button {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin: 0 3px;
  font-size: 12px;
  float: none;
  border-radius: 3px;
  margin: 15px 0 0; }
  .info-meta .cpxi-buttons.return-button a {
    display: block;
    padding: 10px; }
    .info-meta .cpxi-buttons.return-button a::before {
      content: "";
      font-family: "custom-icons";
      display: inline-block;
      margin: 0 8px 0 0; }

.single-content article header {
  margin-bottom: 15px; }

/*============= Article Body =================*/
.cpxi-article-body .wp-caption {
  width: 100%;
  text-align: center;
  margin: 12px 0; }
  .cpxi-article-body .wp-caption img {
    max-width: 100%; }

.cpxi-article-body h2.cpxi-article-intro, .cpxi-article-body .call-to-action, .cpxi-article-body .slide_title {
  font-style: normal;
  text-transform: none; }

.cpxi-article-body .call-to-action {
  text-align: center; }

.cpxi-article-body .cpxi-pagination {
  margin: 20px 15px;
  padding-top: 0; }

p.wp-caption-text {
  background-color: #f7f7f7;
  line-height: 1em;
  font-size: 0.9em;
  color: #999;
  font-weight: 300;
  padding: 12px 24px;
  text-align: left;
  margin: 0; }

/* fix the padding between the image and credit */
div.post-image + p.wp-caption-text {
  margin-top: 10px; }

/* hide the intro image for ipp above 1 */
article.post-type-gallery.page1 .article-content > div.wp-caption, article.post-type-gallery.page1 .article-content > p > img {
  display: none; }

article.post-type-gallery.page1 .article-content > div.post-image, article.post-type-gallery.page1 .article-content > div.post-image + p {
  display: none; }

article.post-type-gallery.ipp1 .article-content > div.wp-caption, article.post-type-gallery.ipp1 .article-content > p > img {
  display: block; }

article.post-type-gallery.ipp1 .article-content > div.post-image, article.post-type-gallery.ipp1 .article-content > div.post-image + p {
  display: block; }

article.post-type-gallery.is_preview .article-content > div.wp-caption {
  display: block;
  border: 4px solid #ec0000; }

.article-content > p {
  padding-bottom: 10px; }

.gallery-standard-slide {
  margin: 10px 0 20px 0; }
  .gallery-standard-slide h4 {
    margin: 10px 20px; }
  .gallery-standard-slide p {
    margin: 10px 20px; }
  .gallery-standard-slide .image {
    text-align: center; }
    .gallery-standard-slide .image img {
      max-width: 100%;
      /* min-width: 100%; */
      /* min-height: 60vh; */
      display: block;
      margin: 0 auto;
      padding-top: 15px; }

.cpxi-article-body .article-content {
  line-height: 1.5em; }
  .cpxi-article-body .article-content .image {
    text-align: center; }
    .cpxi-article-body .article-content .image img {
      max-width: 100%;
      display: block;
      margin: 0 auto; }
  .cpxi-article-body .article-content img {
    padding-top: 15px;
    display: block;
    margin: 0 auto;
    max-width: 100%; }
  .cpxi-article-body .article-content .embed .twitter-tweet {
    margin: 15px auto !important; }
  .cpxi-article-body .article-content .embed iframe {
    width: 100%; }
  .cpxi-article-body .article-content iframe[class^="instagram-"] {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .cpxi-article-body .article-content ul {
    padding: 10px 40px; }
    .cpxi-article-body .article-content ul li {
      padding: 8px 0; }
  .cpxi-article-body .article-content #youtube-subscribe {
    text-align: center; }
    .cpxi-article-body .article-content #youtube-subscribe iframe {
      padding-top: 0; }
    .cpxi-article-body .article-content #youtube-subscribe .fb-like {
      margin-left: 8px;
      margin-top: -4px; }

/*============= Under Article Socials =================*/
#main-content .under-article-social {
  margin: 20px 10px; }

.under-article-social .under-article-like, .under-article-social .under-article-share {
  width: 50%;
  height: 54px;
  line-height: 54px;
  color: white; }

.under-article-like a, .under-article-share a {
  color: white; }

.under-article-social-inner {
  width: 100%;
  margin: 0 auto;
  max-width: 350px;
  text-align: center; }

.under-article-like {
  background-color: #f7f7f7;
  cursor: pointer;
  border-radius: 8px 0 0 8px; }

.under-article-like.comments {
  background-color: #555555;
  cursor: pointer;
  border-radius: 8px 0 0 8px; }

.under-article-like .comments {
  font-size: 130%; }
  .under-article-like .comments:before {
    font-family: custom-icons;
    content: "";
    color: white;
    padding-right: 3px; }

.fb-comments-count {
  display: none; }

.under-article-social-inner > .fb-like {
  top: -17px; }

.under-article-share {
  background-color: #3b5998;
  cursor: pointer;
  border-radius: 0 8px 8px 0; }

.under-article-social-inner > span.icons:before {
  color: white;
  margin-right: 8px;
  vertical-align: bottom; }

.under-article-social-inner > span > span {
  font-size: 1.4em; }

.open-comments {
  background-color: #555555;
  cursor: pointer;
  max-width: 100%;
  color: white;
  padding: 20px;
  text-align: center;
  opacity: 1;
  font-size: 1.75em;
  border-radius: 8px; }

.fadeout {
  -webkit-animation: fadeout 2.2s;
          animation: fadeout 2.2s;
  opacity: 0;
  cursor: auto; }

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

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

.button-wrapper {
  margin: 20px 15px; }

@media screen and (min-width: 414px) {
  .cpxi-article-body .article-content .ad iframe {
    width: 100%; }
  .info-meta .cpxi-buttons.return-button {
    float: right;
    margin: auto; } }

@media screen and (min-width: 768px) {
  #main-content .under-article-social {
    margin: 20px; }
  .single #main-content, .page #main-content {
    margin: 190px auto 20px; }
  .under-article-like .comments {
    font-size: 140%; }
    .under-article-like .comments:before {
      padding-right: 9px; }
  .fb-comments {
    padding-left: 20px; }
  .fb-comments-count {
    display: inline; }
  .single #main-content, .page #main-content {
    min-height: 2000px; } }

.recipe-content {
  margin: 30px 0;
  border-radius: 10px;
  padding: 20px; }
  .recipe-content .for-microdata {
    display: none; }
  .recipe-content h2 {
    margin-bottom: 15px;
    color: red; }
  .recipe-content .printfriendly {
    display: inline; }
    .recipe-content .printfriendly a {
      display: inline;
      background: none;
      border-color: transparent !important;
      padding: 0;
      margin: 0; }
      .recipe-content .printfriendly a:hover {
        background: none; }
        .recipe-content .printfriendly a:hover:before, .recipe-content .printfriendly a:hover span {
          color: #333; }
  .recipe-content .forPrinting {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px; }
  .recipe-content .difficulty {
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 10px; }
    .recipe-content .difficulty span {
      font-weight: 600;
      margin-right: 10px; }
  .recipe-content .recipe-author {
    text-transform: uppercase;
    text-align: right;
    font-size: 12px;
    margin: 0;
    padding: 0;
    clear: both;
    margin-top: 20px; }
    .recipe-content .recipe-author span {
      font-style: italic;
      font-size: 1.2em; }
  .recipe-content .description {
    padding: 15px 0; }

.cooking-times {
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .cooking-times div.times {
    margin: 10px;
    background: rgba(255, 0, 0, 0.05);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    width: 100%; }
    .cooking-times div.times p {
      text-transform: uppercase;
      margin: 0;
      padding: 0;
      line-height: 1em; }
    .cooking-times div.times .mins-type {
      font-size: .8em;
      margin-bottom: 4px; }
    .cooking-times div.times .mins {
      font-size: 1.5em;
      font-weight: 600; }
      .cooking-times div.times .mins span {
        font-size: .7em; }
  .cooking-times .total-time .mins {
    color: red; }

.prep-block {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.ingredients {
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  margin: 0 25px 0 0; }
  .ingredients h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px; }

.ingredient-list {
  margin: 0;
  padding: 0;
  line-height: 1em; }
  .ingredient-list li {
    list-style: none;
    padding: 0 0 10px; }
    .ingredient-list li input {
      display: none; }
    .ingredient-list li label {
      color: black;
      display: block; }
      .ingredient-list li label .checkbox {
        padding: 0;
        font-size: 16px;
        display: inline-block;
        margin: 0 10px 0 0;
        width: 16px;
        height: 16px;
        text-align: center;
        color: rgba(255, 0, 0, 0);
        font-weight: bold; }
        .ingredient-list li label .checkbox:before {
          content: '\00d7'; }
    .ingredient-list li input:checked + label {
      text-decoration: line-through;
      color: rgba(0, 0, 0, 0.5); }
      .ingredient-list li input:checked + label .checkbox {
        color: rgba(0, 0, 0, 0.5); }

.directions {
  width: 100%; }
  .directions h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px; }
  .directions .directions-list li {
    list-style: none;
    padding: 0 0 15px; }
  .directions .direction-label {
    display: inline-block;
    width: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin: 0 16px 0 0;
    background: rgba(255, 0, 0, 0.5);
    color: white;
    vertical-align: middle; }

#vqzb_content {
  text-align: center; }
  #vqzb_content table {
    width: 100%; }
  #vqzb_content img {
    width: auto;
    max-height: 250px;
    max-width: 100%;
    border-radius: 5px; }
  #vqzb_content h3 {
    font-weight: 600;
    text-transform: uppercase; }
  #vqzb_content .answer_list {
    margin: 0; }
  #vqzb_content input[type="checkbox"] + label, #vqzb_content input[type="radio"] + label {
    display: inline-block;
    width: 100%;
    background: #eee;
    border-radius: 5px;
    text-align: left;
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 600;
    margin: 4px 0;
    max-width: 580px;
    line-height: 1.1em; }
    #vqzb_content input[type="checkbox"] + label:hover, #vqzb_content input[type="radio"] + label:hover {
      background: #d5d5d5; }
  #vqzb_content input[type="checkbox"], #vqzb_content input[type="radio"] {
    display: none; }

@media screen and (min-width: 500px) {
  .prep-block, .cooking-times {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .ingredients {
    max-width: 285px; } }

/*************** TOP BANNER AD 970X250 **************/
.cpxi-top-banner-ad {
  background-color: blue;
  height: 250px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999; }

.cpxi-top-banner-ad.scroll-to-fix {
  position: relative; }

.cpxi-top-banner-ad.fix-to-top {
  position: fixed;
  top: -250px;
  display: none; }

/*************** BELOW HEADER BANNER AD 970X250 **************/
@media screen and (min-width: 1024px) {
  .wrap-for-970 {
    width: 970px;
    margin: 20px auto; } }

/*********** SIDEBARS ***********/
.cpxi-homepage-sidebar-container {
  display: none; }

/*********** GENERAL AD CONTAINERS ***********/
#main-content .ad {
  margin: 15px auto;
  text-align: center; }
  #main-content .ad div {
    /* margin: 0 auto; */
    text-align: center; }

#main-content .ad div[id^=div-gpt-ad-] {
  margin: 0 auto; }

/*============= sticky rails =================*/
.cpxi-left-rail-sidebar-container {
  width: 160px;
  display: inline-block; }

.cpxi-right-rail-sidebar-container {
  width: 300px;
  display: inline-block; }

/*============= Below article taboola ads =================*/
footer .ad div[id^=taboola-below-gallery-] {
  margin: 15px 15px 15px 20px !important; }

footer .ad div[id^=taboola-below-gallery-] * {
  text-align: left !important; }

/*********** AD PLUGIN STYLES ***********/
.cpxadvert-ad {
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
  clear: both; }

.cpxadvert-debug {
  text-align: center;
  font-size: large;
  background-color: yellow;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%; }

/* ad=197 -- uses the same classes to deal with removal of the previous icon font */
/* Pulled certain classes from: http://assets.consumedmedia.com/fonts/styles.css */
.c3 {
  font-family: "custom-icons";
  font-style: normal !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icons-chevron-down-3:before {
  content: "";
  color: white; }

/* ad=75 */
.read-more-link {
  float: none !important; }

/* ad=89 */
body.single .sticky-footer {
  -webkit-box-shadow: none;
  box-shadow: none; }

/* removes footer shadow for full bg takeover */
.post-content .entry-title {
  margin-top: 3px; }

h2, .entry-content .call-to-action {
  line-height: 1em; }

.advertisement_text_ap_728 {
  font-size: 13px;
  color: #777; }

.video-label-box .video-title, .trc_rbox_header {
  font-weight: 400 !important;
  text-transform: uppercase;
  line-height: 1.2em !important; }

.syndicatedItem .branding {
  font-weight: 400 !important;
  font-family: "Open Sans",Helvetica,Arial,sans-serif !important; }

.consumed-media-footer img {
  display: none; }

.sticky-footer {
  padding-bottom: 50px; }

/* ad=96 */
/* Advertisement text above ads - Moved from: http://assets.consumedmedia.com/css/adstyles.css */
.topadtxt {
  display: table;
  white-space: nowrap;
  width: 98%;
  max-width: 170px;
  color: #777;
  margin: 3px auto 3px auto;
  font-family: sans-serif;
  font-size: 13px;
  text-align: center; }

.topadtxt:before,
.topadtxt:after {
  border-top: 1px solid #D4D4D4;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.65em;
  width: 45%; }

.topadtxt:before {
  right: 1%; }

.topadtxt:after {
  left: 1%; }

/* Advertisement text above ads END */
/*********** SIDEBARS ***********/
@media screen and (min-width: 1024px) {
  .cpxi-homepage-sidebar-container {
    max-width: 300px;
    width: 100%;
    display: block; } }

/*********** LEFT RAIL & RIGHT RAIL ADS ON DETAIL PAGE ***********/
.left-sidebar-160 {
  max-width: 160px; }

.cpxi-right-rail-sidebar-container {
  max-width: 300px; }
  .cpxi-right-rail-sidebar-container .widget {
    width: 300px; }

.ad .resize728 {
  width: 100% !important;
  max-width: 728px;
  margin: 0 auto; }

.topadtxt {
  display: table;
  white-space: nowrap;
  width: 98%;
  max-width: 170px;
  color: #777;
  margin: 3px auto 3px auto;
  font-family: sans-serif;
  font-size: 13px;
  text-align: center; }

/* sticky5: Moved from: http://assets.consumedmedia.com/css/sticky5core.css */
.sticky5 {
  height: auto;
  background-color: #f3f3f3;
  position: fixed;
  bottom: 0;
  z-index: 99999995;
  margin-left: -30px;
  border: 0px;
  text-align: center;
  border-top: 5px solid #333;
  margin-bottom: 0px !important; }

.sticky5-x {
  position: absolute;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 25px;
  background-color: #333;
  padding-top: 3px;
  color: #DEDEDE;
  z-index: 9999995;
  border-radius: 3px 3px 0px 0px;
  margin-top: -29px;
  text-align: center; }

.sticky5-remove {
  display: none; }

.sticky5ad {
  height: auto;
  margin: auto;
  text-align: center;
  display: inline-block;
  vertical-align: bottom;
  max-width: 100%;
  overflow: hidden; }

@media screen and (max-width: 1385px) {
  .sticky5 {
    margin-left: -20px; } }

@media screen and (max-width: 965px) {
  .sticky5 {
    width: 100% !important;
    left: 0px;
    margin-left: 0px; } }

#header-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000; }

#top-nav-bar.scroll-to-fix {
  position: relative;
  top: 0;
  margin-top: 0; }

#top-nav-bar.fix-to-top {
  position: fixed;
  top: 0;
  margin-top: 0; }

:not(.cpxi-top-banner-ad) #top-nav-bar {
  top: 0; }

/*********** CONTAINER DIVS ***********/
.header-wrap {
  height: 70px; }

.header-wrap.slim-header {
  height: 70px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.header-wrap.no-tagline {
  height: 70px; }

.top-bar-color {
  height: 6px;
  overflow: hidden; }

/*********** CONTENT CONTAINER DIVS ***********/
.header-wrap .top-bar-inside-wrap {
  height: 64px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto; }

/*********** LOGO ***********/
.cpxi-theme-logo {
  padding: 0 20px;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear; }

.cpxi-theme-logo.hide {
  opacity: 0;
  visibility: hidden;
  width: 0;
  padding: 0; }

.cpxi-theme-logo a {
  display: block; }

.cpxi-theme-logo .cpxi-logo-img {
  max-width: 240px;
  width: 100%; }

/*********** NAV MENU ICONS ***********/
.hamburger {
  padding: 15px 0; }

.top-bar-inside-wrap .cpxi-header-nav .search-button {
  display: none; }

/*********** HEADER SOCIAL ***********/
.header-wrap .top-bar-inside-wrap .cpxi-header-socials {
  max-width: 20px;
  margin: 0;
  width: 100%;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.header-wrap .top-bar-inside-wrap .cpxi-header-socials.expand {
  max-width: 200px; }

.header-wrap .cpxi-header-socials.slim-header {
  max-width: 145px; }

.cpxi-header-socials .social-icons-wrap.social-share-buttons,
.cpxi-header-socials .social-icons-wrap.social-page-links,
.cpxi-header-socials.slim-header button.expand-social-links.slim-header {
  width: 0;
  display: none; }

.cpxi-header-socials.slim-header .social-icons-wrap.social-share-buttons.slim-header,
.cpxi-header-socials.expand .social-icons-wrap.social-page-links {
  width: auto;
  display: inherit; }

button.expand-social-links {
  display: block;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  button.expand-social-links .icons.plus-icon {
    margin: 0; }

.social-share, .social-share-dropdown {
  margin: 0; }
  .social-share li, .social-share-dropdown li {
    padding: 0; }

.social-share-dropdown {
  position: absolute;
  right: 0;
  padding: 12px 16px;
  background-color: black;
  top: -200px;
  text-align: right;
  z-index: -1;
  border-radius: 0 0 6px 6px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.social-share-dropdown.drop-down-show {
  top: 51px;
  right: 12px; }

.slim-header .social-share-buttons > ul > li {
  display: inline-block; }

.has-follow-btn {
  display: inherit; }

.has-follow-btn .follow-btn {
  width: 0;
  overflow: hidden;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

/*********** DROP DOWN ***********/
.header-wrap .drop-down-bg {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: -1;
  margin-top: -600px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.header-wrap .drop-down-inside-wrap {
  padding: 12px 0; }

.header-wrap .drop-down-bg.drop-down-show {
  margin-top: 0; }

#searchform {
  width: 100%; }

input.search-bar {
  width: calc(100% - 128px);
  background-color: white;
  border-radius: 6px 0 0 6px;
  padding: 8px 24px;
  color: #777;
  height: 38px;
  font-size: 1em; }

.search-submit {
  background-color: grey;
  color: white;
  max-width: 80px;
  vertical-align: middle;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  text-transform: none;
  text-align: center;
  width: 100%;
  max-width: 80px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  float: right;
  margin-left: -80px;
  height: 56px;
  border-radius: 0 6px 6px 0; }
  .search-submit a, .search-submit span {
    padding: 0;
    display: block;
    text-align: center; }
  .search-submit:hover {
    background-color: #676767; }
  .search-submit:active {
    position: relative;
    top: 1px; }
  .search-submit .search-icon {
    color: white;
    margin-right: 0; }

ul.cpxi-main-menu {
  width: 100%;
  margin-top: 80px;
  padding: 13px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

ul.cpxi-main-menu li {
  text-align: center;
  font-size: 1.1em;
  margin: 0;
  border-bottom: 1px solid #1b1b1b;
  width: 100%;
  font-style: normal;
  position: relative; }

ul.cpxi-main-menu ul.sub-menu,
ul.cpxi-main-menu ul.child-sub-menu {
  max-height: 0;
  position: relative;
  left: auto;
  width: 100%;
  display: none;
  -webkit-transition: max-height 0.8s;
  transition: max-height 0.8s; }

ul.cpxi-main-menu ul.sub-menu li {
  border: transparent; }

ul.cpxi-main-menu ul.sub-menu.sub-menu-show {
  overflow: visible;
  max-height: 100vh;
  display: block; }

li.nav-drop-item.nav-main-item.cpxi-medium-title {
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 0px; }

@media screen and (max-width: 414px) {
  .drop-down-bg.search .drop-down-inside-wrap {
    padding: 12px; }
  .menu-open a.nav-main-link:after {
    background: #282828;
    border-bottom-color: transparent; }
  ul.cpxi-main-menu li {
    font-size: 1.1em;
    line-height: 1em;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #1b1b1b;
    width: 100%;
    font-style: normal;
    position: relative; }
  ul.cpxi-main-menu ul.sub-menu.sub-menu-show,
  ul.cpxi-main-menu ul.sub-menu ul.child-sub-menu.sub-menu-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #292929; }
  ul.sub-menu.sub-menu-show,
  ul.child-sub-menu.sub-menu-show {
    margin-top: 9px;
    margin-bottom: -20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: #1b1b1b 1px solid; }
  li.menu-item-has-children.cpxi-medium-title a.nav-main-link::after {
    content: "\f0d7";
    color: white;
    font-family: "custom-icons";
    float: right;
    position: absolute;
    right: 0px;
    border-left: #292929 1px solid;
    width: 20px;
    top: 0px;
    padding: 18px 10px 20px 10px;
    height: 10px; }
  li.nav-drop-item.nav-main-item.cpxi-medium-title {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0; }
  li.nav-drop-item.nav-main-item.cpxi-medium-title a {
    display: block;
    width: 100%;
    padding: 15px 0px 15px 0px; } }

/*********** SLIDER ***********/
#top-nav-bar + .slider-wrapper {
  margin-top: 130px; }

#main-content .content-container {
  padding: 0px; }

.left-content {
  width: 100%;
  max-width: 798px; }

/********* DEFAULT LAYOUT **********/
.default-post {
  margin-bottom: 15px;
  width: 100%;
  max-width: 798px; }
  .default-post article {
    width: 100%; }
    .default-post article a {
      display: block; }
  .default-post .article-content {
    padding: 12px 24px;
    background-color: #FFF; }
    .default-post .article-content > * {
      margin: 8px 0; }
    .default-post .article-content .cpxi-button-small {
      padding: 10px 20px; }
      .default-post .article-content .cpxi-button-small span, .default-post .article-content .cpxi-button-small a {
        padding: 0; }
    .default-post .article-content .comment-bubble {
      display: inline-block;
      text-align: right;
      float: right;
      margin: 28px 0 0 0; }
      .default-post .article-content .comment-bubble a:before {
        content: "";
        font-family: "custom-icons";
        display: inline-block;
        margin: 0 5px 0 0; }

/********* GRID LAYOUT **********/
.grid-content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%; }

.grid-post {
  width: 100%;
  max-width: 324px; }
  .grid-post a {
    display: block; }
  .grid-post .grid-article {
    width: 100%; }
    .grid-post .grid-article img {
      width: 324px; }
    .grid-post .grid-article .article-content {
      padding: 8px; }
      .grid-post .grid-article .article-content > * {
        margin: 0; }

.post-article a {
  display: block; }

.post-article.grid-article {
  width: 100%; }

.article-inner .img-container {
  overflow: hidden;
  position: relative; }
  .article-inner .img-container.default-img {
    max-height: 370px; }
  .article-inner .img-container.grid-img {
    max-height: 338px; }
  .article-inner .img-container.feat-img {
    max-height: 704px; }
  .article-inner .img-container img {
    width: 100%;
    max-width: 100%;
    display: block; }
  .article-inner .img-container .video-overlay:after {
    border: solid 10px #fff;
    border-radius: 50%;
    color: #fff;
    content: "";
    font-family: "custom-icons";
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -65px;
    margin-left: -70px;
    height: 120px;
    line-height: 118px;
    opacity: .7;
    padding-left: 9px;
    text-align: center;
    vertical-align: middle;
    width: 115px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .article-inner .img-container .slide-count {
    border: solid 3px #fff;
    font-size: 20px;
    line-height: 39px;
    text-align: center;
    width: 42px;
    height: 42px;
    position: absolute;
    right: 24px;
    bottom: 12px; }
    .article-inner .img-container .slide-count::before, .article-inner .img-container .slide-count::after {
      content: '';
      border-color: #fff;
      border-style: solid;
      border-width: 3px 3px 0 0;
      position: absolute;
      height: 42px;
      width: 42px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .article-inner .img-container .slide-count::before {
      top: -9px;
      left: 9px; }
    .article-inner .img-container .slide-count::after {
      top: -15px;
      left: 15px; }

.article-gallery-holder {
  position: relative; }
  .article-gallery-holder .gallery-canvas {
    position: relative;
    padding: 0;
    text-align: center; }
    .article-gallery-holder .gallery-canvas a {
      display: block; }
    .article-gallery-holder .gallery-canvas img {
      width: 100%; }
  .article-gallery-holder .gallery-image-count-inner-wrap a {
    display: block; }
  .article-gallery-holder .gallery-image-count-inner-wrap .text {
    background-color: #b80451;
    border: solid 3px #fff;
    color: #fff;
    font-size: 15px;
    line-height: 36px;
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 135px; }
    .article-gallery-holder .gallery-image-count-inner-wrap .text::before, .article-gallery-holder .gallery-image-count-inner-wrap .text::after {
      content: '';
      border-color: #fff;
      border-style: solid;
      border-width: 3px 3px 0 0;
      position: absolute;
      top: -9px;
      left: 3px;
      height: 42px;
      width: 135px; }
    .article-gallery-holder .gallery-image-count-inner-wrap .text::before {
      right: -9px;
      left: auto; }
    .article-gallery-holder .gallery-image-count-inner-wrap .text::after {
      right: -15px;
      left: auto;
      top: -16px; }

@media screen and (min-width: 768px) {
  .grid-post {
    margin: 0 20px 20px; }
  #main-content .content-container {
    padding: 50px 20px 0 20px; } }

@media screen and (min-width: 1024px) {
  .left-content {
    margin-right: 30px; } }

/*============= NUMBER Buttons on HOMEPAGE & CATEGORY PAGES=================*/
.cpxi-pagination, .pagenavi-buttons {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 20px 0;
  padding: 0; }
  .cpxi-pagination div:not(.cpxi-button-large), .pagenavi-buttons div:not(.cpxi-button-large) {
    width: 45%;
    margin: 0 auto; }

@media screen and (min-width: 768px) {
  .cpxi-pagination div:not(.cpxi-button-large) {
    margin: 0 auto;
    width: 40%;
    max-width: none; }
  .page-numbers {
    opacity: 1;
    visibility: visible;
    width: auto;
    margin: 10px 10px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .page-numbers li {
      margin: 0 5px; }
      .page-numbers li.current {
        background-color: #cdcdcd; }
    .page-numbers li a:not(:last-child) {
      margin-right: 2px; }
    .page-numbers a, .page-numbers span {
      width: 60px; }
  footer .pagenavi-buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

/*============= MOBILE ONLY =================*/
.content-container .single-content {
  width: 100%; }

.right-sidebar-300, .left-sidebar-160 {
  display: none; }

/*============= TABLET ONLY =================*/
@media screen and (min-width: 965px) {
  .content-container .single-content {
    width: calc(100% - 190px);
    margin: 0 0 0 30px;
    padding: 0 0 0 30px;
    max-width: 788px;
    border-top: 0 solid #eaeaea;
    border-right: 0 solid #eaeaea;
    border-bottom: 0 solid #eaeaea;
    border-left: 1px solid #eaeaea; }
  .right-sidebar-300 {
    display: none; }
  .left-sidebar-160 {
    display: block; } }

@media screen and (max-width: 1386px) and (min-width: 1161px) {
  .single-content.has-left-sidebar-160 {
    margin: 0 30px 0 0;
    padding: 0 30px 0 0;
    width: calc(100% - 330px);
    border-top: 0 solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 0 solid #eaeaea;
    border-left: 0 solid #eaeaea; }
  .right-sidebar-300 {
    display: block; }
  .left-sidebar-160 {
    display: none; } }

@media screen and (min-width: 1386px) {
  .single-content.has-right-sidebar-300.has-left-sidebar-160 {
    margin: 0 30px;
    padding: 0 30px;
    width: calc(100% - 520px);
    border-top: 0 solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 0 solid #eaeaea;
    border-left: 1px solid #eaeaea; }
  .left-sidebar-160, .right-sidebar-300 {
    display: block; } }

@media screen and (min-width: 768px) {
  .header-wrap {
    height: 175px; }
  .header-wrap .top-bar-inside-wrap {
    height: 150px; }
  .header-wrap .top-bar-inside-wrap.slim-header {
    height: 64px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .header-wrap.no-tagline {
    height: 162px; }
  .cpxi-theme-logo {
    margin-right: 90px; }
  .cpxi-theme-logo.slim-header {
    margin-right: 0; }
  .cpxi-theme-logo .cpxi-logo-img {
    max-width: initial; }
  .hamburger {
    padding: 15px; }
  .top-bar-inside-wrap .cpxi-header-nav .search-button {
    display: block;
    margin: 15px 15px 15px 0;
    width: 100%;
    background-color: transparent;
    border-left: 2px solid;
    padding-left: 15px; }
    .top-bar-inside-wrap .cpxi-header-nav .search-button span {
      margin: 0; }
    .top-bar-inside-wrap .cpxi-header-nav .search-button .icons:before {
      font-size: 2em;
      margin: 0; }
    .top-bar-inside-wrap .cpxi-header-nav .search-button.is-active .icons:before {
      content: "";
      width: 23px;
      display: block; }
  .header-wrap .top-bar-inside-wrap .cpxi-header-socials {
    width: auto; }
  .top-bar-color {
    height: auto; }
  .header-wrap .top-bar-color .cpxi-header-tagline {
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    margin: 0 auto;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out; }
    .header-wrap .top-bar-color .cpxi-header-tagline:empty {
      height: 12px; }
  .header-wrap .top-bar-color.slim-header .cpxi-header-tagline {
    opacity: 0;
    visibility: hidden; }
  .top-bar-color.slim-header {
    height: 6px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .header-wrap .top-bar-color .cpxi-header-tagline {
    font-size: 15px; }
  button.expand-social-links {
    display: none; }
  .cpxi-header-socials .social-icons-wrap.social-page-links {
    opacity: 1;
    visibility: visible;
    width: auto;
    display: inherit;
    -webkit-transition: visibility 0s, opacity 0.5s linear;
    transition: visibility 0s, opacity 0.5s linear; }
  .cpxi-header-socials.slim-header .social-icons-wrap.social-page-links {
    opacity: 0;
    visibility: hidden;
    width: 0; }
  .has-follow-btn.slide-show .follow-btn {
    width: auto;
    margin-right: 10px; }
  ul.cpxi-main-menu li {
    text-align: left; }
  ul.cpxi-main-menu {
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  ul.cpxi-main-menu > li {
    width: initial;
    margin: 0 20px;
    border-bottom: none; }
  ul.cpxi-main-menu ul.sub-menu,
  ul.cpxi-main-menu ul.child-sub-menu {
    margin-top: 20px;
    padding-top: 20px; }
  ul.cpxi-main-menu ul.sub-menu.sub-menu-show,
  ul.cpxi-main-menu ul.child-sub-menu.sub-menu-show {
    overflow: visible;
    max-height: 100vh;
    display: block;
    text-align: left; }
  ul.cpxi-main-menu ul.sub-menu {
    position: absolute;
    left: -40px;
    min-width: 0px;
    margin: 25px 0 0 0;
    width: auto; }
    ul.cpxi-main-menu ul.sub-menu li {
      padding: 5px 40px 25px; }
      ul.cpxi-main-menu ul.sub-menu li a {
        padding-bottom: 0; }
  ul.cpxi-main-menu ul.child-sub-menu {
    position: absolute;
    min-width: 0px;
    margin: 0;
    width: auto;
    right: -25px;
    top: -20px;
    background: #000; }
    ul.cpxi-main-menu ul.child-sub-menu li {
      padding: 5px 40px 25px; }
      ul.cpxi-main-menu ul.child-sub-menu li a {
        padding-bottom: 0; }
  .header-wrap.slim-header ul.cpxi-main-menu ul.sub-menu.sub-menu-show {
    margin-top: 10px;
    border-top: 0; }
  li.nav-drop-item.nav-main-item.cpxi-medium-title {
    font-size: 16px; }
  li.nav-drop-item.nav-main-item.cpxi-medium-title a {
    white-space: nowrap;
    padding-bottom: 30px; }
  /*********** SLIDER ***********/
  #top-nav-bar + .slider-wrapper {
    margin-top: 143px; } }

.voting-content {
  margin: 20px 0;
  border-radius: 3px;
  padding: 20px;
  text-align: center; }
  .voting-content h3 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 9px;
    text-align: center; }

.voting-wrapper {
  margin: 0 auto;
  padding: 0;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .voting-wrapper .voting-btn {
    width: 38%;
    margin: 1%;
    text-align: center;
    cursor: pointer;
    font-size: 24px; }
    .voting-wrapper .voting-btn button {
      max-width: 100%;
      border-radius: 3px; }
    .voting-wrapper .voting-btn .up-votes, .voting-wrapper .voting-btn .down-votes {
      display: block;
      line-height: 50px; }
  .voting-wrapper .or {
    display: inline-block;
    width: 10%;
    margin: 3%;
    text-align: center;
    vertical-align: top;
    font-size: 24px; }
