@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Font Awesome
# Layout
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Font Awesome
--------------------------------------------------------------*/
@import "https://use.fontawesome.com/c895056382.css";
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #4d4d4d;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "Merriweather", sans-serif;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.75em 0;
}

h3 {
  font-size: 1.17em;
  margin: 0.83em 0;
}

h4 {
  font-size: 1em;
  text-transform: uppercase;
}

h5 {
  font-size: .83em;
  margin: 1.5em 0;
}

h6 {
  font-size: .75em;
  margin: 1.67em 0;
}

p {
  margin-bottom: 1em;
}

dfn, cite, em, i {
  font-style: italic;
}

a {
  color: #F56A6A;
  text-decoration: none;
}

blockquote {
  background-color: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "“" "”" "‘" "’";
  font-style: italic;
}

blockquote::before {
  color: #ccc;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 1.5em;
  margin-right: 0.25em;
}

blockquote p {
  display: inline;
  font-size: 15px;
}

address {
  font-style: italic;
  margin: 0 0 1.5em;
}

img {
  border: 0 none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.flexia-container {
  width: 100%;
  margin: 0 auto;
}

.flexia-container.width {
  width: 90%;
}

.flexia-container.max {
  max-width: 1400px;
}

.flexia-row {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

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

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

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

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.flexia-wrapper, .entry-content-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.flexia-wrapper > *,
.entry-content-wrapper > * {
  flex: 1 100%;
}

.content-area, .single-post-entry {
  order: 1;
  overflow: hidden;
  max-width: 100%;
}

.flexia-sidebar-left {
  order: 2;
}

.flexia-sidebar-right {
  order: 3;
}

@media all and (min-width: 768px) {
  .content-area, .single-post-entry {
    flex: 3 0px;
  }

  .flexia-sidebar-left {
    order: 1;
  }

  .content-area, .single-post-entry {
    order: 2;
  }

  .flexia-sidebar-right {
    order: 3;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  .content-area, .single-post-entry {
    flex: 1 1 100%;
    order: 1;
  }

  .flexia-sidebar-left {
    flex: 1 1 auto;
    order: 2;
  }

  .flexia-sidebar-right {
    flex: 1 1 auto;
    order: 3;
  }
}
@media all and (min-width: 960px) {
  .flexia-sidebar-left {
    flex: 0 0 auto;
  }

  .flexia-sidebar-right {
    flex: 0 0 auto;
  }
}
@media all and (max-width: 480px) {
  .flexia-sidebar {
    flex: 1 1 auto;
  }
}
@media all and (min-width: 960px) and (max-width: 1023px) {
  .sidebar-left-right .content-area, .sidebar-left-right .single-post-entry {
    flex: 1 1 100%;
    order: 1;
  }

  .sidebar-left-right .flexia-sidebar-left {
    flex: 1 1 auto;
    order: 2;
  }

  .sidebar-left-right .flexia-sidebar-right {
    flex: 1 1 auto;
    order: 3;
  }
}
.site-header {
  position: relative;
  z-index: 10;
}

.flexia-header-widget-inner {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-flow: row wrap;
}

.flexia-header-widget-inner .widget {
  flex: 1 1 auto;
  background-color: transparent;
  color: #fff;
}

.flexia-header-widget-area .widget-title {
  color: #fff;
}

.flexia-header-widget-inner .widget a {
  color: #F56A6A;
}

.flexia-header-widget-area {
  padding: .5em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.flexia-header-widget-area.header-widget-open {
  overflow-y: scroll;
  max-height: 100%;
  z-index: 99999;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.flexia-header-widget-inner .widget {
  margin: 1em;
  padding: 1em;
  min-width: 250px;
}

@media all and (min-width: 768px) {
  .flexia-header-widget-inner .widget {
    flex: 1 1 30%;
  }
}
@media all and (min-width: 960px) {
  .flexia-header-widget-inner .widget {
    flex: 1 1 20%;
  }
}
@media all and (max-width: 959px) {
  .header-widget-toggle:not(.toggle-collapsed) {
    top: 20px;
    bottom: auto;
  }
}
@media all and (max-width: 767px) {
  .flexia-logobar-inline {
    margin-left: 0;
  }
}
/* Header widget toggle */
.header-widget-toggle {
  cursor: pointer;
  height: 40px;
  position: absolute;
  width: 40px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  bottom: -40px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.flexia-header-widget-area.header-widget-open .header-widget-toggle {
  bottom: 0;
}

.header-widget-toggle:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.header-widget-toggle.toggle-collapsed {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.admin-bar .header-widget-toggle.toggle-collapsed {
  margin-bottom: -32px;
}

.header-widget-toggle::before, .header-widget-toggle::after {
  background: #fff;
  content: '';
  height: 1px;
  left: 13px;
  position: absolute;
  top: 20px;
  width: 15px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.header-widget-toggle:after {
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header-widget-toggle.toggle-collapsed:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header-widget-toggle.toggle-collapsed:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Flexia Logobar */
.flexia-logobar {
  display: flex;
  justify-content: center;
  align-content: center;
}

.flexia-logobar-container {
  flex: 1 1 auto;
}

.flexia-logobar .site-branding {
  text-align: center;
}

.flexia-logobar-stacked + .flexia-navbar .flexia-navbar-inner {
  justify-content: center;
}

/* Flexia Topbar */
.flexia-topbar {
  position: relative;
  background-color: #262625;
}

.flexia-topbar-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.flexia-topbar-content {
  font-size: .8em;
  color: #cbced3;
}

.flexia-topbar-content {
  font-size: .8em;
  color: #cbced3;
  padding: .5em 0;
  text-align: center;
}

.flexia-topbar-content p {
  margin: 0;
}

.flexia-navbar {
  width: 100%;
  color: #262625;
  z-index: 99;
  box-shadow: 0 0.15em 0.35em 0 rgba(0, 0, 0, 0.135);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flexia-navbar-container {
  position: relative;
}

.flexia-navbar-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  min-height: 40px;
}

.flexia-logobar-inline {
  flex: 0 0 auto;
  margin: 0 1em;
  max-width: 450px;
}

.site-branding .site-title, .site-branding .site-title a {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1em 0;
  font-weight: 700;
}

.site-description {
  font-size: 1em;
  color: #4d4d4d;
  font-style: italic;
  margin-top: 0;
}

.flexia-logobar-inline .site-description {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.flexia-header-logo {
  display: block;
  padding: .5em;
}

.flexia-logobar-stacked .flexia-header-logo {
  margin: 0 auto;
}

.site-branding .flexia-header-logo > img {
  max-width: 100%;
  width: 100%;
}

.main-navigation {
  margin: 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexia-navbar.flexia-sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  animation-duration: 0.5s;
  animation-name: slideInDown;
}

.flexia-navbar.flexia-navbar-transparent-top {
  background-color: transparent;
  border: none;
  box-shadow: none;
  position: absolute;
  left: 0;
  right: 0;
}

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

@media all and (min-width: 601px) {
  .admin-bar .flexia-navbar.flexia-sticky-navbar {
    margin-top: 32px;
  }
}
.flexia-site-footer {
  background-color: #262625;
}

.flexia-colophon-inner {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-flow: row wrap;
  padding: .5em 0;
  align-items: flex-start;
}

.flexia-colophon-inner .widget {
  flex: 1 1 auto;
  min-width: 250px;
}

.flexia-footer-widget-area {
  padding: .5em;
}

.flexia-colophon-inner .widget {
  margin: 1em;
}

.flexia-back-to-top, .flexia-back-to-top:visited {
  font-size: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 3px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  z-index: 10;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

.flexia-back-to-top:focus, .flexia-back-to-top:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

@media all and (min-width: 768px) {
  .flexia-colophon-inner .widget {
    flex: 1 1 30%;
  }
}
@media all and (min-width: 960px) {
  .flexia-colophon-inner .widget {
    flex: 1 1 20%;
  }
}
/* Site Footer */
.flexia-site-footer .site-info {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .5em;
}

.flexia-sidebar {
  padding: 0 1em;
  width: 300px;
}

@media all and (max-width: 959px) {
  .widget.widget_search {
    flex: 1 100% !important;
  }
}
@media all and (min-width: 768px) and (max-width: 959px) {
  .flexia-sidebar {
    padding: 0 0 1.5em;
  }

  .flexia-sidebar-inner {
    display: flex;
    flex-flow: row wrap;
    padding: 0 .5em;
  }

  .flexia-sidebar-inner > .widget {
    flex: 1 1 30%;
    margin: 1em;
    min-width: 250px;
  }

  .widget.widget_search .search-submit {
    max-width: 100px;
  }
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background-color: #f9f9f9;
  /* Fallback for when there is no custom background color defined. */
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

.button, .btn {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.75);
  padding: .5em 1em;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all 0.2s;
}

.button:hover, .btn:hover, .button:active, .btn:active, .button:focus, .btn:focus {
  background-color: #262625;
  color: #fff;
}

table {
  background-color: transparent;
  box-sizing: border-box;
  margin: 1.6em 0;
  max-width: 100%;
  width: 100%;
}

table th, table td {
  border-top: 1px solid #efefef;
  font-size: 16px;
  line-height: 20px;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

table th {
  color: #000;
}

table caption + thead tr:first-child th, table caption + thead tr:first-child td, table colgroup + thead tr:first-child th, table colgroup + thead tr:first-child td, table thead:first-child tr:first-child th, table thead:first-child tr:first-child td {
  border-top: 0 none;
}

table tbody + tbody {
  border-top: 2px solid #efefef;
}

table table table {
  background-color: #fff;
}

table tbody > tr:nth-child(2n+1) > td, table tbody > tr:nth-child(2n+1) > th {
  background-color: #f6f6f6;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #ebebeb;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #F56A6A;
}
a:visited {
  color: #23527c;
}
a:hover, a:focus, a:active {
  color: #23527c;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.nav-menu, .nav-menu ul {
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  cursor: pointer;
  -moz-transition: ease-out 0.3s 0.1s;
  -o-transition: ease-out 0.3s 0.1s;
  -webkit-transition: ease-out 0.3s;
  -webkit-transition-delay: 0.1s;
  transition: ease-out 0.3s 0.1s;
}

.flexia-menu ul {
  z-index: 9999;
  margin: 0;
  padding: 0;
}

.flexia-menu ul,
.flexia-menu ul li,
.flexia-menu ul li a {
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.flexia-menu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.flexia-menu > ul > li {
  float: left;
}

.flexia-menu ul ul {
  position: absolute;
  left: -9999px;
}

.flexia-menu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all 0.25s ease;
}

.flexia-menu li:hover > ul {
  left: auto;
}

.flexia-menu ul ul ul {
  margin-left: 100%;
  top: 0;
}

.flexia-nav-btn {
  width: 55px;
  height: 46px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 9999;
}

.flexia-nav-btn:after {
  position: absolute;
  top: 22px;
  right: 20px;
  display: block;
  height: 8px;
  width: 20px;
  content: "";
}

.flexia-nav-btn:before {
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  top: 16px;
  right: 20px;
  display: block;
  height: 2px;
  width: 20px;
  content: "";
}

.flexia-nav-btn.menu-opened:after {
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  transition: all .3s ease;
  top: 23px;
  border: 0;
  height: 2px;
  width: 19px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flexia-nav-btn.menu-opened:before {
  top: 23px;
  width: 19px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.flexia-nav-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .flexia-nav-btn {
    display: block;
  }

  .flexia-menu {
    width: 100%;
  }

  .flexia-menu ul {
    width: 100%;
    display: none;
  }

  .flexia-menu ul li {
    width: 100%;
  }

  .flexia-menu ul ul li,
  .flexia-menu li:hover > ul > li {
    height: auto;
  }

  .flexia-menu ul li a,
  .flexia-menu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }

  .flexia-menu > ul > li {
    float: none;
  }

  .flexia-menu ul ul,
  .flexia-menu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .flexia-menu > ul > li.has-sub:after,
  .flexia-menu > ul > li.has-sub:before,
  .flexia-menu ul ul > li.has-sub:after,
  .flexia-menu ul ul > li.has-sub:before {
    display: none !important;
  }

  .flexia-menu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    cursor: pointer;
  }

  .flexia-menu .submenu-button:before, .flexia-menu .submenu-button:after {
    position: absolute;
    display: block;
    content: "";
  }

  .flexia-menu .submenu-button.submenu-opened:before {
    display: none;
  }

  .flexia-menu ul ul ul li.current-menu-item a {
    border-left: none;
  }

  .flexia-menu > ul > li.has-sub > ul > li.current-menu-item > a,
  .flexia-menu > ul ul > li.has-sub > ul > li.current-menu-item > a {
    border-top: none;
  }
}
.main-navigation .nav-menu > li {
  padding: 0 .625em;
}

.main-navigation .nav-menu li a {
  outline: 0;
}

.main-navigation > ul > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4d4d4d;
}
.main-navigation > ul > li > a::after {
  height: 2px;
  width: 100%;
  background-color: #4d4d4d;
  opacity: .5;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-navigation > ul > li > a:hover::after {
  background-color: #1b1f21;
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main-navigation > ul > li:hover > a,
.main-navigation ul li.current-menu-item a {
  color: #1b1f21;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
  color: #1b1f21;
}
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_ancestor > a::after,
.main-navigation .current-menu-ancestor > a::after {
  background-color: #1b1f21;
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main-navigation > ul > li.has-sub > a::after {
  display: none;
}

.main-navigation > ul > li.navbar-search-menu > a::after,
.main-navigation > ul > li > a.cart-contents::after {
  display: none;
}

.main-navigation > ul > li > a.cart-contents {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.main-navigation > ul > li > a.cart-contents:hover {
  background-color: #262625;
  color: #fff;
}

.main-navigation ul li a.cart-contents:hover span {
  color: #fff;
}

.flexia-header-cart-icon {
  font-size: 1em;
}

.cart-contents .amount {
  font-size: 14px;
  padding-left: 5px;
}

.cart-contents .count {
  font-size: 12px;
  opacity: .75;
}

.edd-cart-contents .count {
  padding-left: 5px;
}

/* Submenu styles */
.main-navigation ul.sub-menu {
  background-color: #fff;
}

.main-navigation > ul > li.menu-item-has-children {
  padding-right: 20px;
}

.main-navigation ul ul li.menu-item-has-children a {
  padding-right: 20px;
}

.main-navigation > ul > li.has-sub:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #4d4d4d;
  content: "";
}

.main-navigation > ul > li.has-sub:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #4d4d4d;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all 0.25s ease;
}

.main-navigation > ul > li.has-sub:hover:before {
  top: 23px;
  height: 0;
}

.main-navigation li:hover > ul > li {
  height: auto;
}

.main-navigation ul ul li a {
  padding: 17px 15px;
  width: 220px;
  font-size: 13px;
  color: #4d4d4d;
}

.main-navigation ul ul li.has-sub:after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #4d4d4d;
  content: "";
}

.main-navigation ul ul li.has-sub:before {
  position: absolute;
  top: calc(50% - 3px);
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #4d4d4d;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all 0.25s ease;
}

.main-navigation ul ul > li.has-sub:hover:before {
  top: 17px;
  height: 0;
}

.main-navigation ul ul ul li.current-menu-item a {
  border-left: 1px solid #333;
}

.main-navigation > ul > li.has-sub > ul > li.current-menu-item > a,
.main-navigation > ul ul > li.has-sub > ul > li.current-menu-item > a {
  border-top: 1px solid #333;
}

@media screen and (min-width: 768px) {
  .main-navigation ul.sub-menu {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }

  .main-navigation ul ul li:hover > a, .main-navigation ul ul li a:hover {
    color: #1b1f21;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .main-navigation ul ul li:last-child > a,
  .main-navigation ul ul li.last-item > a {
    border-bottom: 0;
  }
}
.flexia-nav-btn {
  right: 10px;
  top: calc(50% - 25px);
}

.flexia-logobar-stacked + .flexia-navbar .flexia-nav-btn {
  right: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
  .main-navigation .flexia-primary-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1em;
    background-color: #fff;
  }

  .main-navigation ul li {
    padding: 0;
    margin: 0.5em 0;
    border: none;
  }

  .main-navigation ul li ul {
    padding-left: 1em;
  }

  .main-navigation li:hover > ul > li {
    height: auto;
  }

  .main-navigation > ul > li.has-sub {
    padding-right: .625em;
  }

  .main-navigation .nav-menu > li a {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.135);
    display: block;
    width: 100%;
  }

  .main-navigation ul li a:hover, .main-navigation ul li a:focus, .main-navigation ul li.current-menu-item a {
    background-color: #262625;
    color: #fff;
  }

  .main-navigation ul li a.cart-contents:hover span {
    color: #fff;
  }

  .main-navigation ul ul li a {
    padding-left: 25px;
  }

  .main-navigation ul ul ul li a {
    padding-left: 35px;
  }

  .main-navigation ul ul li a {
    color: #333;
    background: none;
  }

  .flexia-nav-btn:after {
    border-top: 2px solid #4d4d4d;
    border-bottom: 2px solid #4d4d4d;
  }

  .flexia-nav-btn:before {
    background-color: #4d4d4d;
  }

  .flexia-nav-btn.menu-opened:after, .flexia-nav-btn.menu-opened:before {
    background-color: #4d4d4d;
  }

  .main-navigation .submenu-button {
    border-left: 1px solid rgba(0, 0, 0, 0.135);
    height: 45px;
    width: 45px;
    right: .625em;
  }

  .main-navigation ul ul .submenu-button {
    right: 0;
  }

  .main-navigation .submenu-button:hover, .main-navigation .submenu-button.submenu-opened {
    background: #262626;
  }

  .main-navigation .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    background: #ddd;
  }

  .main-navigation .submenu-button.submenu-opened:after {
    background: #fff;
  }

  .main-navigation .submenu-button:before {
    top: 19px;
    right: 22px;
    width: 2px;
    height: 8px;
    background: #ddd;
  }
}
.flexia-topbar-inner {
  min-height: 30px;
}

.topbar-navigation .flexia-topbar-menu, .topbar-navigation .flexia-topbar-menu > ul {
  margin: 0 1em;
  padding: 0;
}

.flexia-topbar-menu li a {
  color: #cbced3;
  font-size: 12px;
  padding: 15px;
}

.main-navigation > ul > li > a {
  position: relative;
  display: block;
  text-decoration: none;
}

.flexia-topbar-menu li a:hover, .flexia-topbar-menu li.current-menu-item a {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.topbar-navigation .flexia-nav-btn {
  left: 0;
  right: auto;
}

.topbar-navigation > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}

/* Submenu styles */
.topbar-navigation ul.sub-menu {
  background-color: #262625;
}

.topbar-navigation > ul > li.menu-item-has-children a {
  padding-right: 25px;
}

.topbar-navigation > ul > li.has-sub:after {
  position: absolute;
  top: 21px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #cbced3;
  content: "";
}

.topbar-navigation > ul > li.has-sub:before {
  position: absolute;
  top: 18px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #cbced3;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all 0.25s ease;
}

.topbar-navigation > ul > li.has-sub:hover:before {
  top: 23px;
  height: 0;
}

.topbar-navigation li:hover > ul > li {
  height: 45px;
}

.topbar-navigation ul ul li a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 17px 15px;
  width: 220px;
  font-size: 13px;
  color: #cbced3;
}

.topbar-navigation ul ul li.has-sub:after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #cbced3;
  content: "";
}

.topbar-navigation ul ul li.has-sub:before {
  position: absolute;
  top: calc(50% - 3px);
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #cbced3;
  content: '';
  -webkit-transition: all .25s ease;
  -ms-transition: all .25s ease;
  transition: all 0.25s ease;
}

.topbar-navigation ul ul > li.has-sub:hover:before {
  top: 17px;
  height: 0;
}

.topbar-navigation ul ul ul li.current-menu-item a {
  border-left: 1px solid #333;
}

.topbar-navigation > ul > li.has-sub > ul > li.current-menu-item > a,
.topbar-navigation > ul ul > li.has-sub > ul > li.current-menu-item > a {
  border-top: 1px solid #333;
}

@media screen and (min-width: 768px) {
  .topbar-navigation ul.sub-menu {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }

  .topbar-navigation ul ul li:hover > a, .topbar-navigation ul ul li a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.15);
  }

  .topbar-navigation > ul > li:not(.has-sub) > a::after {
    height: 0.1em;
    width: 100%;
    background-color: #4d4d4d;
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .topbar-navigation > ul > li:not(.has-sub) > a:hover::after {
    background-color: #1b1f21;
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .topbar-navigation ul ul li:last-child > a,
  .topbar-navigation ul ul li.last-item > a {
    border-bottom: 0;
  }
}
.flexia-nav-btn {
  right: 10px;
  top: calc(50% - 25px);
}

@media screen and (max-width: 767px) {
  .flexia-topbar-content {
    margin: 0 1em;
  }

  .topbar-navigation .flexia-topbar-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1em;
    background-color: #262625;
    margin: 0;
  }

  .topbar-navigation ul li {
    padding: 0;
    margin: 0.5em 0;
    border: none;
  }

  .topbar-navigation ul li ul {
    padding-left: 1em;
  }

  .topbar-navigation li:hover > ul > li {
    height: auto;
  }

  .topbar-navigation > ul > li.has-sub {
    padding-right: 0;
  }

  .topbar-navigation .submenu-button {
    right: 0;
  }

  .topbar-navigation .nav-menu > li a {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    width: 100%;
  }

  .topbar-navigation ul li a:hover, .topbar-navigation ul li a:focus, .topbar-navigation ul li.current-menu-item a {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
  }

  .topbar-navigation ul ul li a {
    padding-left: 25px;
  }

  .topbar-navigation ul ul ul li a {
    padding-left: 35px;
  }

  .topbar-navigation .flexia-nav-btn:after {
    border-top: 2px solid #cbced3;
    border-bottom: 2px solid #cbced3;
  }

  .topbar-navigation .flexia-nav-btn:before {
    background-color: #cbced3;
  }

  .topbar-navigation .flexia-nav-btn.menu-opened::after, .topbar-navigation .flexia-nav-btn.menu-opened::before {
    background-color: #cbced3;
    border: none;
  }

  .topbar-navigation .submenu-button {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    height: 45px;
    width: 45px;
    right: 0;
  }

  .topbar-navigation .submenu-button:hover, .topbar-navigation .submenu-button.submenu-opened {
    background: rgba(0, 0, 0, 0.6);
  }

  .topbar-navigation .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    background: #ddd;
  }

  .topbar-navigation .submenu-button.submenu-opened:after {
    background: #fff;
  }

  .topbar-navigation .submenu-button:before {
    top: 19px;
    right: 22px;
    width: 2px;
    height: 8px;
    background: #ddd;
  }
}
/* Footer Menu */
.footer-navigation {
  width: 100%;
  margin: 1em auto 0;
}

.flexia-footer-menu, .flexia-footer-menu > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.flexia-footer-menu li {
  list-style: none;
  margin: .25em .5em;
}

.flexia-footer-menu li a {
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
## Post Pagination
--------------------------------------------------------------*/
.post-pagination-container {
  margin: 3em 0;
}

.post-pagination {
  display: flex;
  margin: 1em 0;
  padding: 0;
  justify-content: flex-start;
  flex-flow: row nowrap;
}

.post-pagination li {
  list-style: none;
  margin-right: 5px;
}

.post-pagination > li > a, .post-pagination > li > span {
  position: relative;
  padding: 8px 12px;
  margin-bottom: 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.post-pagination > li > a:hover {
  background: #f56a6a;
  color: #fff;
}

.post-pagination .next, .post-pagination .prev {
  padding: 8px 20px;
}

.post-pagination > .active > a,
.post-pagination > .active > a:focus,
.post-pagination > .active > a:hover,
.post-pagination > .active > span,
.post-pagination > .active > span:focus,
.post-pagination > .active > span:hover {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: default;
  z-index: 2;
}

/*--------------------------------------------------------------
## Post Navigation
--------------------------------------------------------------*/
.nav-previous, .nav-next {
  background-color: #fff;
  border: 1px solid #e9e9ea;
  font-size: 14px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  position: fixed;
  text-overflow: ellipsis;
  text-transform: uppercase;
  top: calc(50% - 25px);
  white-space: nowrap;
  width: auto;
  max-width: 500px;
  z-index: 999;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.nav-previous {
  left: 0;
  padding-left: 25px;
  transform: translateX(-100%);
  margin-left: 40px;
}

.nav-next {
  right: 0;
  padding-right: 25px;
  transform: translateX(100%);
  margin-right: 40px;
}

.nav-previous a, .nav-next a {
  outline: none;
  transition: all .3s;
  -webkit-transition: all .3s;
}

.nav-previous a {
  padding-right: 50px;
}

.nav-next a {
  padding-left: 40px;
}

.nav-next:before, .nav-previous:after {
  background-color: #fff;
  color: #e9e9ea;
  font-family: "FontAwesome";
  font-size: 36px;
  height: 60px;
  width: 40px;
  position: absolute;
  top: 0;
}

.nav-previous:after {
  content: "\f104";
  padding-left: 13px;
  right: 0;
}

.nav-next:before {
  content: "\f105";
  padding-left: 15px;
  left: 0;
}

.nav-previous:hover {
  transform: translateX(-40px);
}

.nav-next:hover {
  transform: translateX(40px);
}

@media all and (max-width: 600px) {
  .nav-previous, .nav-next {
    position: relative;
    transform: none;
    margin: 1em auto;
    border: none;
    padding: 0;
    height: auto;
    line-height: 2;
  }

  .nav-next a, .nav-previous a {
    padding-left: 25px;
    padding-right: 0;
  }

  .nav-previous:hover, .nav-next:hover {
    transform: none;
  }

  .nav-next::before, .nav-previous::after {
    padding-left: 10px;
    right: auto;
    left: 0;
    font-size: inherit;
    height: auto;
    width: auto;
  }
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clearfix:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/* Widget Style */
.widget {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  color: #797979;
  display: block;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  padding: 2em;
  position: relative;
  text-align: left;
  word-wrap: break-word;
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

.widget a {
  color: #202021;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.widget a:hover {
  color: #f56a6a;
}

.widget-title {
  color: #202021;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.widget ul, .widget ol {
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: .5em;
  list-style: outside none none;
}

.widget ul.children li {
  padding: .2em .5em;
}

.widget ul > li:before {
  content: "\f0da";
  font-family: "FontAwesome";
  padding-right: .8em;
}

.widget.widget_recent_entries ul > li:before {
  content: "\f044";
}

.widget.widget_recent_comments ul > li:before {
  content: "\f0e6";
}

.widget.widget_archive ul > li:before {
  content: "\f133";
}

.widget.widget_categories ul > li:before {
  content: "\f114";
}

.widget.widget_pages ul > li:before {
  content: "\f016";
}

.widget_tag_cloud .tagcloud a:before {
  content: "\f02b";
  font-family: "FontAwesome";
  padding-right: 5px;
  opacity: .8;
}

.widget li {
  font-size: 0.875em;
  line-height: 1.8;
}

.widget form {
  max-width: 100%;
}

.widget select {
  padding: 5px;
  width: 100%;
  height: 40px;
}

.widget select:focus {
  box-shadow: none;
}

.widget select option {
  padding: 5px;
  width: 100%;
}

.widget input, .widget select, .widget textarea {
  max-width: 100%;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
}

/* Menu widget */
.widget .menu .sub-menu {
  padding-left: 1em;
}

.widget .menu li a, .widget .menu .sub-menu li a {
  font-size: 14px;
}

/* Text Widget */
.widget .textwidget {
  font-size: 16px;
  padding-bottom: .5em;
}

.widget .textwidget img {
  height: auto;
  margin-top: 10px;
  max-width: 100%;
}

.widget .textwidget .wp-caption img {
  margin-top: 0;
}

/* RSS widget*/
.widget.widget_rss .rssSummary {
  font-size: 16px;
  padding-bottom: .5em;
}

.widget.widget_rss .rss-date {
  display: block;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 5px;
}

/* Tagcloud widget*/
.widget .tagcloud a {
  background-color: #ebebeb;
  color: #3f3f46;
  display: inline-block;
  font-size: 0.8em;
  line-height: 1.2;
  margin: 0 3px 6px 0;
  padding: 1em 1.5em;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.widget .tagcloud a:hover {
  background-color: #3f3f46;
  color: #fff;
}

/* Calendar Widget Style */
#wp-calendar {
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  border-collapse: separate;
  border-spacing: 5px;
  margin-left: -2px;
}

#wp-calendar caption {
  color: #202021;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 1em;
  text-transform: uppercase;
}

#wp-calendar tbody td {
  border: 1px solid #f4f4f4;
  border-radius: 2px;
  font-size: 1em;
  margin-bottom: 10px;
  padding: 6px;
  text-align: center;
}

#wp-calendar tbody td:hover {
  border-color: #e2e2e2;
}

#wp-calendar tbody td.pad {
  border: 0;
}

#wp-calendar tbody td#today {
  color: #47C2DC;
  border-color: #47C2DC;
}

#wp-calendar tfoot {
  display: none;
}

#wp-calendar tfoot td#prev a, #wp-calendar tfoot td#next a {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  bottom: -9px;
  margin-bottom: 1px;
}

#wp-calendar tfoot td#prev {
  text-align: left;
}

#wp-calendar tfoot td#next {
  text-align: right;
}

#wp-calendar thead th {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  text-align: center;
  padding-bottom: 10px;
}

#wp-calendar tbody td a,
#wp-calendar tfoot td#prev a:hover,
#wp-calendar tfoot td#next a:hover {
  color: #47C2DC;
}

/* Search widget */
.search-form {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-flow: row nowrap;
}

.search-form .search-field {
  flex: 1 1 auto;
  padding: 10px;
}

.search-form .search-submit {
  flex: 1 1 40px;
  align-self: stretch;
  padding: 0 20px;
}

.widget .search-form .search-submit {
  max-width: 60px;
}

.search-field, .search-field:focus {
  background-color: #f1f1f1;
  box-shadow: none;
  border-radius: 0;
  outline: none;
}

.search-submit {
  background-color: #F56A6A;
  border: 0 none;
  color: #fff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.search-submit:hover {
  background-color: #e65a50;
  border: 0 none;
  color: #fff;
}

/* Recent Post widget */
.latest-post .media {
  margin-bottom: 30px;
}

.latest-post .media-heading a {
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.media-body {
  font-size: 13px;
  line-height: 20px;
}

.latest-post img {
  height: 80px;
  width: 80px;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.page-header {
  background-color: #28292e;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-flow: row nowrap;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.page-header::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header-inner {
  flex: 0 0 100%;
  text-align: center;
  padding: 5em 1em;
  z-index: 1;
}

.header-content {
  color: #fff;
  text-align: center;
}

.header-content > .page-title {
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5em;
  margin: 0 auto;
  text-transform: uppercase;
}

.header-content p, .header-content .blog-desc {
  display: block;
  font-size: 1em;
  font-style: italic;
  line-height: 1.2;
  padding: 0.5em;
}

.header-content .author-bio {
  font-size: 1.5em;
  padding: 0;
  margin: 0 0 1.5em;
}

.header-content span i {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 30px transparent;
  display: inline-block;
  font-size: 2.5em;
  padding: .5em;
  height: 2em;
  line-height: 1em;
  text-align: center;
  width: 2em;
  margin: 0 auto 1em;
  display: block;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all 0.3s;
}

.blog-header:hover .header-content span i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  -webkit-transition: box-shadow .4s ease-in-out;
  -moz-transition: box-shadow .4s ease-in-out;
  -o-transition: box-shadow .4s ease-in-out;
  -ms-transition: box-shadow .4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out;
}

@media all and (min-width: 600px) and (max-width: 959px) {
  .header-inner {
    padding: 4em 1em;
  }
}
@media all and (max-width: 599px) {
  .header-inner {
    padding: 2em 1em;
  }
}
/* Blog Listing Page */
.paged .blog-header span,
.paged .blog-header .scroll-down {
  display: none;
}

.paged .page-header.blog-header {
  max-height: 400px;
}

.paged .blog-header .header-inner {
  padding: 3em 1em;
}

.header-content .blog-desc, .header-content .archive-description > p {
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0;
}

.blog.paged .header-content {
  padding: 0;
}

.single-page-header .header-content {
  padding-bottom: 0;
}

.header-content .flexia-blog-logo {
  max-width: 100%;
  margin: 0 auto 1.5em;
}

.transparent-top-navbar .page-header.blog-header {
  padding-top: 0 !important;
}

.transparent-top-navbar .archive-header .header-inner, .transparent-top-navbar .single-blog-header .header-inner {
  padding-top: 1em;
}

.post-thumbnail {
  margin-bottom: 1em;
}

.post-thumbnail a img {
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.post-thumbnail a:hover img, .post-thumbnail a:focus img {
  opacity: 0.8;
}

/* Single Posts */
.single-blog-header .header-content .blog-title {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 1px;
  margin: 1em auto .5em;
  text-transform: uppercase;
  word-wrap: break-word;
}

.single-blog-header .header-content p {
  font-size: 1.5rem;
}

.header-content .author-avatar > img {
  width: 120px;
  border-radius: 50%;
}

.single-post .header-content .author-avatar > img {
  width: 80px;
}

.author-heading {
  text-transform: uppercase;
  font-size: 1em;
}

.single-post .single-blog-meta .entry-meta, .single-post .single-blog-meta .entry-meta a {
  color: #bbbbbb;
  font-size: 13px;
  text-align: center;
}

.single-blog-meta .entry-meta a:hover {
  color: #50626c;
}

.single-blog-meta .entry-meta i {
  color: #F54128;
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
  margin-right: .5em;
}

.header-overlay {
  background-color: #161415;
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}

.scroll-down {
  background: url("../../img/icons/icon-arrow-down.svg") no-repeat center center/100% auto;
  bottom: 40px;
  display: block;
  height: 44px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  width: 44px;
  outline: none;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: flexia-translate 1.2s .4s;
  -moz-animation: flexia-translate 1.2s .4s;
  animation: flexia-translate 1.2s .4s;
  -webkit-animation-iteration-count: 5;
  -moz-animation-iteration-count: 5;
  animation-iteration-count: 5;
}

.scroll-down:focus {
  outline: none;
}

@-webkit-keyframes flexia-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes flexia-translate {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }
  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes flexia-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}
.flexia-wrapper.flexia-container {
  padding-top: 3em;
  overflow: hidden;
}

.single-post .flexia-wrapper.flexia-container {
  padding-top: 0;
}

.sticky {
  position: relative;
}

.sticky:before {
  font: normal normal normal 15px/1 FontAwesome;
  font-size: 15px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\f08d";
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: #f54128;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  transition: all .5s ease-in 0.1s;
}

.sticky:hover:before {
  -webkit-transform: rotate(400deg);
  -moz-transform: rotate(400deg);
  -ms-transform: rotate(400deg);
  -o-transform: rotate(400deg);
  transform: rotate(400deg);
}

.post-content button, .post-content input, .post-content select, .post-content textarea {
  font-family: inherit;
  font-size: inherit;
  height: 45px;
  line-height: inherit;
  padding: 0 10px;
}

.post-password-form input[type="submit"], .post-content button, .post-content input[type="button"],
.post-content input[type="reset"], .post-content input[type="submit"] {
  background-color: #f56a6a;
  border: medium none;
  cursor: pointer;
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  height: 45px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.post-password-form input[type="submit"], .post-content button:hover, .post-content input[type="button"]:hover,
.post-content input[type="reset"]:hover, .post-content input[type="submit"]:hover {
  background: #E95D55;
}

.hentry {
  margin: 0 0 1.5em;
}

.entry-date.updated {
  display: none;
}

.entry-date.published {
  display: inline-block;
}

.single-post .entry-date.updated {
  display: inline-block;
}

.single-post .entry-date.published {
  display: none;
}

.single-post .entry-date:only-child {
  display: inline-block;
}

.blog .entry-meta > span, .archive .entry-meta > span, .search .entry-meta > span {
  margin-right: 10px;
}

.entry-meta, .entry-meta a {
  color: #4d4d4d;
  font-size: 13px;
}

.entry-meta a:hover {
  color: #F56A6A;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-links a {
  display: inline-block;
}

.page-links .page-number {
  padding: 0;
  margin: 0 0 .3em .3em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: .8em;
  width: 2.5em;
  height: 2.5em;
  line-height: -webkit-calc(2.5em - 4px);
  line-height: calc(2.5em - 4px);
  display: inline-block;
  text-align: center;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.single-post .entry-content-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 3em auto 0;
}

.entry-content.single-post-entry {
  margin: 0 1.5em 4em;
  padding: 1.5em 4em;
  background-color: #fff;
}

.single-post .entry-meta {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.single-post .entry-meta > span {
  text-align: center;
  flex: 1 1 auto;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 0;
}

.single-post .entry-meta > span:last-child {
  border-right: none;
}

.single-post .entry-meta > span.cat-links {
  max-width: 50%;
}

.entry-title {
  color: #202021;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1;
  margin: 10px auto;
  padding-bottom: 50px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.single-blog-header .entry-title, .single-page-header .entry-title {
  color: #fff;
  padding-bottom: 0;
  text-align: center;
}

.single-blog-header .entry-title:after, .single-page-header .entry-title:after {
  display: none;
}

.attachment .page-header {
  display: none;
}

.blog .entry-header, .archive .entry-header {
  margin-top: 0;
}

.entry-title a {
  text-decoration: none;
  color: #202021;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.entry-title a:hover {
  color: #50626c;
}

.entry-title:after {
  background-color: rgba(0, 0, 0, 0.15);
  bottom: 20px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.entry-content {
  color: #4d4d4d;
  display: block;
  font-size: 1em;
  font-weight: 300;
  line-height: 2em;
  padding-bottom: 5px;
  position: relative;
  text-align: left;
}

.blog .entry-content, .archive .entry-content, .search .entry-content {
  margin-top: 0;
  max-width: 90%;
}

.flexia-wrapper.flexia-container > .content-area {
  margin: 0 1em 1.5em;
}

body:not(.single-post) .flexia-wrapper > .content-area {
  padding: 2.5em;
}

body.blog .flexia-wrapper > .content-area,
body.archive .flexia-wrapper > .content-area {
  background-color: transparent;
  padding: 0;
}

body.blog .flexia-wrapper > .content-area article.post,
body.archive .flexia-wrapper > .content-area article.post {
  padding: 2.5em;
}

body .flexia-wrapper.flexia-blank-container > .content-area {
  padding: 0;
}

.single-post .flexia-wrapper > .content-area {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.more-link {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  color: #3f3f46;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 15px auto;
  padding: 5px 50px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.more-link:hover {
  background: #3f3f46;
  color: #fff;
  border: 1px solid #3f3f46;
  border-radius: 0;
}

.more-link:after {
  content: "\f061";
  color: #fff;
}

.more-link:after {
  position: absolute;
  font-family: 'FontAwesome';
  font-weight: 400;
  right: -3em;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;
  color: #fff;
}

.more-link:hover:after {
  right: 2em;
}

.post-password-form input {
  padding: 10px;
  height: 45px;
}

/* Post Formats */
.blog .format-status .entry-header, .blog .format-status .entry-footer,
.archive .format-status .entry-header, .archive .format-status .entry-footer,
.blog .format-link .entry-footer, .archive .format-link .entry-footer,
.blog .format-quote .entry-footer, .archive .format-quote .entry-footer,
.blog .format-chat .entry-footer, .archive .format-chat .entry-footer {
  display: none;
}

@media all and (max-width: 600px) {
  .entry-title, .header-content > .page-title {
    font-size: 1.75em;
  }

  body.blog .flexia-wrapper > .content-area article.post, body.archive .flexia-wrapper > .content-area article.post {
    padding: 1.5em;
  }

  .flexia-wrapper.flexia-container {
    padding-top: 2em;
  }

  .single-blog-header .header-content .blog-title {
    font-size: 1.75em;
  }

  .single-post .entry-content-wrapper {
    margin: 1em auto 0;
  }

  .entry-content.single-post-entry {
    margin: 0 auto 2em;
    padding: 1.5em 2em;
    background-color: #fff;
  }

  .single-post .single-blog-meta .entry-meta {
    display: block;
  }

  .single-post .entry-meta > span {
    display: block;
    padding: 15px 10px;
  }

  .single-post .entry-meta > span.cat-links {
    max-width: 100%;
  }

  .post-author {
    margin: 0 auto;
    padding: .5em;
  }

  .flexia-social-share {
    justify-content: center !important;
    margin: 2em 0;
  }

  .comments-area .comments-title, .comments-area .comment-reply-title {
    font-size: 1em;
    margin: 1em auto;
  }

  .comments-area .comment-list li > ol, .comments-area .comment-list li > ul {
    padding: 0;
  }
}
/* post author style */
.post-author {
  width: 100%;
  color: #797979;
  margin: 2em auto;
  padding: 2em;
}

.post-author .author-avatar {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.post-author .author-avatar > .avatar-container {
  flex: 0 0 110px;
}

.post-author .author-avatar > .author-body {
  max-width: 600px;
  flex: 1 1 80%;
  color: #4d4d4d;
  padding-top: 10px;
}

.post-author .author-body > span {
  font-size: 13px;
  font-style: italic;
}

.post-author .author-heading {
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  text-transform: uppercase;
}

.post-author .author-heading a {
  color: #202021;
  transition: all .3s;
}

.post-author .author-heading a:hover {
  color: #50626c;
}

.post-author .author-bio {
  font-size: 1em;
  margin: 5px auto;
  line-height: 1.8;
  font-weight: lighter;
  text-transform: uppercase;
}

.post-author .author-avatar > .avatar-container .avatar {
  padding-top: 10px;
  border-radius: 50%;
}

/* Post social share style */
.flexia-social-share {
  display: flex;
  flex-flow: row wrap;
  color: #949494;
  font-size: 13px;
  text-transform: uppercase;
  padding: 1em;
  margin: 2em 0 5em;
  letter-spacing: 1px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  justify-content: space-between;
}

.flexia-social-share .flexia-social-share-heading {
  flex: 0 0 auto;
}

.flexia-social-share .flexia-social-share-heading h5 {
  font-size: 1em;
  margin: 1em 0;
}

.flexia-social-share-links {
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.flexia-social-share-links li {
  list-style: none;
  padding: 0 .75em;
  text-align: center;
  flex: 1 1 auto;
}

.flexia-social-share-links li a {
  color: #F56A6A;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.flexia-social-share-links li a:hover {
  color: #23527c;
}

.flexia-social-share-links li a i {
  font-size: 2em;
}

/* Reset Search Input */
.search__input {
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}

.search__input:focus {
  outline: none;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Icons */
.icon-search-close {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: rgba(255, 255, 255, 0.75);
  transition: all .3s;
}

.btn--search-close:hover .icon-search-close {
  fill: white;
}

/* Layout for search container */
.flexia-search-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(18, 23, 56, 0.9);
}

.flexia-search-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.flexia-search-overlay::before,
.flexia-search-overlay::after {
  content: '';
  position: absolute;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  pointer-events: none;
  border: 1.5em solid #121738;
}

.flexia-search-overlay::before {
  top: 0;
  left: 0;
  border-right-width: 0;
  border-bottom-width: 0;
}

.flexia-search-overlay::after {
  right: 0;
  bottom: 0;
  border-top-width: 0;
  border-left-width: 0;
}

.btn--search-close {
  font-size: 2em;
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  background: none;
  border: 0;
  display: none;
}

.btn--search-close {
  display: block;
}

.search--form-wrapper {
  max-width: 80%;
  margin: 0 auto;
}

.search__form {
  width: 100%;
  margin: 2em auto;
}

.search--input-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.search--input-wrapper::after {
  content: attr(data-text);
  font-size: 3rem;
  line-height: 0;
  height: 0;
  max-width: 100%;
  border-bottom: 3px solid #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  overflow: hidden;
  user-select: none;
  color: transparent;
}

.search--input-wrapper .search__input, .search--input-wrapper .search__input:focus {
  color: #fff;
  border: none;
  padding: 0;
  border-radius: 0;
  outline: none;
  width: 100%;
  min-width: 100%;
  font-size: 3rem;
  line-height: 1.8;
  border-bottom: 3px solid rgba(255, 255, 255, 0.25);
  background-color: transparent;
}

.search__input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  opacity: 0.3;
  color: #060919;
}

.search__input::-moz-placeholder {
  opacity: 0.3;
  /* Mozilla Firefox 19+ */
  color: #060919;
}

.search__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 0.3;
  color: #060919;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

.search__info {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .035em;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0.85em 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}

/************************/
/* Transitions 			*/
/************************/
.flexia-search-overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.search--open {
  pointer-events: auto;
  opacity: 1;
}

/* Border */
.flexia-search-overlay::before,
.flexia-search-overlay::after {
  transition: transform 0.5s;
}

.flexia-search-overlay::before {
  transform: translate3d(-15px, -15px, 0);
}

.flexia-search-overlay::after {
  transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
  transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s, transform 0.5s;
}

.search--open .btn--search-close {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* Search form with input and description */
.search__form {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__form {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.search__suggestion {
  opacity: 0;
  transform: translate3d(0, -30px, 0);
  transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
  transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
  transition-delay: 0.2s;
}

@media screen and (max-width: 40em) {
  .search__form {
    margin: 5em 0 1em;
  }

  .btn--search-close {
    font-size: 1.25em;
    top: 1.5em;
    right: 1.5em;
  }

  .search__info {
    text-align: left;
  }

  .search__suggestion {
    font-size: 80%;
    width: 100%;
  }

  .search__suggestion:nth-child(2),
  .search__suggestion:nth-child(3) {
    display: none;
  }
}
.error-404.not-found {
  max-width: 700px;
  margin: 1em auto 3em;
  display: block;
}

.error-404.not-found p {
  text-align: center;
  font-size: 1.2em;
  margin: 2em auto 3em;
}

.error-404 .search-form .search-field {
  border: 1px solid #f1f1f1;
  padding: 1em;
  max-width: 450px;
}

.error-404 .search-form .search-submit {
  border: 1px solid #F56A6A;
  flex: 0 0 5em;
  font-size: 1em;
}

.not-found .page-header {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 2em;
}

.not-found .page-header::before {
  display: none;
}

.not-found .search-form .search-field {
  border: 1px solid #f1f1f1;
}

/*--------------------------------------------------------------
## WooCommerce
--------------------------------------------------------------*/
.flexia-woocommerce-wrapper {
  background-color: #fff;
  padding: 2em;
}

.woocommerce-product-gallery figure {
  margin: 0;
}

.woocommerce div.product div.summary {
  margin: 0 0 2em;
}

.woocommerce div.product .product_title {
  text-transform: none;
  font-size: 2em;
  line-height: 1.5;
  font-weight: 400;
  color: #484c51;
}

.woocommerce div.product .product_title::after {
  display: none;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  position: relative;
  overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  color: #484c51;
  text-align: center;
  font-size: 1.135em;
  font-weight: 400;
}

.woocommerce ul.products li.product .price {
  color: #60646c;
  font-weight: 400;
  font-size: .857em;
  text-align: center;
}

.woocommerce ul.products li.product .button {
  margin: 1em auto;
  width: 80%;
  display: block;
  text-align: center;
  background-color: transparent;
  color: #484c51;
  border: 1px solid #484c51;
  padding: .618em 1em;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
  font-weight: 400;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.woocommerce ul.products li.product .button.add_to_cart_button::before {
  content: "\f217";
  font-family: "FontAwesome";
  padding-right: 8px;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #484c51;
  color: #fff;
}

.woocommerce-breadcrumb a:first-of-type::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f015";
  margin-right: .5407911001em;
}

.breadcrumb-separator {
  opacity: .5;
  padding: 0 .25em;
}

.woocommerce a.added_to_cart {
  display: block;
  text-align: center;
  font-size: 14px;
}

.woocommerce a.added_to_cart::after {
  content: "\f178";
  font-family: "FontAwesome";
  padding-left: .5em;
}

.woocommerce .products .star-rating {
  display: block;
  margin: 0 auto 1em;
  float: none;
}

.woocommerce .star-rating span::before {
  color: #f2b01e;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
  border: none;
  margin-right: 5px;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 3px;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.woocommerce-page .woocommerce-pagination ul.page-numbers li:last-child a {
  padding-top: 6px;
  padding-bottom: 10px;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
  background: #f56a6a;
  color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.woocommerce .woocommerce-ordering select {
  background-image: url("../../img/icons/icon-angle-down.png");
  background-size: 20px;
  background-position: 98% center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px;
  margin-right: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.woocommerce .woocommerce-result-count {
  margin: .5em 0 1em;
}

.woocommerce span.onsale {
  background-color: #ff2a13;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  display: block;
  font-size: 14px;
  height: 100px;
  letter-spacing: 0;
  line-height: 160px;
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 200px;
  z-index: 1;
}

.woocommerce ul.products li.product .onsale, .woocommerce .product .onsale {
  left: -100px;
  top: -50px;
  right: auto;
  margin: 0;
}

/* single product page */
.woocommerce.single-product div.product {
  position: relative;
  overflow: hidden;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #60646c;
  font-size: 1.25em;
  font-weight: 400;
}

.woocommerce .quantity .qty {
  padding: 10px;
  border-radius: 0;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-weight: 400;
  font-size: 1em;
  padding: 15px;
  border-radius: 0;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: black;
  color: #fff;
}

.product_meta {
  color: #60646c;
}

.product_meta > span {
  display: block;
  font-size: .875em;
  margin-bottom: 5px;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: .875em;
  color: #60646c;
}

.woocommerce-breadcrumb a, a.woocommerce-review-link, .product_meta a {
  color: #92969e;
}

.woocommerce-breadcrumb a:hover, a.woocommerce-review-link:hover, .product_meta a:hover {
  color: #60646c;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #f8f8f8;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-weight: 400;
  outline: none;
}

.woocommerce div.product .woocommerce-tabs h2, .woocommerce div.product .related.products h2 {
  font-weight: 400;
}

.woocommerce-message, .woocommerce-info {
  border-top-color: #60646c;
}

.woocommerce-message::before, .woocommerce-info::before {
  color: #60646c;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 0;
  font-weight: 400;
  padding: 10px 15px;
}

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background-color: black;
  color: #fff;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  padding: 10px;
  border-radius: 0;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
}

/* cart / checkout page */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  padding: 15px;
  height: auto;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  height: 40px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 4px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: #f8f8f8;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background-color: #e8e8e8;
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #e8e8e8;
}

.woocommerce ul.products li.product a img {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.woocommerce ul.products li.product a img:hover {
  opacity: .9;
}

/**
 * Styles
 */
.product-has-gallery {
  position: relative;
}

.product-has-gallery .onsale {
  z-index: 999999;
}

.product-has-gallery .wp-post-image {
  opacity: 1;
}

.product-has-gallery .wp-post-image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Product image flip */
body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-LoopProduct-link [class*="wp-post-image"] {
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-LoopProduct-link:hover .wp-post-image {
  opacity: 0;
}

body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-LoopProduct-link:hover .wp-post-image--secondary {
  opacity: 1;
}

body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-loop-product__link [class*="wp-post-image"] {
  -webkit-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-loop-product__link:hover .wp-post-image {
  opacity: 0;
}

body.woocommerce:not(.single-product) ul.products li.product-has-gallery a.woocommerce-loop-product__link:hover .wp-post-image--secondary {
  opacity: 1;
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
## Easy Digital Downloads
--------------------------------------------------------------*/
.flexia-edd-product-thumb > img {
  display: block;
}

.edd-input.edd-item-quantity {
  width: 50px;
  margin-bottom: 10px;
}

.button.edd-add-to-cart {
  font-size: 1em;
}

.edd_purchase_submit_wrapper .button.edd-add-to-cart {
  font-size: 14px;
  padding: 5px 15px;
  margin-top: 5px;
}

.edd-product-title {
  font-size: 1.5em;
  line-height: 1.2;
}

#edd_checkout_form_wrap fieldset#edd_checkout_user_info {
  padding: .5em 1.387em 1.387em;
  margin: 70px 0 21px;
}

#edd_checkout_form_wrap .edd_form legend {
  margin: -60px 0 0;
  font-size: 1.2em;
  display: block;
  font-weight: 700;
}

/* Purchase form */
.edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit, .edd_go_to_checkout.button.edd-submit, #edd-purchase-button, .edd-submit.button, input.edd-submit[type="submit"] {
  background-color: #d5017d;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 4px;
}

.edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit:hover, .edd_go_to_checkout.button.edd-submit:hover, #edd-purchase-button:hover, .edd-submit:hover, input.edd-submit[type="submit"]:hover, .edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit:active, .edd_go_to_checkout.button.edd-submit:active, #edd-purchase-button:active, .edd-submit:active, input.edd-submit[type="submit"]:active, .edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit:focus, .edd_go_to_checkout.button.edd-submit:focus, #edd-purchase-button:focus, .edd-submit:focus, input.edd-submit[type="submit"]:focus {
  background-color: #ff0188;
}

.edd_purchase_submit_wrapper .edd-add-to-cart.button,
.edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit {
  background-color: #4CB050;
  color: #fff;
}

.edd_purchase_submit_wrapper .edd-add-to-cart.button:hover,
.edd_purchase_submit_wrapper a.edd-add-to-cart.edd-submit:hover {
  background-color: #55C056;
}

.edd-cart-added-alert {
  padding: .5em 0;
  position: relative;
  color: #55C056;
}

.edd_download_purchase_form .edd_price_options li {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .3s;
}

.edd_download_purchase_form .edd_price_options li:hover {
  border-left: 5px solid #55C056;
}

.edd_download_purchase_form .edd_price_options input[type=radio] {
  height: 1px;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}

.edd_download_purchase_form .edd_price_options span.edd_price_option_name {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 30px;
}

.edd_download_purchase_form .edd_price_options span.edd_price_option_name::before {
  content: '';
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: 50%;
  border: 3px solid #55C056;
  border-radius: 20px;
  transform: translateY(-50%);
}

.edd_download_purchase_form .edd_price_options input[type=radio]:checked + span::after {
  content: '';
  display: block;
  position: absolute;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  left: 0;
  top: 50%;
  background: #55C056;
  border-radius: 20px;
  transform: translateY(-50%);
}

.edd_download_purchase_form .edd_price_options label {
  cursor: pointer;
}

.edd_download_purchase_form .edd_price_options .edd_price_option_price {
  font-weight: 700;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  color: #797979;
  font-size: 17px;
  margin: 10px auto;
  padding: 1em 0;
}

.comments-area a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

ol.comment-list li {
  list-style: none;
}

.comments-area .comment-list li > ol, .comments-area .comment-list li > ul {
  padding-left: 1em;
}

.comments-area .comments-title, .comments-area .comment-reply-title {
  font-size: 1.5em;
  margin: 1em auto 2.5em;
  text-align: center;
  text-transform: uppercase;
}

.comments-area footer {
  margin-top: 0;
  text-align: left;
}

.comment-respond .comment-reply-title {
  margin-top: 2em;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
}

.comments-area .comment-list, .comments-area .comment-list .children {
  list-style-type: none;
}

.comments-area .comment-metadata {
  margin-bottom: 1em;
}

.comments-area .comment-metadata a {
  color: #8e8e8e;
  font-size: 13px;
}

.comments-area .comment-author img {
  float: left;
  height: 60px;
  margin-right: 20px;
  width: 60px;
}

.comments-area .comment-author a {
  color: #35353c;
  text-decoration: none;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  font-size: 12px;
}

.comments-area .comment-content {
  color: #323232;
  font-size: 14px;
  line-height: 30px;
  margin-top: 10px;
}

.comment-content > p {
  margin: 0 0 1em;
}

.comment-body {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  padding-top: 2em;
}

.comments-area .comment-content, .comments-area .comment-awaiting-moderation, .comments-area .reply {
  padding-left: 80px;
}

.comments-area .comment-awaiting-moderation {
  font-size: 12px;
}

.comments-area .reply {
  margin-bottom: 20px;
}

.comments-area .reply .comment-reply-link {
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.comments-area .reply .comment-reply-link:hover {
  color: #3c3c3c;
}

.comments-area .comment-respond {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  margin-bottom: 2em;
  outline: 0 none;
}

.comments-area .comment-form-comment label, .comments-area .comment-form-comment textarea {
  width: 100%;
}

.comments-area .comment-form-comment textarea, .comments-area .comment-respond .comment-form-author input, .comments-area .comment-respond .comment-form-email input, .comments-area .comment-respond .comment-form-url input {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: none;
  color: #808086;
  font-size: 13px;
  font-weight: 300;
  outline: 0 none;
  padding: 8px 10px;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background-color: #3c3c3c;
  border: medium none;
  color: #fff;
  display: inline-block;
  font-weight: 300;
  margin-top: 20px;
  outline: 0 none;
  padding: 1em 2em;
  text-decoration: none;
  font-size: 1em;
  border-radius: 3px;
}

.comments-area .comment-respond .form-submit input:hover {
  background-color: #F56A6A;
}

.comments-area .comment-respond .form-submit input, .comments-area .comment-respond .form-submit input:hover {
  transition: all 0.2s ease-out 0s;
}

.comments-area .comment-respond .comment-form-author label, .comments-area .comment-respond .comment-form-email label, .comments-area .comment-respond .comment-form-url label {
  width: 100px;
}

.comments-area .comment-notes {
  font-weight: 300;
  margin-bottom: 30px;
}

.comments-area .comment-form label {
  color: #323232;
  font-size: 13px;
}

.comments-area .blog-img-wide.blogdetails img {
  height: auto;
  padding: 20px;
  width: 100%;
}

.edit-link {
  margin-left: 10px;
}

.entry-footer .edit-link {
  display: block;
  margin: 10px 0;
}

.post-edit-link {
  font-size: 13px;
  font-weight: normal;
}

.comment-reply-title a {
  color: #F56A6A;
}

.comment-reply-title a:hover {
  color: #f00;
  color: #f00;
}

.comment-reply-title small {
  font-size: 100%;
  transform: scale(0.8);
  display: inline-block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33333%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66667%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28571%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11111%;
}

.gallery-caption {
  display: block;
}
