/*
	Table of content
	================
	1. CSS Reset and Global Styles
		1.1. Normalize
		1.2. Global Style
		1.3. Owl Carousel

	2. Bootstrap grid framework
	3. Components
		3.1. Button Style
		3.2. Social Icon Style
		3.3. Wordpress Default Class
		3.4. Star Rating Style
		3.5. Comment Style
		3.6. Home Blocks (Visual Composer Components)
		3.7. Woocommerce Styles
		3.8. Magnific jQuery Plugin Style
		3.9. Animate CSS LIbrary
		3.10. Events Style
		3.11. Portofolio Style

	4. Header Section
	5. Posts and Page
		5.1. Posts Style
		5.2. Page Style

	6. Sidebar Style
		6.1. Sidebar Layout Style
		6.2. Widget styles

	7. Footer Style

*/
/*======================================*
 * 1. CSS Reset and Global Styles
 * ======================================*/
/*======================================*
	 * 1.1 Normalize
	 * ======================================*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

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

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

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

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

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

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

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

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: 0;
}

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

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

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

/*======================================*
	 * 1.2 Global Style
	 * ======================================*/
/*
 * Global Styles
 */
html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: #eaeaea;
  color: #444;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  background-size: cover;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0 0 20px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  color: #393939;
  line-height: normal;
}

hr {
  border: none;
  border-bottom: 1px solid #777;
}

ul, ol {
  margin: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: #4db2ec;
  -webkit-transition: .2s ease-out;
          transition: .2s ease-out;
}

a:hover {
  color: #4db2ec;
}

address {
  font-style: normal;
}

p {
  margin-top: 0;
}

iframe {
  border: none;
  display: block;
  overflow: hidden;
}

input, textarea, select {
  outline: none;
  border: 1px solid #eaeaea;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backgrond-color: #efefef;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background: url(../img/select-arrow.png) no-repeat center right;
}

textarea {
  resize: vertical;
}

.no-list-style {
  list-style-type: none;
}

.lazyload {
  -webkit-transition: opacity 0.3s ease-in;
          transition: opacity 0.3s ease-in;
}

.wow {
  visibility: visible;
}

body {
  background-color: #eaeaea;
}

/*======================================*
	 * 1.3 Owl Carousel
	 * ======================================*/
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .animated .owl-animated-in {
  z-index: 0;
}

.owl-carousel .animated .owl-animated-out {
  z-index: 1;
}

.owl-carousel .animated .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
          transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
  /* 
	 * 	Owl Carousel - Lazy Load Plugin
	 */
  /* 
	 * 	Owl Carousel - Video Plugin
	 */
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
          transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
          transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
          transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
          transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*======================================*
 * 2. Bootstrap grid framework
 * ======================================*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1;
}

.container:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

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

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1;
}

.container-fluid:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  *zoom: 1;
}

.row:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

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

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

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

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

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

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

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

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

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

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

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

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

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

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .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 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .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 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .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 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@-ms-viewport {
  width: device-width;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/*======================================*
 * 3. Components
 * ======================================*/
/*======================================*
	 * 3.1 Button Style
	 * ======================================*/
/*======================================*
 * Button style
 * ======================================*/
.button, input[type="submit"], button, input[type="reset"], .woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page input.button.alt, .widget_price_filter button.button, button {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: none;
  background: #4db2ec;
}

.button:hover, input[type="submit"]:hover, button:hover, input[type="reset"]:hover, .woocommerce #content input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.widget_price_filter button.button:hover, button:hover {
  background-color: #7bc6f1;
  color: white !important;
}

/*======================================*
	 * 3.2 Social Icon Style
	 * ======================================*/
/*===================================*
 * Social Links 
 * ===================================*/
.social-links {
  *zoom: 1;
  line-height: normal;
  text-align: center;
}

.social-links:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.social-links.large {
  font-size: 30px;
  font-size: 1.875em;
}

.social-links.large a {
  width: 40px;
  height: 40px;
  display: inline-block;
  padding: 0;
  text-align: center;
}

.social-links.small {
  font-size: 14px;
  font-size: 0.875em;
}

.social-links.small a {
  width: 20px;
  height: 20px;
  display: inline-block;
  padding: 0;
  text-align: center;
}

.social-links a {
  display: inline-block;
  padding: 0 20px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  border: none;
}

.social-links a.facebook {
  color: #3B5998;
}

.social-links a.twitter {
  color: #55ACEE;
}

.social-links a.google-plus {
  color: #E02F2F;
}

.social-links a.linkedin {
  color: #007BB5;
}

.social-links a.spotify {
  color: #78B842;
}

.social-links a.codepen {
  color: #000000;
}

.social-links a.digg {
  color: #115c83;
}

.social-links a.foursquare {
  color: #f84777;
}

.social-links a.github {
  color: #000000;
}

.social-links a.reddit {
  color: #EF4623;
}

.social-links a.skype {
  color: #00aff0;
}

.social-links a.behance {
  color: #111111;
}

.social-links a.youtube {
  color: #e02b28;
}

.social-links a.steam {
  color: #000000;
}

.social-links a.dribbble {
  color: #E94C89;
}

.social-links a.tumblr {
  color: #44546A;
}

.social-links a.wordpress {
  color: #21759b;
}

.social-links a.instagram {
  color: #974518;
}

.social-links a.pinterest {
  color: #cc2127;
}

.social-links a.flickr {
  color: #0063db;
}

.social-links a.vimeo {
  color: #1ab7ea;
}

.social-links a.vine {
  color: #00b489;
}

.social-links a.deviantart {
  color: #536551;
}

.social-links a.lastfm {
  color: #DA001C;
}

.social-links a.soundcloud {
  color: #FF4700;
}

.social-links a:hover {
  color: #adadad;
}

.social-links.invert a {
  color: #444;
}

.social-links.invert a.facebook:hover {
  color: #3B5998;
}

.social-links.invert a.twitter:hover {
  color: #55ACEE;
}

.social-links.invert a.google-plus:hover {
  color: #E02F2F;
}

.social-links.invert a.linkedin:hover {
  color: #007BB5;
}

.social-links.invert a.spotify:hover {
  color: #78B842;
}

.social-links.invert a.codepen:hover {
  color: #000000;
}

.social-links.invert a.digg:hover {
  color: #115c83;
}

.social-links.invert a.foursquare:hover {
  color: #f84777;
}

.social-links.invert a.github:hover {
  color: #000000;
}

.social-links.invert a.reddit:hover {
  color: #EF4623;
}

.social-links.invert a.skype:hover {
  color: #00aff0;
}

.social-links.invert a.behance:hover {
  color: #111111;
}

.social-links.invert a.youtube:hover {
  color: #e02b28;
}

.social-links.invert a.steam:hover {
  color: #000000;
}

.social-links.invert a.dribbble:hover {
  color: #E94C89;
}

.social-links.invert a.tumblr:hover {
  color: #44546A;
}

.social-links.invert a.wordpress:hover {
  color: #21759b;
}

.social-links.invert a.instagram:hover {
  color: #974518;
}

.social-links.invert a.pinterest:hover {
  color: #cc2127;
}

.social-links.invert a.flickr:hover {
  color: #0063db;
}

.social-links.invert a.vimeo:hover {
  color: #1ab7ea;
}

.social-links.invert a.vine:hover {
  color: #00b489;
}

.social-links.invert a.deviantart:hover {
  color: #536551;
}

.social-links.invert a.lastfm:hover {
  color: #DA001C;
}

.social-links.invert a.soundcloud:hover {
  color: #FF4700;
}

.social-links.boxed.small a {
  width: 20px;
  height: 20px;
  padding: 1px;
  font-size: 14px;
  line-height: normal;
}

.social-links.boxed.large a, .social-links.boxed.medium a {
  width: 40px;
  height: 40px;
  padding: 8px;
  font-size: 18px;
}

.social-links.boxed a {
  text-align: center;
  color: white !important;
  display: block !important;
  float: left;
  margin-bottom: 0;
}

.social-links.boxed a.facebook {
  background-color: #3B5998;
}

.social-links.boxed a.twitter {
  background-color: #55ACEE;
}

.social-links.boxed a.google-plus {
  background-color: #E02F2F;
}

.social-links.boxed a.linkedin {
  background-color: #007BB5;
}

.social-links.boxed a.spotify {
  background-color: #78B842;
}

.social-links.boxed a.codepen {
  background-color: #000000;
}

.social-links.boxed a.digg {
  background-color: #115c83;
}

.social-links.boxed a.foursquare {
  background-color: #f84777;
}

.social-links.boxed a.github {
  background-color: #000000;
}

.social-links.boxed a.reddit {
  background-color: #EF4623;
}

.social-links.boxed a.skype {
  background-color: #00aff0;
}

.social-links.boxed a.behance {
  background-color: #111111;
}

.social-links.boxed a.youtube {
  background-color: #e02b28;
}

.social-links.boxed a.steam {
  background-color: #000000;
}

.social-links.boxed a.dribbble {
  background-color: #E94C89;
}

.social-links.boxed a.tumblr {
  background-color: #44546A;
}

.social-links.boxed a.wordpress {
  background-color: #21759b;
}

.social-links.boxed a.instagram {
  background-color: #974518;
}

.social-links.boxed a.pinterest {
  background-color: #cc2127;
}

.social-links.boxed a.flickr {
  background-color: #0063db;
}

.social-links.boxed a.vimeo {
  background-color: #1ab7ea;
}

.social-links.boxed a.vine {
  background-color: #00b489;
}

.social-links.boxed a.deviantart {
  background-color: #536551;
}

.social-links.boxed a.lastfm {
  background-color: #DA001C;
}

.social-links.boxed a.soundcloud {
  background-color: #FF4700;
}

.social-links.boxed a:hover {
  background-color: #adadad;
}

/* social share */
.share-control {
  z-index: 99;
  position: relative;
}

.share-control .share-counter, .share-control > a, .share-control .more-sharer-control {
  display: inline-block;
  vertical-align: baseline;
}

@media screen and (max-width: 480px) {
  .share-control .share-counter, .share-control > a, .share-control .more-sharer-control {
    display: block;
  }
}

.share-control .share-counter {
  font-size: 30px;
  font-size: 1.875em;
  line-height: 1;
  vertical-align: bottom;
  margin-right: 20px;
  font-weight: 300;
  display: inline-block;
}

.share-control .share-counter small {
  font-size: 12px;
  font-size: 0.75rem;
}

.share-control .more-sharer-control {
  position: relative;
  -webkit-perspective: 300;
          perspective: 300;
}

.share-control .shares-toggle {
  outline: none;
}

.share-control .more-sharer {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px);
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .share-control .more-sharer {
    left: auto;
    right: 5px;
  }
}

.share-control .more-sharer.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.share-control .more-sharer a {
  display: block;
  color: white;
  white-space: nowrap;
  padding: 10px 20px 10px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.share-control .more-sharer a i.fa {
  width: 30px;
  margin-right: 20px;
  text-align: center;
  color: white;
}

.share-control .more-sharer a:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  background: white;
  z-index: -1;
}

.share-control .more-sharer a:hover {
  color: #393939;
}

.share-control .more-sharer a:hover:after {
  left: 50px;
}

.share-control .more-sharer a:hover .fa {
  color: white;
}

.share-control a {
  color: white;
  padding: 10px 20px;
  margin-right: -5px;
}

.share-control a .fa {
  margin-right: 10px;
}

.share-control a.facebook {
  background-color: #3B5998;
}

.share-control a.twitter {
  background-color: #55ACEE;
}

.share-control a.google-plus {
  background-color: #E02F2F;
}

.share-control a.linkedin {
  background-color: #007BB5;
}

.share-control a.spotify {
  background-color: #78B842;
}

.share-control a.codepen {
  background-color: #000000;
}

.share-control a.digg {
  background-color: #115c83;
}

.share-control a.foursquare {
  background-color: #f84777;
}

.share-control a.github {
  background-color: #000000;
}

.share-control a.reddit {
  background-color: #EF4623;
}

.share-control a.skype {
  background-color: #00aff0;
}

.share-control a.behance {
  background-color: #111111;
}

.share-control a.youtube {
  background-color: #e02b28;
}

.share-control a.steam {
  background-color: #000000;
}

.share-control a.dribbble {
  background-color: #E94C89;
}

.share-control a.tumblr {
  background-color: #44546A;
}

.share-control a.wordpress {
  background-color: #21759b;
}

.share-control a.instagram {
  background-color: #974518;
}

.share-control a.pinterest {
  background-color: #cc2127;
}

.share-control a.flickr {
  background-color: #0063db;
}

.share-control a.vimeo {
  background-color: #1ab7ea;
}

.share-control a.vine {
  background-color: #00b489;
}

.share-control a.deviantart {
  background-color: #536551;
}

.share-control a.lastfm {
  background-color: #DA001C;
}

.share-control a.soundcloud {
  background-color: #FF4700;
}

.share-count {
  position: relative;
  -webkit-perspective: 300;
          perspective: 300;
  z-index: 99;
}

@media screen and (max-width: 640px) {
  .share-count {
    display: inline-block;
    border-bottom: none;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .share-count {
    display: inline-block;
    border-bottom: none;
  }
}

.share-count .share-button {
  background: #4db2ec;
  color: white;
  border: none;
  padding: 5px 8px;
  outline: none;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.share-count .share-button.active {
  background: #2E3135;
}

.share-count .social-share {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: .3s ease;
          transition: .3s ease;
  background: #2E3135;
}

.share-count .social-share.active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.share-count .social-share a {
  display: block;
  padding: 10px 10px 10px 0;
  color: white;
  white-space: nowrap;
}

.share-count .social-share a:hover {
  color: #4db2ec;
}

.share-count .social-share a .fa {
  width: 30px;
  text-align: center;
}

.share-count .num {
  color: #9b9b9b;
}

/*======================================*
	 * 3.3 Wordpress Default Class
	 * ======================================*/
/*============================*
 * WordPress Core Styling
 * =============================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  position: relative;
  margin-bottom: 50px !important;
}

.wp-caption > a {
  display: block;
}

.wp-caption > a img {
  display: block;
}

@media screen and (max-width: 990px) {
  .wp-caption {
    margin-right: 0;
  }
}

.wp-caption.alignnone {
  margin: 5px 20px 50px 0 !important;
}

.wp-caption.alignleft {
  margin: 5px 20px 50px 0 !important;
}

.wp-caption.alignright {
  margin: 5px 0 50px 20px !important;
}

.wp-caption.aligncenter {
  text-align: center;
}

.wp-caption.aligncenter img {
  margin: 0 auto;
  display: inline-block;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
  display: block;
}

.wp-caption .wp-caption-text {
  font-size: 12px;
  font-size: 0.75em;
  font-style: italic;
  line-height: 17px;
  margin: 0;
  padding: 10px;
  background-color: #fdfcfb;
}

.wp-caption .image-description {
  position: absolute;
  top: 100%;
  padding-top: 10px;
  right: 30px;
  text-align: right;
  font-style: italic;
  font-size: 12px;
  font-size: 0.75em;
  color: #9b9b9b;
}

.gallery-row {
  *zoom: 1;
  margin: 0 -5px;
}

.gallery-row:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.gallery-row .gallery-item {
  position: relative;
  padding: 10px;
}

.gallery-row .gallery-item a {
  display: block;
}

.gallery-row .gallery-item a img {
  padding: 0;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.gallery-row .gallery-item:hover .gallery-caption {
  visibility: visible;
  z-index: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.gallery-row .gallery-caption {
  position: absolute;
  padding-top: 10px;
  font-style: italic;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: normal;
  font-size: 12px;
  font-size: 0.75em;
  background: #232b39;
  padding: 20px;
  top: 100%;
  z-index: 1;
  width: 300px;
  margin-top: -20px;
  visibility: hidden;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  color: white;
}

.gallery-row .gallery-caption:before {
  content: " ";
  width: 0;
  border-style: solid;
  border-width: 5px;
  border-color: transparent transparent #232b39 #232b39;
  position: absolute;
  left: 0;
  margin: auto;
  top: -10px;
}

hr.separator {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 0 0 50px;
}

/*======================================*
	 * 3.4 Star Rating Style
	 * ======================================*/
/* Star rating style */
.star-rating {
  display: block;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1em;
  font-size: 14px;
  font-size: 0.875em;
  width: 5em;
  font-family: "dripicons";
}

.star-rating:before {
  content: "\e090\e090\e090\e090\e090";
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  content: "\e090\e090\e090\e090\e090";
  top: 0;
  position: absolute;
  left: 0;
  color: #4db2ec;
}

/*======================================*
	 * 3.5 Comment Style
	 * ======================================*/
#comments {
  padding: 30px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

@media screen and (max-width: 990px) {
  #comments {
    padding-left: 30px;
  }
}

.comments-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 700;
  padding: 30px 0;
  margin-bottom: 30px;
  font-size: 20px;
  font-size: 1.25em;
  position: relative;
  color: #393939;
  text-align: center;
  overflow: hidden;
}

.comments-title span {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.comments-title span:before, .comments-title span:after {
  content: " ";
  height: 3px;
  background-color: #9b9b9b;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 200%;
}

.comments-title span:before {
  right: 100%;
}

.comments-title span:after {
  left: 100%;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding-right: 30px;
}

.comment .comment-body {
  padding-left: 60px;
  padding-bottom: 20px;
  position: relative;
}

.comment .comment-body footer {
  margin-bottom: 20px;
}

.comment .comment-body .comment-author {
  font-weight: 700;
}

.comment .comment-body .fn {
  font-style: normal;
  color: #393939;
  text-transform: capitalize;
}

.comment .comment-body .fn a {
  color: #393939;
}

.comment .comment-body .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.comment .comment-body b {
  display: inline-block;
}

.comment .comment-body b a {
  color: #393939;
}

.comment .comment-body b, .comment .comment-body .comment-reply-link {
  vertical-align: baseline;
}

.comment .comment-body .comment-reply-link {
  font-size: 12px;
  font-size: 0.75em;
  padding-left: 10px;
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.comment .comment-body .comment-reply-link:before {
  content: ".";
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  left: 0;
  line-height: normal;
  color: #393939;
}

.comment .comment-body .comment-metadata {
  font-size: 12px;
  font-size: 0.75em;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
  line-height: 12px;
}

.comment .comment-body .comment-metadata a {
  color: #9b9b9b;
}

.comment .comment-content {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.comment .comment-content h1, .comment .comment-content h2, .comment .comment-content h3, .comment .comment-content h4, .comment .comment-content h5, .comment .comment-content h6 {
  margin-top: 20px;
}

.comment .comment-content a {
  color: #4db2ec;
  text-decoration: underline;
}

.comment .comment-content img {
  max-width: 100%;
  height: auto !important;
}

.comment .comment-content ul, .comment .comment-content ol {
  margin: 10px 0 10px 20px;
}

.comment .comment-content pre {
  background: #eaeaea;
  padding: 20px;
}

.comment .comment-content q {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
}

.comment .comment-content table {
  width: 100%;
  margin: 30px 0;
}

.comment .comment-content table th, .comment .comment-content table td {
  border: 1px solid #eaeaea;
  padding: 5px;
}

.comment.parent > .comment-body:before {
  content: " ";
  width: 4px;
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  background: #eaeaea;
}

.comment.bypostauthor .comment-content {
  border-color: #4db2ec;
}

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

#respond {
  margin: 30px 0;
}

#respond .form-allowed-tags {
  font-style: italic;
  color: #9b9b9b;
  font-size: 12px;
  font-size: 0.75em;
}

#commentform {
  padding-right: 30px;
}

#commentform input:not([type="submit"]), #commentform textarea {
  width: 100%;
  max-width: 100%;
}

#reply-title {
  font-weight: 700;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 5px solid #eaeaea;
  font-size: 20px;
  font-size: 1.25em;
  position: relative;
  color: #393939;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  text-align: center;
  overflow: hidden;
}

#reply-title span {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#reply-title span:before, #reply-title span:after {
  content: " ";
  height: 3px;
  background-color: #9b9b9b;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 200%;
}

#reply-title span:before {
  right: 100%;
}

#reply-title span:after {
  left: 100%;
}

#reply-title small {
  font-weight: normal;
  font-style: italic;
  font-size: 16px;
  float: right;
}

#submit {
  background: #4db2ec;
  color: white;
  border: 2px solid #4db2ec;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

#submit:focus, #submit:active, #submit:hover {
  border-color: #7bc6f1;
  background-color: #7bc6f1;
  color: white;
}

/*======================================*
	 * 3.6 Home Blocks (Visual Composer Components)
	 * ======================================*/
.headlines {
  *zoom: 1;
  margin-bottom: 30px;
}

.headlines:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.headlines .post {
  background: transparent;
  box-shadow: none;
}

.headlines .post .featured-image {
  max-height: 360px;
  overflow: hidden;
}

.headlines .full {
  margin-bottom: 0 !important;
  height: 410px;
  z-index: 1;
  position: relative;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.headlines .full:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.headlines .full .entry-title {
  margin-bottom: 10px !important;
  letter-spacing: -1px;
  font-size: 26px;
  font-size: 1.625em;
}

.headlines .inner-post {
  padding: 5px;
}

.headlines .columned {
  *zoom: 1;
  margin: 0 -5px;
}

.headlines .columned:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.headlines .large-section, .headlines .thumb-section {
  width: 50%;
  float: left;
  padding: 0 5px;
  *zoom: 1;
}

.headlines .large-section:after, .headlines .thumb-section:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

@media screen and (max-width: 990px) {
  .headlines .large-section, .headlines .thumb-section {
    width: 100%;
    float: none;
  }
}

.headlines .large-section .entry-meta, .headlines .large-section [class*="drip-icon"], .headlines .thumb-section .entry-meta, .headlines .thumb-section [class*="drip-icon"] {
  color: white;
}

.headlines .category a {
  padding: 2px 10px;
  border-radius: 3px;
  color: white;
  font-size: 12px;
  font-size: 0.75em;
}

.headlines .large-section {
  margin-bottom: 10px;
}

.headlines .thumb-section .inner-post {
  width: 50%;
  float: left;
  padding: 0 5px 10px;
}

@media screen and (max-width: 480px) {
  .headlines .thumb-section .inner-post {
    width: 100%;
    float: none;
    margin-bottom: 0 !important;
  }
}

.headlines .thumb-section .featured-post-block {
  height: 200px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.headlines .thumb-section .featured-post-block .post-detail {
  padding-bottom: 20px;
}

.headlines .thumb-section .featured-post-block .entry-title {
  color: white;
  font-size: 18px;
  font-size: 1.125em;
  letter-spacing: -1px;
}

.headlines .thumb-section .featured-post-block .entry-meta {
  font-size: 12px;
  font-size: 0.75em;
  padding-bottom: 0;
}

.headlines .thumb-section .featured-post-block .entry-meta [class*="drip"] {
  display: none;
}

.post-slider {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.post-slider .slides {
  *zoom: 1;
  list-style: none;
  direction: ltr;
}

.post-slider .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.post-slider .slides > li {
  width: 100%;
  margin-right: -100%;
  float: left;
  height: 460px;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: 0 !important;
  z-index: 1;
}

.post-slider .featured-post-block {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.post-slider .featured-post-block:hover:before {
  box-shadow: none;
}

.post-slider .featured-post-block .post-detail {
  margin: auto;
  padding: 30px;
  position: relative;
  text-align: center;
}

.post-slider .featured-post-block .author-post {
  display: inline-block;
  float: none;
}

.post-slider .featured-post-block .entry-title {
  color: white;
  letter-spacing: -2px;
  margin-bottom: 20px !important;
  font-size: 36px;
  font-size: 2.25em;
}

.post-slider .featured-post-block .category {
  margin-left: 0;
}

.post-slider .featured-post-block .category a {
  padding: 2px 10px;
  border-radius: 3px;
  color: white;
  background-color: #4db2ec;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.post-slider.type-1 .slides > li:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.post-slider.type-2 .slides > li {
  height: auto;
  margin-bottom: 0 !important;
}

.post-slider .flex-direction-nav {
  list-style: none;
  margin: 0;
}

.post-slider .flex-prev, .post-slider .flex-next {
  position: absolute;
  width: 40px;
  height: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  color: #393939;
  z-index: 9;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  opacity: 0;
  font-size: 24px;
  font-size: 1.5em;
}

.post-slider .flex-prev {
  left: 0;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
}

.post-slider .flex-next {
  right: 0;
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
}

.post-slider:hover .flex-prev, .post-slider:hover .flex-next {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.post-slider:hover .flex-control-nav {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.post-slider .flex-control-nav {
  list-style: none;
  text-align: center;
  position: absolute;
  bottom: 30px;
  z-index: 9;
  left: 0;
  right: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}

.post-slider .flex-control-nav div, .post-slider .flex-control-nav li {
  display: inline-block;
  margin: 0 8px;
}

.post-slider .flex-control-nav a {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.post-slider .flex-control-nav a.flex-active {
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.3);
}

.featured-post-block {
  position: relative;
  z-index: 1;
  height: 250px;
  z-index: 1;
  background-size: cover;
  background-position: center center;
}

.featured-post-block:before {
  content: " ";
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.featured-post-block:hover:before {
  box-shadow: inset 0 0 50px 1000px rgba(255, 255, 255, 0.3);
}

.featured-post-block .featured-image {
  overflow: hidden;
  height: 250px;
  width: 100%;
  position: relative;
}

.featured-post-block .featured-image:before {
  content: " ";
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.featured-post-block .featured-image img {
  width: 100%;
  max-width: 100%;
  display: block;
  -webkit-transition: .5s ease-out;
          transition: .5s ease-out;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.featured-post-block:hover .featured-image img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.featured-post-block .post-detail {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 30px 30px;
  z-index: 2;
}

.featured-post-block .post-detail .entry-title {
  margin-bottom: 0;
  line-height: 1.5;
  word-break: break-word;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: white;
}

.featured-post-block .post-detail .entry-title a {
  color: white;
}

.featured-post-block .post-detail .date, .featured-post-block .post-detail .category a, .featured-post-block .post-detail .comment-count, .featured-post-block .post-detail .comment-count a {
  color: white;
}

.featured-post-block .post-detail .comment-count {
  display: inline-block;
}

.featured-post-block .post-detail .comment-count .drip-icon-message, .featured-post-block .post-detail .comment-count a {
  color: white;
}

.featured-post-block .post-detail .comment-count .drip-icon-message {
  margin-right: 5px;
}

.featured-post-block .post-detail .category {
  display: inline-block;
}

.featured-post-block .post-detail .author-post {
  color: white;
}

.featured-post-block .share-count {
  margin-top: 20px;
  z-index: 99;
}

.featured-post-block .share-count .social-share {
  top: auto;
  bottom: 100%;
}

.tabbed-posts-block {
  margin-bottom: 30px;
  padding: 30px;
  background: white;
}

.tabbed-posts-block header {
  border-bottom: 3px solid #393939;
  margin-bottom: 30px;
}

.tabbed-posts-block header a {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #9b9b9b;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  outline: none;
}

.tabbed-posts-block header a.active {
  color: #4db2ec;
}

.tabbed-posts-block header a:after {
  content: " ";
  display: block;
  width: 11px;
  height: 20px;
  background: url(../img/garing-2.png) no-repeat;
  position: absolute;
  right: -10px;
  top: 10px;
}

.tabbed-posts-block header a:first-child {
  padding-left: 0;
}

.tabbed-posts-block header a:last-child:after {
  display: none;
}

.tabbed-posts-block .posts-grid {
  margin: 0 -5px;
  *zoom: 1;
}

.tabbed-posts-block .posts-grid:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.tabbed-posts-block .posts-grid .featured-post-block {
  width: 50%;
  float: left;
  padding: 5px;
  background-size: cover;
}

@media screen and (max-width: 640px) {
  .tabbed-posts-block .posts-grid .featured-post-block {
    width: 100%;
  }
}

.tabbed-posts-block .posts-grid .featured-post-block .post-detail {
  padding-bottom: 20px;
}

.tabbed-posts-block .posts-grid .featured-post-block .entry-title {
  word-break: break-word;
  font-size: 22px;
  font-size: 1.375em;
  color: white;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  letter-spacing: -1px;
}

.tabbed-posts-block .posts-grid .featured-post-block .entry-meta {
  font-size: 14px;
  font-size: 0.875em;
  line-height: normal;
}

.tabbed-posts-block .posts-grid .featured-post-block .entry-meta [class*="drip"] {
  display: none;
}

.tabbed-posts-block .tab-panel {
  -webkit-transition: 1s ease;
          transition: 1s ease;
  *zoom: 1;
  overflow: hidden;
}

.tabbed-posts-block .tab-panel:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.tabbed-posts-block .tab-panel .tab {
  width: 100%;
  margin-right: -100%;
  visibility: hidden;
  opacity: 0;
  float: left;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform-origin: 50% 100%;
      -ms-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.tabbed-posts-block .tab-panel .tab.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.advertisement-block {
  margin-bottom: 30px;
}

.advertisement-block img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto !important;
}

.block-title {
  background-color: #4db2ec;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 24px;
  font-size: 1.5em;
  letter-spacing: -2px;
  color: white;
  float: left;
  margin-bottom: 0;
  padding: 10px 30px;
}

.carousel-posts-block {
  background: white;
  position: relative;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.carousel-posts-block header {
  *zoom: 1;
  border-bottom: 3px solid #4db2ec;
  position: relative;
  margin: -30px -30px 30px;
}

.carousel-posts-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.carousel-posts-block .carousel-post {
  width: 33.333%;
  float: left;
}

.carousel-posts-block .carousel-post:nth-child(3n+1) {
  clear: both;
}

.carousel-posts-block .carousel-post .featured-image {
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-posts-block .carousel-post img {
  max-width: 100%;
  height: auto !important;
}

.carousel-posts-block .carousel-post .category a {
  color: #9b9b9b;
}

.carousel-posts-block .carousel-post .entry-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 18px;
  font-size: 1.125em;
  margin-bottom: 5px;
  word-break: break-word;
  letter-spacing: -2px;
}

.carousel-posts-block .carousel-post .entry-title a {
  color: #393939;
}

.carousel-posts-block .carousel-post .entry-meta {
  font-size: 14px;
  font-size: 0.875em;
  line-height: 1;
}

.carousel-posts-block .carousel-post .entry-meta [class*="drip"] {
  display: none;
}

.carousel-posts-block .carousel-post .comment-count {
  margin-left: 20px;
  display: inline-block;
}

.carousel-posts-block .carousel-post .comment-count .drip-icon-message, .carousel-posts-block .carousel-post .comment-count a {
  color: white;
}

.carousel-posts-block .carousel-post .comment-count .drip-icon-message {
  margin-right: 5px;
}

.carousel-posts-block .carousel-post .share-count {
  margin-top: 10px;
}

.carousel-posts-block .carousel-post .share-count .num {
  font-size: 13px;
  font-size: 0.8125em;
}

.carousel-posts-block .carousel-post .social-share {
  bottom: 100%;
  top: auto;
}

.carousel-posts-block .owl-item .carousel-post {
  width: 100%;
  float: none;
}

.carousel-posts-block.carousel-posts-thumbnail-block .carousel-post {
  position: relative;
}

.carousel-posts-block.carousel-posts-thumbnail-block .carousel-post:hover img {
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}

.carousel-posts-block.carousel-posts-thumbnail-block .featured-image {
  position: relative;
  max-height: 170px;
  margin-bottom: 0;
}

.carousel-posts-block.carousel-posts-thumbnail-block .featured-image:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.carousel-posts-block.carousel-posts-thumbnail-block .featured-image img {
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  display: block;
  height: auto !important;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail {
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail .entry-title {
  font-size: 18px;
  font-size: 1.125em;
  word-break: break-word;
  letter-spacing: -1px;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail .entry-title a {
  color: white;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail .entry-meta {
  color: white;
  margin: 0;
  line-height: normal;
  padding: 0;
  font-size: 12px;
  font-size: 0.75em;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail .entry-meta a {
  color: white;
}

.carousel-posts-block.carousel-posts-thumbnail-block .post-detail .entry-meta .datePublished {
  color: rgba(255, 255, 255, 0.8);
}

.carousel-posts-block .carousel {
  *zoom: 1;
}

.carousel-posts-block .carousel:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.carousel-posts-block .owl-carousel {
  position: static;
}

.carousel-posts-block .owl-controls {
  position: absolute;
  top: 0;
  right: 20px;
}

.carousel-posts-block .owl-nav .owl-next, .carousel-posts-block .owl-nav .owl-prev {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125em;
  color: #4db2ec;
}

.category-link-icon {
  float: right;
  font-size: 18px;
  font-size: 1.125em;
  line-height: 0;
  margin: 15px 20px;
}

.category-block {
  margin-bottom: 30px;
  background: white;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 480px) {
  .category-block {
    margin-bottom: 30px !important;
  }
}

.category-block header {
  *zoom: 1;
  border-bottom: 3px solid #4db2ec;
  position: relative;
  margin: -30px -30px 30px;
}

.category-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.category-block .category-posts {
  width: 100%;
}

.category-block .category-posts .first-post, .category-block .category-posts .post-list {
  display: table-cell;
  vertical-align: top;
}

.category-block .category-posts .first-post {
  width: 50%;
  border-bottom: none;
}

.category-block .category-posts .post-list {
  padding-left: 30px;
}

.category-block .category-posts .post-list li:first-child {
  padding-top: 0;
}

.category-block .category-posts .inner-post {
  border-top: none;
}

.category-block.lt600 .first-post {
  width: 250px;
}

@media screen and (max-width: 640px) {
  .category-block.lt600 .first-post {
    width: 100%;
    display: block;
    float: none;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 640px) {
  .category-block.lt600 .post-list {
    width: 100%;
    display: block;
    float: none;
    padding-left: 0;
  }
}

.category-block.lt450 .category-posts {
  display: block;
}

.category-block.lt450 .first-post, .category-block.lt450 .post-list {
  display: block;
}

.category-block.lt450 .first-post {
  width: 100%;
  float: none;
  margin-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.category-block.lt450 .post-list {
  padding-left: 0;
  margin: 0;
}

.category-block.gt750 .category-posts {
  display: table;
  table-layout: fixed;
}

.category-block .first-post .featured-image {
  overflow: hidden;
  margin-bottom: 10px;
}

.category-block .first-post .featured-image img {
  max-width: 100%;
  width: 100%;
  display: block;
}

.category-block .first-post .category {
  color: #9b9b9b;
}

.category-block .first-post .category a {
  color: #9b9b9b;
}

.category-block .first-post .entry-title {
  margin-bottom: 5px;
  font-size: 24px;
  font-size: 1.5em;
  word-break: break-word;
  letter-spacing: -2px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.category-block .first-post .entry-title a {
  color: #393939;
}

.category-block .first-post .entry-meta {
  color: #9b9b9b;
  font-size: 14px;
  font-size: 0.875em;
}

.category-block .first-post .entry-meta [class*="drip"] {
  display: none;
}

.category-block .first-post .datePublished {
  display: inline-block;
}

.category-block .first-post .post-action {
  *zoom: 1;
}

.category-block .first-post .post-action:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.category-block .first-post .share-count {
  float: left;
}

.category-block .first-post .more-link {
  float: right;
  margin-top: 5px;
}

.category-block figure img {
  max-width: 100%;
  height: auto;
}

.category-block .comment-count {
  display: inline-block;
  margin-left: 0;
}

.category-block .comment-count .drip-icon-message, .category-block .comment-count a {
  color: #444;
}

.category-block .comment-count .drip-icon-message {
  margin-right: 5px;
}

.category-block.type-2 .first-post {
  width: 100%;
  float: none;
  display: block;
  margin-bottom: 20px;
}

.category-block.type-2 .first-post .featured-image {
  float: left;
  width: 250px;
  margin-right: 20px;
}

@media screen and (max-width: 640px) {
  .category-block.type-2 .first-post .featured-image {
    float: none;
    display: block;
  }
}

.category-block.type-2 .first-post .featured-image img {
  max-width: 100%;
  width: 100%;
}

.category-block .post-list .entry-title {
  letter-spacing: -1px;
}

.category-block .post-list li {
  padding: 15px 0;
}

.category-block .post-list .entry-meta {
  line-height: normal;
  font-size: 14px;
  font-size: 0.875em;
  padding-bottom: 0;
}

.category-block .post-list .entry-meta [class*="drip"] {
  display: none;
}

.category-block .post-list.columned {
  display: block;
  float: none;
  padding-left: 0;
  margin: 0 -15px;
  *zoom: 1;
}

.category-block .post-list.columned:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.category-block .post-list.columned .post-item {
  padding: 0 15px;
  margin-bottom: 10px;
}

.category-block .post-list.columned .post-item .post-detail {
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  padding-bottom: 10px;
}

.category-block.type-3 .columned-post {
  *zoom: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.category-block.type-3 .columned-post:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.category-block.type-3 .columned-post .first-post {
  width: 100%;
}

.category-block.type-3 .columned-post .post-category {
  display: block;
}

.category-block.type-3 .entry-title, .category-block.type-3 p {
  word-break: break-word;
}

.category-block.type-3 .post-list.columned {
  margin: -15px;
}

.category-block.type-3 .post-list.columned .post-item {
  width: 50%;
  float: left;
  padding: 0 15px;
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .category-block.type-3 .post-list.columned .post-item {
    width: 100%;
    float: none;
  }
}

.category-block.type-3 .post-list.columned .post-item .inner-post {
  border-top: 1px solid #eaeaea;
  position: relative;
  padding: 10px 0;
}

.category-block.type-3 .post-list.columned .post-item .inner-post.has-featured-image {
  padding-left: 90px;
  min-height: 90px;
}

.category-block.type-3 .post-list.columned .post-item:nth-child(2n+1) {
  clear: both;
}

.category-block.type-3 .post-list.columned .post-item .post-image {
  position: absolute;
  top: 10px;
  left: 0;
}

.category-block.type-3 .post-list.columned .post-item .post-detail {
  border-bottom: none;
  width: auto;
  padding-bottom: 0;
}

.category-block.type-3 .post-list.columned .post-item .entry-meta {
  padding-bottom: 0;
  line-height: normal;
  font-size: 14px;
  font-size: 0.875em;
}

.category-block.type-3 .post-list.columned .post-item .entry-meta [class*="drip"] {
  display: none;
}

.category-block.type-4 .post-category, .category-block.type-4 .post-list {
  display: block;
  width: 100%;
}

.category-block.type-4 .post-list {
  padding-left: 0;
  margin: 30px 0 0;
}

.highlight-posts-block {
  background-color: white;
  margin-bottom: 30px;
  padding: 30px;
}

.highlight-posts-block header {
  *zoom: 1;
  border-bottom: 3px solid #4db2ec;
  position: relative;
  margin: -30px -30px 30px;
}

.highlight-posts-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.highlight-posts-block .post-thumbnail-collapsed-list {
  list-style-type: none;
}

.highlight-posts-block .post-item {
  position: relative;
}

.highlight-posts-block .post-item .featured-image {
  overflow: hidden;
  max-height: 270px;
  position: relative;
}

.highlight-posts-block .post-item .featured-image img {
  max-width: 100%;
  width: 100%;
  display: block;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.highlight-posts-block .post-item .featured-image:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.highlight-posts-block .post-item:hover .featured-image img {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}

.highlight-posts-block .post-item .post-detail {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 30px 30px 0;
  background: rgba(0, 0, 0, 0.5);
}

.highlight-posts-block .post-item .entry-title {
  font-size: 16px;
  font-size: 1em;
  margin-bottom: 5px;
  word-break: break-word;
}

.highlight-posts-block .post-item .entry-title a {
  color: white;
}

.highlight-posts-block .post-item .entry-meta {
  color: white;
}

.highlight-posts-block .post-item .entry-meta a {
  color: white;
}

.highlight-posts-block .post-item .entry-meta [class*="drip"] {
  display: none;
}

.highlight-posts-block .post-item .comment-count {
  margin-left: 20px;
  display: inline-block;
}

.highlight-posts-block .post-item .comment-count .drip-icon-message, .highlight-posts-block .post-item .comment-count a {
  color: white;
}

.highlight-posts-block .post-item .comment-count .drip-icon-message {
  margin-right: 5px;
}

.highlight-posts-block .post-item .share-count {
  margin-top: 10px;
}

@media screen and (max-width: 640px) {
  .highlight-posts-block .post-item .share-count {
    display: block;
  }
}

.highlight-posts-block .more-posts {
  display: block;
  text-align: center;
  padding: 10px 20px;
  text-transform: uppercase;
}

.highlight-posts-block .more-posts:hover {
  background-color: #4db2ec;
  color: white;
}

.latest-news-block {
  margin-bottom: 30px;
  background: white;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.latest-news-block header {
  *zoom: 1;
  margin: -30px -30px 30px;
  border-bottom: 3px solid #4db2ec;
}

.latest-news-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.latest-news-block header .tab-nav {
  float: right;
  margin: 10px 30px 0 0;
}

.latest-news-block header .tab-nav a {
  color: #9b9b9b;
  position: relative;
  padding: 0 10px;
  display: inline-block;
}

.latest-news-block header .tab-nav a:after {
  content: " ";
  display: block;
  width: 11px;
  height: 20px;
  background: url(../img/garing-2.png) no-repeat;
  position: absolute;
  right: -10px;
  top: 8px;
}

.latest-news-block header .tab-nav a:last-child:after {
  display: none;
}

.latest-news-block header .tab-nav a.active {
  color: #4db2ec;
}

.latest-news-block .tab-panel {
  *zoom: 1;
}

.latest-news-block .tab-panel:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.latest-news-block .tab-panel .row {
  margin: 0 -15px;
}

.latest-news-block .tab-panel [class^="col-md"] {
  padding: 0 15px;
}

.latest-news-block .tab-panel .tab {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  margin-right: -100%;
  width: 100%;
  float: left;
}

.latest-news-block .tab-panel .tab.active {
  visibility: visible;
  opacity: 1;
}

.latest-news-block .post-category {
  margin-bottom: 30px;
}

.latest-news-block .post-category .featured-image {
  overflow: hidden;
  margin-bottom: 20px;
}

.latest-news-block .post-category .featured-image img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
}

.latest-news-block .post-category .category, .latest-news-block .post-category .entry-meta {
  color: #9b9b9b;
  font-size: 14px;
  font-size: 0.875em;
}

.latest-news-block .post-category .category a, .latest-news-block .post-category .entry-meta a {
  color: #9b9b9b;
}

.latest-news-block .post-category .comment-count {
  display: inline-block;
}

.latest-news-block .post-category .comment-count .drip-icon-message, .latest-news-block .post-category .comment-count a {
  color: #444;
}

.latest-news-block .post-category .comment-count .drip-icon-message {
  margin-right: 5px;
}

.latest-news-block .post-category .entry-title {
  font-size: 22px;
  font-size: 1.375em;
  margin-bottom: 5px;
  word-break: break-word;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  letter-spacing: -2px;
}

.latest-news-block .post-category .entry-title a {
  color: #393939;
}

.latest-news-block .post-category .post-action {
  *zoom: 1;
}

.latest-news-block .post-category .post-action:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.latest-news-block .post-category .share-count {
  float: left;
}

.latest-news-block .post-category .more-link {
  float: right;
}

.latest-news-block .post-category .entry-meta [class*="drip"] {
  display: none;
}

.latest-news-block .more-post {
  margin-top: 30px;
  padding: 10px 20px 0;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #eaeaea;
  display: block;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 0.3s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.photo-slider-block {
  background: white;
  border-top: 2px solid #4db2ec;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  padding-bottom: 30px;
}

.photo-slider-block header {
  *zoom: 1;
  border-bottom: 3px solid #4db2ec;
  position: relative;
  margin: -30px -30px 30px;
}

.photo-slider-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.photo-slider-block .photo-slider {
  padding: 30px 30px 0;
  overflow: hidden;
  direction: ltr;
}

.photo-slider-block .photo-slider .slides {
  *zoom: 1;
  list-style: none;
  width: 1000%;
  direction: ltr;
}

.photo-slider-block .photo-slider .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.photo-slider-block .photo-slider .slides li {
  float: left;
}

.photo-slider-block .photo-slider .slides img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.photo-slider-block .photo-slider .flex-control-thumbs {
  margin-top: 10px;
  position: relative;
}

.photo-slider-block .photo-slider .flex-control-thumbs img {
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.photo-slider-block .photo-slider .flex-control-thumbs img.flex-active {
  opacity: .8;
}

.photo-slider-block .photo-slider .flex-control-thumbs:hover .owl-prev, .photo-slider-block .photo-slider .flex-control-thumbs:hover .owl-next {
  opacity: 1;
}

.photo-slider-block .photo-slider .flex-control-thumbs .owl-prev, .photo-slider-block .photo-slider .flex-control-thumbs .owl-next {
  opacity: 1;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  position: absolute;
  bottom: 0;
  top: 0;
  width: 25px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding-top: 30px;
  font-size: 18px;
  font-size: 1.125em;
}

.photo-slider-block .photo-slider .flex-control-thumbs .owl-prev {
  left: 0;
}

.photo-slider-block .photo-slider .flex-control-thumbs .owl-next {
  right: 0;
}

/* Event */
.event-list, .portfolio-list {
  margin: 0 -15px;
}

.event-list.columns-2 .event-item,
.event-list.columns-2 .portfolio-thumbnail, .portfolio-list.columns-2 .event-item,
.portfolio-list.columns-2 .portfolio-thumbnail {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .event-list.columns-2 .event-item,
  .event-list.columns-2 .portfolio-thumbnail, .portfolio-list.columns-2 .event-item,
  .portfolio-list.columns-2 .portfolio-thumbnail {
    width: 100%;
  }
}

.event-list.columns-3 .event-item,
.event-list.columns-3 .portfolio-thumbnail, .portfolio-list.columns-3 .event-item,
.portfolio-list.columns-3 .portfolio-thumbnail {
  width: 33.3333%;
}

@media screen and (max-width: 768px) {
  .event-list.columns-3 .event-item,
  .event-list.columns-3 .portfolio-thumbnail, .portfolio-list.columns-3 .event-item,
  .portfolio-list.columns-3 .portfolio-thumbnail {
    width: 50%;
  }
  .event-list.columns-3 .event-item.first,
  .event-list.columns-3 .portfolio-thumbnail.first, .portfolio-list.columns-3 .event-item.first,
  .portfolio-list.columns-3 .portfolio-thumbnail.first {
    clear: none;
  }
  .event-list.columns-3 .event-item:nth-child(2n+1),
  .event-list.columns-3 .portfolio-thumbnail:nth-child(2n+1), .portfolio-list.columns-3 .event-item:nth-child(2n+1),
  .portfolio-list.columns-3 .portfolio-thumbnail:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .event-list.columns-3 .event-item,
  .event-list.columns-3 .portfolio-thumbnail, .portfolio-list.columns-3 .event-item,
  .portfolio-list.columns-3 .portfolio-thumbnail {
    width: 100%;
  }
}

.event-list.columns-4 .event-item,
.event-list.columns-4 .portfolio-thumbnail, .portfolio-list.columns-4 .event-item,
.portfolio-list.columns-4 .portfolio-thumbnail {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .event-list.columns-4 .event-item,
  .event-list.columns-4 .portfolio-thumbnail, .portfolio-list.columns-4 .event-item,
  .portfolio-list.columns-4 .portfolio-thumbnail {
    width: 50%;
  }
  .event-list.columns-4 .event-item.first,
  .event-list.columns-4 .portfolio-thumbnail.first, .portfolio-list.columns-4 .event-item.first,
  .portfolio-list.columns-4 .portfolio-thumbnail.first {
    clear: none;
  }
  .event-list.columns-4 .event-item:nth-child(2n+1),
  .event-list.columns-4 .portfolio-thumbnail:nth-child(2n+1), .portfolio-list.columns-4 .event-item:nth-child(2n+1),
  .portfolio-list.columns-4 .portfolio-thumbnail:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .event-list.columns-4 .event-item,
  .event-list.columns-4 .portfolio-thumbnail, .portfolio-list.columns-4 .event-item,
  .portfolio-list.columns-4 .portfolio-thumbnail {
    width: 100%;
  }
}

.event-item {
  margin-bottom: 30px;
  float: left;
  padding: 0 15px;
}

.event-item.first {
  clear: both;
}

.event-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.event-item .schedule-datetime .event-date, .event-item .schedule-datetime .event-month {
  display: inline-block;
  vertical-align: bottom;
}

.event-item .schedule-datetime .event-date {
  font-size: 36px;
  line-height: normal;
  font-weight: 300;
}

.event-item .event-title {
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.event-item .event-location, .event-item .event-time {
  font-size: .9em;
}

.event-item .event-time {
  margin-bottom: 20px;
}

.event-item .button, .event-item input[type="submit"], .event-item button, .event-item input[type="reset"], .event-item .woocommerce #content input.button, .woocommerce #content .event-item input.button,
.event-item .woocommerce #respond input#submit, .woocommerce #respond .event-item input#submit,
.event-item .woocommerce a.button, .woocommerce .event-item a.button,
.event-item .woocommerce button.button, .woocommerce .event-item button.button,
.event-item .woocommerce input.button, .woocommerce .event-item input.button,
.event-item .woocommerce-page #content input.button, .woocommerce-page #content .event-item input.button,
.event-item .woocommerce-page #respond input#submit, .woocommerce-page #respond .event-item input#submit,
.event-item .woocommerce-page a.button, .woocommerce-page .event-item a.button,
.event-item .woocommerce-page button.button, .woocommerce-page .event-item button.button,
.event-item .woocommerce-page input.button, .woocommerce-page .event-item input.button,
.event-item .widget_price_filter button.button, .widget_price_filter .event-item button.button {
  padding: 3px 20px;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.event-item:hover .button, .event-item:hover input[type="submit"], .event-item:hover button, .event-item:hover input[type="reset"], .event-item:hover .woocommerce #content input.button, .woocommerce #content .event-item:hover input.button,
.event-item:hover .woocommerce #respond input#submit, .woocommerce #respond .event-item:hover input#submit,
.event-item:hover .woocommerce input.button.alt, .woocommerce .event-item:hover input.button.alt,
.event-item:hover .woocommerce-page #content input.button, .woocommerce-page #content .event-item:hover input.button,
.event-item:hover .woocommerce-page #respond input#submit, .woocommerce-page #respond .event-item:hover input#submit,
.event-item:hover .woocommerce-page input.button.alt, .woocommerce-page .event-item:hover input.button.alt {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.event-item .post-thumb {
  position: relative;
  margin-bottom: 10px;
}

.event-item .post-thumb:before {
  content: " ";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.event-item .post-thumb:after {
  content: "\e082";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  font-size: 36px;
  color: white;
  line-height: 1.3;
  font-family: "Simple-Line-Icons";
  -webkit-transform: scale(0) rotate(0);
      -ms-transform: scale(0) rotate(0);
          transform: scale(0) rotate(0);
  -webkit-transition: .3s ease;
          transition: .3s ease;
  opacity: 0;
}

.event-item:hover .post-thumb:after {
  -webkit-transform: scale(1) rotate(225deg);
      -ms-transform: scale(1) rotate(225deg);
          transform: scale(1) rotate(225deg);
  opacity: 1;
}

.vc_editor .wpb_column.vc_column_container {
  width: 100%;
}

.posts-block {
  background: #f7f7f7;
  padding: 30px;
  margin-bottom: 30px;
}

.posts-block header {
  *zoom: 1;
  background: inherit;
  margin: -30px -30px 30px;
  border-bottom: 3px solid #4db2ec;
}

.posts-block header:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.posts-block header h2 {
  padding: 10px 20px;
  background: #4db2ec;
  color: white;
}

.the-posts.columns-2, .the-posts.columns-3 {
  margin: 0 -15px;
}

.the-posts.columns-2 .post, .the-posts.columns-3 .post {
  padding: 15px;
  background: none;
  box-shadow: none;
  margin-bottom: 0;
}

.the-posts.columns-2 .post .inner-post, .the-posts.columns-3 .post .inner-post {
  background: white;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 480px) {
  .the-posts.columns-2 .post .inner-post, .the-posts.columns-3 .post .inner-post {
    padding: 20px;
  }
}

.the-posts.columns-2 .post {
  width: 50%;
  float: left;
}

.the-posts.columns-2 .post:nth-child(2n+1) {
  clear: both;
}

@media screen and (max-width: 640px) {
  .the-posts.columns-2 .post {
    width: 100%;
    float: none;
  }
}

.the-posts.columns-3 .post {
  width: 33.3333%;
  float: left;
}

.the-posts.columns-3 .post:nth-child(3n+1) {
  clear: both;
}

@media screen and (max-width: 768px) {
  .the-posts.columns-3 .post {
    width: 50%;
  }
  .the-posts.columns-3 .post:nth-child(3n+1) {
    clear: none;
  }
  .the-posts.columns-3 .post:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 640px) {
  .the-posts.columns-3 .post {
    width: 100%;
    float: none;
  }
}

.the-posts .more-link {
  margin-top: 10px;
}

.section-title {
  font-size: 38px;
  font-size: 2.375em;
  margin-bottom: 0;
}

.white-text {
  color: white;
}

.white-text .section-title {
  color: white;
}

.events-column {
  background: white;
  padding: 30px 15px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  *zoom: 1;
}

.events-column:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.events-column.columns-2 .event-item {
  width: 50%;
}

.events-column.columns-2 .event-item:nth-child(2n+1) {
  clear: both;
}

@media screen and (max-width: 480px) {
  .events-column.columns-2 .event-item {
    width: 100%;
    float: none;
    clear: both;
  }
}

.events-column.columns-3 .event-item {
  width: 33.3333%;
}

.events-column.columns-3 .event-item:nth-child(3n+1) {
  clear: both;
}

@media screen and (max-width: 768px) {
  .events-column.columns-3 .event-item {
    width: 50%;
  }
  .events-column.columns-3 .event-item:nth-child(3n+1) {
    clear: none;
  }
  .events-column.columns-3 .event-item:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .events-column.columns-3 .event-item {
    width: 100%;
    float: none;
    clear: both;
  }
}

.events-column.columns-4 .event-item {
  width: 25%;
}

.events-column.columns-4 .event-item:nth-child(4n+1) {
  clear: both;
}

@media screen and (max-width: 990px) {
  .events-column.columns-4 .event-item {
    width: 33.3333%;
  }
  .events-column.columns-4 .event-item:nth-child(4n+1) {
    clear: none;
  }
  .events-column.columns-4 .event-item:nth-child(3n+1) {
    clear: both;
  }
}

@media screen and (max-width: 768px) {
  .events-column.columns-4 .event-item {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .events-column.columns-4 .event-item {
    width: 100%;
    float: none;
    clear: both;
  }
}

.events-column .event-item {
  background: white;
}

.wpb_wrapper .woocommerce {
  background: white;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.wpb_wrapper .woocommerce ul.products {
  margin: 0;
}

/*======================================*
	 * 3.7 Woocommerce Styles
	 * ======================================*/
.woocommerce-content {
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .woocommerce-content {
    padding: 0;
  }
}

.woocommerce-content .page-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 48px;
  font-size: 3em;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.woocommerce-content nav.woocommerce-breadcrumb {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
}

.woocommerce-content nav.woocommerce-breadcrumb a {
  color: #4db2ec;
}

.woocommerce-content .woocommerce-ordering select {
  color: #666;
  padding: 8px 10px;
}

.woocommerce .woocommerce-content span.onsale, .woocommerce-page .woocommerce-content span.onsale {
  background: #4db2ec;
  width: 32px;
  height: 32px;
  line-height: 2.5;
}

.woocommerce-content .price > .amount, .woocommerce-content .price ins .amount {
  color: #4db2ec;
}

.woocommerce-content .price del, .woocommerce-content .price ins {
  display: inline-block !important;
}

.woocommerce-content .product_meta > span {
  display: block;
}

.woocommerce-content .quantity .qty {
  padding: 5px 10px;
}

.woocommerce-content .woocommerce-pagination {
  position: relative;
}

.woocommerce-content .woocommerce-pagination .page-numbers {
  background: white;
  border: none;
}

.woocommerce-content .woocommerce-pagination .page-numbers li {
  border: none;
}

.woocommerce-content .woocommerce-pagination .page-numbers li span.current {
  background: none;
}

.woocommerce-content #review_form_wrapper #reply-title {
  margin-bottom: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: none;
  border: none;
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li.active:before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs a {
  padding: 10px !important;
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs a:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #4db2ec;
  bottom: 0;
  left: 0;
  display: block;
  border: none;
  border-radius: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a:after, .woocommerce div.product .woocommerce-tabs ul.tabs li.active a:after {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

#tab-reviews #comments {
  box-shadow: none;
  padding: 0;
}

.woocommerce div.product form.cart .button, .woocommerce div.product form.cart input[type="submit"], .woocommerce div.product form.cart button, .woocommerce div.product form.cart input[type="reset"], .woocommerce div.product form.cart #content input.button,
.woocommerce #content div.product form.cart input.button,
.woocommerce div.product form.cart #respond input#submit,
.woocommerce #respond div.product form.cart input#submit,
.woocommerce-page #content .woocommerce div.product form.cart input.button,
.woocommerce-page #respond .woocommerce div.product form.cart input#submit {
  background-color: #4db2ec;
}

.woocommerce #content input[type="submit"],
.woocommerce #content input[type="reset"],
.woocommerce #content #respond input#submit,
.woocommerce #respond #content input#submit,
.woocommerce #content input.button,
.woocommerce-page #respond .woocommerce #content input#submit,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button,
.woocommerce button.button,
.woocommerce input[type="submit"],
.woocommerce input[type="reset"],
.woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce-page #content .woocommerce input.button,
.woocommerce-page #respond .woocommerce input#submit,
.woocommerce input.button.alt,
.woocommerce input.alt[type="submit"],
.woocommerce input.alt[type="reset"],
.woocommerce #content input.alt.button,
.woocommerce #respond input.alt#submit,
.woocommerce input.alt.button,
.woocommerce-page #content .woocommerce input.alt.button,
.woocommerce-page #respond .woocommerce input.alt#submit,
.woocommerce-page #content input[type="submit"],
.woocommerce-page #content input[type="reset"],
.woocommerce #respond .woocommerce-page #content input#submit,
.woocommerce-page #content #respond input#submit,
.woocommerce-page #respond #content input#submit,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button,
.woocommerce-page button.button,
.woocommerce-page input[type="submit"],
.woocommerce-page input[type="reset"],
.woocommerce #content .woocommerce-page input.button,
.woocommerce #respond .woocommerce-page input#submit,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page input.button,
.woocommerce-page input.button.alt, .woocommerce-page input.button.alt, .woocommerce-page input.alt[type="submit"], .woocommerce-page input.alt[type="reset"], .woocommerce #content .woocommerce-page input.alt.button,
.woocommerce #respond .woocommerce-page input.alt#submit,
.woocommerce-page #content input.alt.button,
.woocommerce-page #respond input.alt#submit,
.woocommerce-page input.alt.button {
  text-shadow: none;
}

.woocommerce #content input[type="submit"]:hover,
.woocommerce #content input[type="reset"]:hover,
.woocommerce #content #respond input#submit:hover,
.woocommerce #respond #content input#submit:hover,
.woocommerce #content input.button:hover,
.woocommerce-page #respond .woocommerce #content input#submit:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button:hover,
.woocommerce input[type="submit"]:hover,
.woocommerce input[type="reset"]:hover,
.woocommerce #content input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce input.button:hover,
.woocommerce-page #content .woocommerce input.button:hover,
.woocommerce-page #respond .woocommerce input#submit:hover,
.woocommerce input.button.alt:hover,
.woocommerce input.alt[type="submit"]:hover,
.woocommerce input.alt[type="reset"]:hover,
.woocommerce #content input.alt.button:hover,
.woocommerce #respond input.alt#submit:hover,
.woocommerce input.alt.button:hover,
.woocommerce-page #content .woocommerce input.alt.button:hover,
.woocommerce-page #respond .woocommerce input.alt#submit:hover,
.woocommerce-page #content input[type="submit"]:hover,
.woocommerce-page #content input[type="reset"]:hover,
.woocommerce #respond .woocommerce-page #content input#submit:hover,
.woocommerce-page #content #respond input#submit:hover,
.woocommerce-page #respond #content input#submit:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page button:hover,
.woocommerce-page input[type="submit"]:hover,
.woocommerce-page input[type="reset"]:hover,
.woocommerce #content .woocommerce-page input.button:hover,
.woocommerce #respond .woocommerce-page input#submit:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page input.button:hover,
.woocommerce-page input.button.alt:hover, .woocommerce-page input.alt[type="submit"]:hover, .woocommerce-page input.alt[type="reset"]:hover, .woocommerce #content .woocommerce-page input.alt.button:hover,
.woocommerce #respond .woocommerce-page input.alt#submit:hover,
.woocommerce-page #content input.alt.button:hover,
.woocommerce-page #respond input.alt#submit:hover,
.woocommerce-page input.alt.button:hover {
  background: #7bc6f1;
}

.woocommerce .products ul,
.woocommerce ul.products,
.woocommerce-page .products ul,
.woocommerce-page ul.products {
  margin-top: 30px;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-message {
  background: #fff;
}

.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before,
.woocommerce-page .woocommerce-error:before,
.woocommerce-page .woocommerce-info:before,
.woocommerce-page .woocommerce-message:before {
  width: 25px !important;
  height: 30px !important;
}

.woocommerce .cart-collaterals .cart_totals table, .woocommerce-page .cart-collaterals .cart_totals table {
  width: 100%;
}

.woocommerce .cart-collaterals .cart_totals table th, .woocommerce .cart-collaterals .cart_totals table td, .woocommerce-page .cart-collaterals .cart_totals table th, .woocommerce-page .cart-collaterals .cart_totals table td {
  border: none;
}

.woocommerce .cart-collaterals .cart_totals table th, .woocommerce-page .cart-collaterals .cart_totals table th {
  width: 50%;
}

/* woocommernce widgets  */
.widget_product_categories ul {
  list-style-type: none;
}

.widget_product_categories ul li {
  *zoom: 1;
  text-align: right;
}

.widget_product_categories ul li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget_product_categories ul a {
  float: left;
}

.widget_price_filter .price_slider_amount {
  text-align: left;
}

.widget_price_filter input[type="text"] {
  max-width: 110px;
}

.widget_price_filter button, .widget_price_filter button.button {
  text-shadow: none;
}

.widget_price_filter .price_label {
  float: right;
  font-size: 16px;
  font-size: 1em;
}

.widget_product_search .screen-reader-text {
  display: none;
}

.woocommerce .widget_price_filter .price_slider_amount, .woocommerce-page .widget_price_filter .price_slider_amount {
  text-align: left;
}

.woocommerce ul.product_list_widget li,
.woocommerce-page ul.product_list_widget li {
  position: relative;
  padding: 10px 0 10px 80px !important;
  padding-left: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 80px;
}

.woocommerce ul.product_list_widget li:last-child,
.woocommerce-page ul.product_list_widget li:last-child {
  border-bottom: none;
}

.woocommerce ul.product_list_widget li a,
.woocommerce-page ul.product_list_widget li a {
  color: #393939;
}

.woocommerce ul.product_list_widget li a.remove,
.woocommerce-page ul.product_list_widget li a.remove {
  left: auto !important;
  right: 0;
  top: 10px !important;
  font-size: 14px;
  font-size: 0.875em;
}

.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.product_list_widget li img {
  position: absolute;
  left: 0;
  top: 10px;
  width: 60px;
  float: none;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #64bcee;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #1f9ee7;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #0f6191;
}

.woocommerce table.my_account_orders .order-actions .button, .woocommerce table.my_account_orders .order-actions input[type="submit"], .woocommerce table.my_account_orders .order-actions button, .woocommerce table.my_account_orders .order-actions input[type="reset"], .woocommerce table.my_account_orders .order-actions #content input.button,
.woocommerce #content table.my_account_orders .order-actions input.button,
.woocommerce table.my_account_orders .order-actions #respond input#submit,
.woocommerce #respond table.my_account_orders .order-actions input#submit,
.woocommerce-page #content .woocommerce table.my_account_orders .order-actions input.button,
.woocommerce-page #respond .woocommerce table.my_account_orders .order-actions input#submit {
  color: white;
}

.widget_product_search input[type="submit"] {
  border: 2px solid #4db2ec;
}

.single .entry-content table, .page .entry-content table {
  border-collapse: collapse;
}

.single .entry-content table a, .page .entry-content table a {
  text-decoration: none;
}

.woocommerce ul.products li.product .button, .woocommerce ul.products li.product input[type="submit"], .woocommerce ul.products li.product button, .woocommerce ul.products li.product input[type="reset"], .woocommerce ul.products li.product #content input.button,
.woocommerce #content ul.products li.product input.button,
.woocommerce ul.products li.product #respond input#submit,
.woocommerce #respond ul.products li.product input#submit,
.woocommerce-page #content .woocommerce ul.products li.product input.button,
.woocommerce-page #respond .woocommerce ul.products li.product input#submit {
  color: white;
}

.woocommerce-page table.cart td.actions .input-text {
  width: 120px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #4db2ec;
  text-decoration: none;
}

.woocommerce ul.products {
  margin: 0 -15px;
}

.woocommerce ul.products li.product {
  width: 33.3333%;
  float: left;
  padding: 15px;
  margin: 0 !important;
  box-shadow: none;
  clear: none;
}

@media screen and (max-width: 640px) {
  .woocommerce ul.products li.product {
    width: 50%;
  }
  .woocommerce ul.products li.product:nth-child(3n+1) {
    clear: none;
  }
  .woocommerce ul.products li.product:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .woocommerce ul.products li.product {
    width: 100%;
  }
}

.woocommerce ul.products li.product .product-inner {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product .product-image {
  position: relative;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .product-image a {
  display: block;
  overflow: hidden;
}

.woocommerce ul.products li.product .product-image a:before {
  content: "\f002";
  font-family: FontAwesome;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 48px;
  color: white;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
  opacity: 0;
  line-height: 1;
  -webkit-transition: .2s ease-out;
          transition: .2s ease-out;
  z-index: 1;
}

.woocommerce ul.products li.product .product-image a:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.woocommerce ul.products li.product .product-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.woocommerce ul.products li.product:hover .product-image a:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.woocommerce ul.products li.product:hover .product-image a:after {
  background-color: rgba(0, 0, 0, 0.4);
}

.woocommerce ul.products li.product:hover .product-image img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #bad455;
  border-radius: 50%;
  text-align: center;
  color: white;
  line-height: 2.5 !important;
  font-size: 13px;
  font-weight: 700;
  border: 3px solid white;
  top: auto;
  z-index: 1;
}

.woocommerce ul.products li.product .product-detail {
  padding: 20px;
}

.woocommerce ul.products li.product .product-title {
  font-size: 1em;
  margin-bottom: 5px;
  margin-top: 0;
  padding: 0;
  letter-spacing: -1px;
  line-height: 1;
}

.woocommerce ul.products li.product .product-title a {
  color: #333;
}

.woocommerce ul.products li.product .product-name {
  float: left;
  width: 70%;
  margin-bottom: 20px;
}

.woocommerce ul.products li.product .price {
  float: right;
  width: 30%;
}

.woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price > span {
  display: block !important;
  font-size: 14px;
  text-align: right;
  line-height: 1.2;
}

.woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price > span {
  text-decoration: none;
  color: #4db2ec;
  font-weight: 700;
  font-size: 14px;
}

.woocommerce ul.products li.product .button.add_to_cart_button, .woocommerce ul.products li.product input.add_to_cart_button[type="submit"], .woocommerce ul.products li.product button.add_to_cart_button, .woocommerce ul.products li.product input.add_to_cart_button[type="reset"], .woocommerce ul.products li.product #content input.add_to_cart_button.button,
.woocommerce #content ul.products li.product input.add_to_cart_button.button,
.woocommerce ul.products li.product #respond input.add_to_cart_button#submit,
.woocommerce #respond ul.products li.product input.add_to_cart_button#submit,
.woocommerce-page #content .woocommerce ul.products li.product input.add_to_cart_button.button,
.woocommerce-page #respond .woocommerce ul.products li.product input.add_to_cart_button#submit {
  clear: both;
  padding: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
  display: block;
  text-align: center;
  background-color: #40BD82;
}

.woocommerce ul.products li.product .added_to_cart.wc-forward {
  display: none;
}

.woocommerce.columns-4 ul.products li.product {
  width: 25%;
}

.woocommerce.columns-4 ul.products li.product:nth-child(4n+1) {
  clear: both;
}

.woocommerce.columns-4 ul.products li.product:nth-child(3n+1) {
  clear: none;
}

@media screen and (max-width: 990px) {
  .woocommerce.columns-4 ul.products li.product {
    width: 33.3333%;
  }
  .woocommerce.columns-4 ul.products li.product:nth-child(4n+1) {
    clear: none;
  }
  .woocommerce.columns-4 ul.products li.product:nth-child(3n+1) {
    clear: both;
  }
}

@media screen and (max-width: 768px) {
  .woocommerce.columns-4 ul.products li.product {
    width: 50%;
  }
  .woocommerce.columns-4 ul.products li.product:nth-child(3n+1) {
    clear: none;
  }
  .woocommerce.columns-4 ul.products li.product:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .woocommerce.columns-4 ul.products li.product {
    width: 100%;
  }
}

.woocommerce.columns-3 ul.products li.product {
  width: 33.3333%;
}

@media screen and (max-width: 768px) {
  .woocommerce.columns-3 ul.products li.product {
    width: 50%;
  }
  .woocommerce.columns-3 ul.products li.product:nth-child(3n+1) {
    clear: none;
  }
  .woocommerce.columns-3 ul.products li.product:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  .woocommerce.columns-3 ul.products li.product {
    width: 100%;
  }
}

.woocommerce.columns-2 ul.products li.product {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .woocommerce.columns-2 ul.products li.product {
    width: 100%;
  }
}

.woocommerce.columns-1 ul.products li.product {
  width: 100%;
}

/*======================================*
	 * 3.8 Magnific jQuery Plugin Style
	 * ======================================*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100001;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100002;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 100004;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 100003;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 100005;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*======================================*
	 * 3.9 Animate CSS LIbrary
	 * ======================================*/
/* Animate.css */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

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

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

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

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

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*======================================*
	 * 3.10 Events Style
	 * ======================================*/
#tribe-events-pg-template {
  margin: 30px auto;
  background: white;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 1170px;
}

.events-list .tribe-events-loop, .single-tribe_organizer .tribe-events-loop, .single-tribe_venue .tribe-events-loop, .tribe-events-day .tribe-events-loop {
  max-width: 100%;
}

.tribe-events-list .type-tribe_events h2 {
  font-size: 22px;
  font-size: 1.375em;
  letter-spacing: -1px;
  font-weight: 700;
}

.tribe-events-list .type-tribe_events h2 a {
  font-weight: 700 !important;
}

.tribe-events-page-title,
.single-tribe_events h2.tribe-events-single-event-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  letter-spacing: -2px;
  font-size: 22px;
  font-size: 1.375em;
}

.tribe-events-list-separator-month {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
  font-weight: normal;
}

.tribe-events-list h2.tribe-events-list-event-title a.url {
  color: #393939;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: normal;
  font-size: 24px;
  font-size: 1.5rem;
}

.tribe-events-list h2.tribe-events-list-event-title a.url:hover {
  color: #4db2ec;
}

.single-tribe_events .tribe-events-content.entry-content {
  padding: 0;
}

/*======================================*
	 * 3.11 Portfolio
	 * ======================================*/
.filter-nav {
  text-align: center;
  padding: 30px 0;
}

.filter-nav a {
  padding: 3px 10px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  color: #333;
  border-radius: 3px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.filter-nav a.current {
  color: white;
  background: #4db2ec;
}

.main-content .single-portfolio {
  padding: 0 30px 30px;
  margin-bottom: 30px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.portfolio-container {
  *zoom: 1;
}

.portfolio-container:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.portfolio-thumbnail {
  width: 33.3333%;
  float: left;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .portfolio-thumbnail {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .portfolio-thumbnail {
    width: 100%;
    float: none;
  }
}

.portfolio-thumbnail img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.portfolio-thumbnail .portfolio-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.portfolio-thumbnail .portfolio-title a {
  color: #393939;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.portfolio-thumbnail .category-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: normal;
  font-size: 14px;
  font-size: 0.875em;
}

.portfolio-thumbnail .portfolio-thumb {
  background: white;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-thumbnail .portfolio-thumb figcaption {
  padding: 0 20px 20px;
}

.portfolio-gallery {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background-color: #333;
}

.portfolio-gallery.loading .slides {
  opacity: 0;
}

.portfolio-gallery .slides {
  list-style: none;
  margin: 0 !important;
  *zoom: 1;
  width: 2000%;
  opacity: 1;
  -webkit-transition: opacity .3 ease;
          transition: opacity .3 ease;
}

.portfolio-gallery .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.portfolio-gallery .slides > li {
  float: left;
}

.portfolio-gallery .slides > li img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 768px;
}

.portfolio-gallery .flex-direction-nav {
  list-style: none;
  margin: 0 !important;
}

.portfolio-gallery .flex-direction-nav .flex-prev, .portfolio-gallery .flex-direction-nav .flex-next {
  position: absolute;
  width: 40px;
  height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 7;
  font-size: 26px;
  font-size: 1.625em;
  line-height: 1.8;
}

.portfolio-gallery .flex-direction-nav .flex-prev {
  left: 0;
}

.portfolio-gallery .flex-direction-nav .flex-next {
  right: 0;
}

.portfolio-content .entry-title {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 24px;
  font-size: 1.5em;
  margin: 0 0 5px;
}

.portfolio-content .portfolio-meta {
  list-style: none;
  margin: 10px 0 !important;
}

.portfolio-content .portfolio-meta strong {
  text-transform: capitalize;
  color: #393939;
}

.portfolio-content .social-share {
  list-style: none;
  margin: 0 !important;
}

.portfolio-content .social-share li {
  display: inline-block;
}

.portfolio-content .social-share li a {
  width: 30px;
  text-align: center;
  display: block;
}

.related-portfolio {
  border-top: 1px solid #9b9b9b;
  padding-top: 50px;
}

.related-portfolio .section-title {
  font-size: 24px;
  font-size: 1.5em;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  margin-bottom: 30px;
}

.related-thumb a {
  display: block;
  position: relative;
}

.related-thumb a img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 200px;
  display: block;
}

.related-thumb a h3 {
  position: absolute;
  padding: 40px 20px 20px;
  bottom: 0;
  width: 100%;
  left: 0;
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 18px;
  font-size: 1.125em;
  color: white;
  margin-bottom: 0;
}

/*======================================*
 * 4. Header Section
 * ======================================*/
/*
 * Header Styles
 */
.site-header {
  z-index: 9999;
  position: relative;
}

.has-cover-image.boxed .site-header {
  top: 0;
  background: -webkit-linear-gradient(white, rgba(255, 255, 255, 0));
  background: linear-gradient(white, rgba(255, 255, 255, 0));
}

.has-cover-image.boxed .site-header .container {
  background: transparent;
}

.site-header .secondary-header {
  position: relative;
  color: white;
  z-index: 10;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
  .site-header .secondary-header {
    display: none;
  }
}

.site-header .secondary-header .social-links {
  padding: 0 10px;
}

.site-header .secondary-header .social-links a {
  display: inline-block;
  padding: 10px;
}

.site-header .secondary-header .search-toggle {
  display: inline-block;
  background: none;
  float: right;
  padding: 14px 15px;
  color: #393939;
  outline: none;
  font-size: 14px;
  font-size: 0.875em;
}

.site-header .secondary-header .search-toggle:hover {
  color: #4db2ec !important;
}

.site-header .secondary-header .cart {
  position: relative;
  color: #4db2ec;
  float: right;
}

.site-header .secondary-header .cart:hover .widget_shopping_cart {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  display: block;
}

.site-header .secondary-header .cart a {
  padding: 12px 15px;
  display: block;
  line-height: normal;
}

.site-header .secondary-header .widget_shopping_cart {
  background: white;
  position: absolute;
  right: 0;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
  min-width: 300px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  z-index: 11;
}

.site-header .secondary-header .widget_shopping_cart .widgettitle {
  display: none;
}

.site-header .secondary-header .widget_shopping_cart li {
  position: relative;
  padding: 10px 0 10px 80px;
  padding-left: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 80px;
}

.site-header .secondary-header .widget_shopping_cart li:last-child {
  border-bottom: none;
}

.site-header .secondary-header .widget_shopping_cart li a {
  color: #393939;
  padding: 0;
}

.site-header .secondary-header .widget_shopping_cart li a.remove {
  left: auto;
  right: 0;
  top: 10px;
  font-size: 14px;
  font-size: 0.875em;
}

.site-header .secondary-header .widget_shopping_cart li img {
  position: absolute;
  left: 0;
  top: 10px;
  width: 60px;
  float: none;
}

.site-header .secondary-header .widget_shopping_cart a {
  color: #333;
}

.site-header .secondary-header .widget_shopping_cart a.button {
  color: white !important;
}

.site-header .secondary-header .widget_shopping_cart .total .amount {
  float: right;
}

.site-header .secondary-header .widget_shopping_cart .buttons a {
  margin-bottom: 5px;
  text-align: center;
}

.site-header .primary-header {
  position: relative;
  background-size: cover !important;
  background-position: center center;
  z-index: 1;
  color: white;
  min-height: 230px;
}

.site-header .primary-header:before {
  content: " ";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  z-index: -1;
}

.site-header .primary-header.has-slider {
  background-color: #333;
}

@media screen and (max-height: 768px) {
  .site-header .primary-header.has-slider {
    height: 768px !important;
  }
}

.site-header .primary-header.has-slider .branding {
  position: relative;
  z-index: 99;
}

.site-header .primary-header .branding .site-title {
  color: white;
}

.site-header .primary-header .branding .site-title a {
  color: white;
}

.site-header .primary-header.overlay-light {
  color: #444;
}

.site-header .primary-header.overlay-light:before {
  background: rgba(255, 255, 255, 0.3);
}

.site-header .primary-header .container {
  -webkit-transition: .3s ease;
          transition: .3s ease;
  padding: 0;
}

@media screen and (max-width: 990px) {
  .site-header .primary-header .container {
    padding: 0 10px;
  }
}

.site-header .primary-header > .container {
  padding: 15px 0;
}

.site-header .primary-header.stucked {
  position: fixed;
  top: 0;
  width: 100%;
}

.admin-bar .site-header .primary-header.stucked {
  top: 32px;
}

.site-header .primary-header.stucked .container {
  background: white;
}

.site-header .primary-header .ads {
  padding: 10px 0;
}

.site-header .primary-header .ads img {
  display: block;
  max-width: 100%;
}

.site-header .news-ticker .container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 640px) {
  .site-header .news-ticker {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .site-header .right-section {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .site-header .right-section {
    width: 100%;
    float: none;
    display: block;
  }
}

.branding {
  padding: 50px 0 40px;
  text-align: center;
}

.branding .site-title {
  margin-bottom: 20px;
  font-size: 4em;
  font-weight: 700;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: .8;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.branding .site-title img {
  max-height: 150px;
  display: block;
  margin: 0 auto;
}

.branding a {
  display: block;
  color: #000;
}

.stucked .branding a {
  padding: 5px 0;
}

.branding small {
  font-size: 16px;
  font-size: 1em;
  font-style: italic;
}

.header-navigation {
  background-color: #393939 !important;
  border-top: 3px solid #4db2ec;
}

/*
 * Dropdown menu default styling
 * ===============================================
 * All class name was derived from Wordpress Menus
 */
/* Desktop Dropdown Menu style */
.desktop-navigation, .sticky-menu {
  z-index: 9;
  position: relative;
}

.desktop-navigation .menu, .sticky-menu .menu {
  *zoom: 1;
  display: table;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.desktop-navigation .menu:after, .sticky-menu .menu:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

@media screen and (min-width: 991px) {
  .desktop-navigation .menu, .sticky-menu .menu {
    display: table !important;
  }
}

@media screen and (max-width: 990px) {
  .desktop-navigation .menu, .sticky-menu .menu {
    display: none;
  }
}

.desktop-navigation .menu .menu-item, .desktop-navigation .menu .page_item, .sticky-menu .menu .menu-item, .sticky-menu .menu .page_item {
  float: left;
  position: relative;
  -webkit-perspective: 300;
          perspective: 300;
}

.desktop-navigation .menu .menu-item a, .desktop-navigation .menu .page_item a, .sticky-menu .menu .menu-item a, .sticky-menu .menu .page_item a {
  display: block;
  padding: 10px 20px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.stucked .desktop-navigation .menu .menu-item a, .stucked .desktop-navigation .menu .page_item a, .stucked .sticky-menu .menu .menu-item a, .stucked .sticky-menu .menu .page_item a {
  padding: 15px 20px;
}

.desktop-navigation .menu .menu-item:hover > a, .desktop-navigation .menu .page_item:hover > a, .sticky-menu .menu .menu-item:hover > a, .sticky-menu .menu .page_item:hover > a {
  background: #4db2ec;
  color: white;
}

.desktop-navigation .menu .menu-item.drop-left .sub-menu, .desktop-navigation .menu .page_item.drop-left .sub-menu, .sticky-menu .menu .menu-item.drop-left .sub-menu, .sticky-menu .menu .page_item.drop-left .sub-menu {
  right: 0;
  left: auto;
}

.desktop-navigation .menu .menu-item.drop-left .sub-menu .sub-menu, .desktop-navigation .menu .page_item.drop-left .sub-menu .sub-menu, .sticky-menu .menu .menu-item.drop-left .sub-menu .sub-menu, .sticky-menu .menu .page_item.drop-left .sub-menu .sub-menu {
  right: 100%;
  left: auto;
}

.desktop-navigation .menu .menu-item.menu-item-has-children > a:after, .sticky-menu .menu .menu-item.menu-item-has-children > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 5px;
  font-size: .8em;
}

.desktop-navigation .menu .menu-item.menu-item-has-children:hover > .sub-menu, .sticky-menu .menu .menu-item.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.desktop-navigation .sub-menu, .sticky-menu .sub-menu {
  position: absolute;
  margin: 0;
  padding-left: 0;
  left: 0;
  top: 100%;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: -1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: white;
  text-align: left;
}

.desktop-navigation .sub-menu.drop-left, .sticky-menu .sub-menu.drop-left {
  left: auto !important;
  right: 0;
}

.desktop-navigation .sub-menu .menu-item, .desktop-navigation .sub-menu .page_item, .sticky-menu .sub-menu .menu-item, .sticky-menu .sub-menu .page_item {
  display: block;
  float: none;
  white-space: nowrap;
  border-bottom: 1px solid #eaeaea;
}

.desktop-navigation .sub-menu .menu-item:last-child, .desktop-navigation .sub-menu .page_item:last-child, .sticky-menu .sub-menu .menu-item:last-child, .sticky-menu .sub-menu .page_item:last-child {
  border-bottom: none;
}

.desktop-navigation .sub-menu .menu-item a, .desktop-navigation .sub-menu .page_item a, .sticky-menu .sub-menu .menu-item a, .sticky-menu .sub-menu .page_item a {
  padding: 5px 20px;
  color: #393939;
  font-size: 14px;
  font-size: 0.875em;
}

.desktop-navigation .sub-menu .menu-item:hover > a, .desktop-navigation .sub-menu .page_item:hover > a, .sticky-menu .sub-menu .menu-item:hover > a, .sticky-menu .sub-menu .page_item:hover > a {
  background-color: #4db2ec;
  color: white;
}

.desktop-navigation .sub-menu .menu-item.menu-item-has-children > a:after, .desktop-navigation .sub-menu .page_item.menu-item-has-children > a:after, .sticky-menu .sub-menu .menu-item.menu-item-has-children > a:after, .sticky-menu .sub-menu .page_item.menu-item-has-children > a:after {
  content: "\f105";
}

.desktop-navigation .sub-menu .sub-menu, .sticky-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top-width: 0;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
}

.desktop-navigation .sub-menu .sub-menu.drop-left, .sticky-menu .sub-menu .sub-menu.drop-left {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  left: auto !important;
  right: 100%;
}

/* Mega Menu */
.desktop-navigation #mega-menu-wrap-primary {
  background: #393939;
}

.desktop-navigation #mega-menu-wrap-primary:after {
  content: " ";
  clear: both;
  display: block;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  line-height: 2;
  height: auto;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a,
.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:hover > a {
  font-weight: 700;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item li.mega-menu-item-has-children > a:after {
  float: none;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
  width: auto;
  border-top: 3px solid #4db2ec;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu ul.mega-sub-menu {
  border-top: none;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #eaeaea;
  white-space: nowrap;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  padding: 10px 20px;
}

.desktop-navigation #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a:hover {
  background: #4db2ec;
  color: white;
}

.desktop-navigation #mega-menu-wrap-primary .mega-menu-toggle {
  background-color: #393939;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
  background: white !important;
  padding: 0 10px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  .desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
    width: 100% !important;
  }
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list {
  list-style: none;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list li {
  padding: 10px 0 !important;
  border-bottom: 1px solid #eaeaea !important;
  overflow: hidden !important;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list li:last-child {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-image {
  float: left !important;
  margin-right: 20px !important;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-image.rounded {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-image.rounded img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail {
  display: table !important;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-title {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  margin: 0;
  word-break: break-word;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-title a {
  color: #393939;
}

.site-footer .desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-title a {
  color: white;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-title a:hover {
  color: #4db2ec;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .category {
  color: #9b9b9b;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .category a {
  color: #9b9b9b;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .category a:hover {
  color: #4db2ec;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .date {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #9b9b9b;
  font-style: italic;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-date {
  display: block;
  color: #9b9b9b;
  font-size: 13px;
  font-size: 0.8125rem;
  font-style: italic;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-detail .entry-summary {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .post-content {
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.desktop-navigation #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item .post-list .follow-me {
  margin-top: 20px;
  display: block;
}

/* Mobile Navigation */
button.menu-toggle {
  display: none;
  border: none;
  background: transparent !important;
  padding: 10px 10px;
  color: white;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  font-size: 1em;
}

@media screen and (min-width: 991px) {
  button.menu-toggle {
    display: none !important;
  }
}

@media screen and (max-width: 990px) {
  button.menu-toggle {
    display: block;
  }
}

/* Mobile Accordion Menu style */
.mobile-navigation {
  clear: both;
  display: none;
  z-index: 9;
  padding-bottom: 30px;
}

@media screen and (min-width: 991px) {
  .mobile-navigation {
    display: none !important;
  }
}

.mobile-navigation .menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
  background: white;
}

.mobile-navigation .menu .menu-item, .mobile-navigation .menu .page_item {
  position: relative;
  border-bottom: 1px solid #9b9b9b;
}

.mobile-navigation .menu .menu-item a, .mobile-navigation .menu .page_item a {
  display: block;
  color: inherit;
  padding: 15px 20px;
  line-height: normal;
}

.mobile-navigation .menu .menu-item a:hover, .mobile-navigation .menu .page_item a:hover {
  color: #4db2ec;
}

.mobile-navigation .menu .menu-item.menu-item-has-children, .mobile-navigation .menu .page_item.menu-item-has-children {
  position: relative;
}

.mobile-navigation .menu .menu-item.menu-item-has-children button, .mobile-navigation .menu .page_item.menu-item-has-children button {
  background: white !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  padding: 15px 25px 15px 20px;
  text-align: center;
  line-height: 1;
  border-left: 1px solid #9b9b9b;
  cursor: pointer;
  color: #333 !important;
  font-size: 16px;
  font-size: 1em;
}

.mobile-navigation .menu .menu-item.current-menu-item a, .mobile-navigation .menu .page_item.current-menu-item a {
  color: #4db2ec;
}

.mobile-navigation .menu .menu-item:last-child, .mobile-navigation .menu .page_item:last-child {
  border-bottom: none;
}

.mobile-navigation .sub-menu {
  list-style: none;
  padding-left: 0;
  position: relative;
  background: rgba(35, 43, 57, 0.1);
  display: none;
  border-top: 1px solid #9b9b9b;
}

.secondary-navigation ul {
  list-style: none;
}

.secondary-navigation ul li {
  display: inline-block;
}

.secondary-navigation ul li a {
  display: inline-block;
  padding: 10px 10px 10px 0;
  color: #444;
  text-indent: -1px;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875em;
}

.news-ticker {
  overflow: hidden;
}

.news-ticker .ticker-title {
  display: inline-block;
  vertical-align: middle;
}

.news-ticker .ticker-title {
  white-space: nowrap;
  padding: 10px 20px 10px 0;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875em;
}

.news-ticker .ticker-title:after {
  content: " ";
  width: 11px;
  height: 10px;
  display: inline-block;
  margin-left: 20px;
  background: url(../img/garing.png) no-repeat;
  position: relative;
}

.news-ticker ul {
  *zoom: 1;
  list-style: none;
  margin: 0 30px 0 0;
}

.news-ticker ul:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.news-ticker ul li a {
  padding: 10px 0;
  display: block;
  color: #444;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}

.news-ticker ul li a:hover {
  color: #4db2ec;
}

#ticker {
  height: 40px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

#prev-ticker, #next-ticker {
  -webkit-transition: .3s ease;
          transition: .3s ease;
  cursor: pointer;
}

#prev-ticker:hover, #next-ticker:hover {
  color: #4db2ec;
}

.news-ticker-thumbnail {
  background: white;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.news-ticker-thumbnail .container {
  padding: 0;
}

@media screen and (max-width: 990px) {
  .news-ticker-thumbnail .col-md-10 {
    margin-top: -1px;
  }
}

.news-ticker-thumbnail .ticker-title {
  display: inline-block;
  margin-top: 55px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
}

@media screen and (max-width: 990px) {
  .news-ticker-thumbnail .ticker-title {
    position: absolute;
    margin: 0;
    z-index: 9;
    background: white;
    padding: 3px 10px;
  }
  .news-ticker-thumbnail .ticker-title:first-letter {
    color: #4db2ec;
  }
}

.news-ticker-thumbnail #ticker-carousel {
  *zoom: 1;
  position: relative;
}

.news-ticker-thumbnail #ticker-carousel:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.news-ticker-thumbnail .news-item {
  height: 250px;
  width: 20%;
  float: left;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.news-ticker-thumbnail .news-item:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.news-ticker-thumbnail .news-item:hover:before {
  background: rgba(0, 0, 0, 0.3);
}

.news-ticker-thumbnail .owl-item .news-item {
  width: 100%;
}

.news-ticker-thumbnail .news-detail {
  left: 0;
  padding: 20px;
  margin: auto;
  text-align: center;
}

.news-ticker-thumbnail .news-detail .category a {
  padding: 3px 5px;
  border-radius: 3px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.8125em;
}

.news-ticker-thumbnail .news-detail .news-title {
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.news-ticker-thumbnail .news-detail .news-title a {
  color: white;
}

.news-ticker-thumbnail .news-detail .news-title a:hover {
  color: #4db2ec;
}

.news-ticker-thumbnail .news-detail .date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-size: 0.8125em;
}

.news-ticker-thumbnail:hover .owl-prev, .news-ticker-thumbnail:hover .owl-next {
  opacity: 1;
}

.news-ticker-thumbnail .owl-prev, .news-ticker-thumbnail .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  width: 50px;
  text-align: center;
  padding: 100px 10px 0;
  font-size: 48px;
  font-size: 3em;
  color: #393939;
  line-height: normal;
  background-color: rgba(255, 255, 255, 0.8);
}

.news-ticker-thumbnail .owl-prev {
  left: 0;
}

.news-ticker-thumbnail .owl-next {
  right: 0;
}

.breadcrumbs {
  margin-bottom: 10px;
}

.breadcrumbs .container {
  border-bottom: 1px solid #eaeaea;
}

.breadcrumbs a, .breadcrumbs span {
  display: inline-block;
  padding: 10px 20px 10px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: normal;
  vertical-align: middle;
}

.breadcrumbs .home {
  font-size: 18px;
  font-size: 1.125em;
  position: relative;
  margin-right: 10px;
}

.breadcrumbs .home:after {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.breadcrumbs a {
  position: relative;
  display: inline-block;
}

.breadcrumbs a:after {
  content: " ";
  width: 11px;
  height: 10px;
  display: inline-block;
  margin-left: 20px;
  background: url(../img/garing.png) no-repeat;
  position: absolute;
  top: 15px;
}

.search-input {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  background: -webkit-linear-gradient(white, white 25%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0));
  background: linear-gradient(white, white 25%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0));
  z-index: 999999;
  display: none;
  padding-top: 50px;
}

.admin-bar .search-input {
  top: 32px;
}

.search-input .container {
  position: relative;
  height: 100%;
}

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

.search-input form input {
  width: 100%;
  padding: 20px 100px 20px 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 3px solid #393939;
  font-size: 26px;
  font-size: 1.625em;
}

.search-input form button.close-search {
  position: absolute;
  right: 10px;
  top: 20px;
  background: none !important;
  outline: none;
  color: #444;
  font-size: 26px;
  font-size: 1.625em;
}

.search-input form button.close-search:hover {
  color: #4db2ec !important;
}

.sticky-header {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 9999;
  background: #232323;
  top: -100px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.sticky-header.sticky {
  top: 0;
}

.admin-bar .sticky-header.sticky {
  top: 32px;
}

.sticky-header .sticky-branding, .sticky-header .sticky-menu {
  float: left;
}

.sticky-header .sticky-branding {
  margin-right: 30px;
  padding: 5px 0;
}

.sticky-header .site-title, .sticky-header .site-title a {
  color: white;
  margin: 0;
  line-height: normal;
  text-transform: uppercase;
}

.sticky-header .menu .menu-item a {
  font-size: 14px;
  padding: 15px 10px;
}

.sticky-header .sticky-search-toggle {
  width: 50px;
  text-align: center;
  outline: none;
  padding: 18px 5px;
}

.sticky-header .sticky-search {
  position: relative;
  float: right;
}

.sticky-header .sticky-search form {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-top: 2px solid #4db2ec;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transition: .2s ease;
          transition: .2s ease;
  visibility: hidden;
}

.sticky-header .sticky-search form input {
  padding: 10px 20px;
  width: 300px;
}

.sticky-header .sticky-search.active .fa-search:before {
  content: "\f00d";
}

.sticky-header .sticky-search.active form {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}

.header-slider {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: #333;
  opacity: 0;
}

.header-slider .slides {
  *zoom: 1;
  list-style: none;
}

.header-slider .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.header-slider .slides li {
  float: left;
  margin-right: -100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background-color: #333;
  background-size: cover;
}

.header-slider .slides li:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
}

.header-slider[data-animation="slide"] .slides {
  width: 2000%;
}

.header-slider[data-animation="slide"] .slides li {
  float: left;
  margin-right: 0;
  width: 1200px;
}

.header-slider .slider-content {
  text-align: center;
  padding-top: 350px;
  padding-bottom: 100px;
}

.header-slider .category, .header-slider .slide-title, .header-slider .slide-meta, .header-slider .button, .header-slider input[type="submit"], .header-slider button, .header-slider input[type="reset"], .header-slider .woocommerce #content input.button, .woocommerce #content .header-slider input.button,
.header-slider .woocommerce #respond input#submit, .woocommerce #respond .header-slider input#submit,
.header-slider .woocommerce a.button, .woocommerce .header-slider a.button,
.header-slider .woocommerce button.button, .woocommerce .header-slider button.button,
.header-slider .woocommerce input.button, .woocommerce .header-slider input.button,
.header-slider .woocommerce-page #content input.button, .woocommerce-page #content .header-slider input.button,
.header-slider .woocommerce-page #respond input#submit, .woocommerce-page #respond .header-slider input#submit,
.header-slider .woocommerce-page a.button, .woocommerce-page .header-slider a.button,
.header-slider .woocommerce-page button.button, .woocommerce-page .header-slider button.button,
.header-slider .woocommerce-page input.button, .woocommerce-page .header-slider input.button,
.header-slider .widget_price_filter button.button, .widget_price_filter .header-slider button.button {
  -webkit-transition: .3s ease;
          transition: .3s ease;
  opacity: 0;
}

.header-slider .flex-active-slide .category, .header-slider .flex-active-slide .slide-title, .header-slider .flex-active-slide .slide-meta, .header-slider .flex-active-slide .button, .header-slider .flex-active-slide input[type="submit"], .header-slider .flex-active-slide button, .header-slider .flex-active-slide input[type="reset"], .header-slider .flex-active-slide .woocommerce #content input.button, .woocommerce #content .header-slider .flex-active-slide input.button,
.header-slider .flex-active-slide .woocommerce #respond input#submit, .woocommerce #respond .header-slider .flex-active-slide input#submit,
.header-slider .flex-active-slide .woocommerce input.button.alt, .woocommerce .header-slider .flex-active-slide input.button.alt,
.header-slider .flex-active-slide .woocommerce-page #content input.button, .woocommerce-page #content .header-slider .flex-active-slide input.button,
.header-slider .flex-active-slide .woocommerce-page #respond input#submit, .woocommerce-page #respond .header-slider .flex-active-slide input#submit,
.header-slider .flex-active-slide .woocommerce-page input.button.alt, .woocommerce-page .header-slider .flex-active-slide input.button.alt {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.header-slider .category {
  -webkit-transition-delay: .30s;
          transition-delay: .30s;
  -webkit-transform: translateX(300px);
      -ms-transform: translateX(300px);
          transform: translateX(300px);
}

.header-slider .category a {
  padding: 3px 10px;
  border-radius: 3px;
  color: white;
}

.header-slider .slide-title {
  font-size: 64px;
  font-size: 4em;
  letter-spacing: -2px;
  margin-bottom: 0;
  -webkit-transition-delay: .60s;
          transition-delay: .60s;
  -webkit-transform: translateX(300px);
      -ms-transform: translateX(300px);
          transform: translateX(300px);
}

@media screen and (max-width: 768px) {
  .header-slider .slide-title {
    font-size: 48px;
    font-size: 3em;
  }
}

@media screen and (max-width: 480px) {
  .header-slider .slide-title {
    font-size: 36px;
    font-size: 2.25em;
  }
}

.header-slider .slide-title a {
  color: white;
}

.header-slider .slide-meta {
  margin-bottom: 30px;
  -webkit-transition-delay: .80s;
          transition-delay: .80s;
  -webkit-transform: translateX(300px);
      -ms-transform: translateX(300px);
          transform: translateX(300px);
}

.header-slider .button, .header-slider input[type="submit"], .header-slider button, .header-slider input[type="reset"], .header-slider .woocommerce #content input.button, .woocommerce #content .header-slider input.button,
.header-slider .woocommerce #respond input#submit, .woocommerce #respond .header-slider input#submit,
.header-slider .woocommerce a.button, .woocommerce .header-slider a.button,
.header-slider .woocommerce button.button, .woocommerce .header-slider button.button,
.header-slider .woocommerce input.button, .woocommerce .header-slider input.button,
.header-slider .woocommerce-page #content input.button, .woocommerce-page #content .header-slider input.button,
.header-slider .woocommerce-page #respond input#submit, .woocommerce-page #respond .header-slider input#submit,
.header-slider .woocommerce-page a.button, .woocommerce-page .header-slider a.button,
.header-slider .woocommerce-page button.button, .woocommerce-page .header-slider button.button,
.header-slider .woocommerce-page input.button, .woocommerce-page .header-slider input.button,
.header-slider .widget_price_filter button.button, .widget_price_filter .header-slider button.button {
  padding: 10px 20px;
  border: 3px solid white;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transform: translateX(300px);
      -ms-transform: translateX(300px);
          transform: translateX(300px);
}

.header-slider .button:hover, .header-slider input[type="submit"]:hover, .header-slider button:hover, .header-slider input[type="reset"]:hover, .header-slider .woocommerce #content input.button:hover, .woocommerce #content .header-slider input.button:hover,
.header-slider .woocommerce #respond input#submit:hover, .woocommerce #respond .header-slider input#submit:hover,
.header-slider .woocommerce input.button.alt:hover, .woocommerce .header-slider input.button.alt:hover,
.header-slider .woocommerce-page #content input.button:hover, .woocommerce-page #content .header-slider input.button:hover,
.header-slider .woocommerce-page #respond input#submit:hover, .woocommerce-page #respond .header-slider input#submit:hover,
.header-slider .woocommerce-page input.button.alt:hover, .woocommerce-page .header-slider input.button.alt:hover {
  border-color: #4db2ec;
  color: #4db2ec !important;
}

.header-slider .flex-direction-nav {
  list-style: none;
}

.header-slider .flex-direction-nav .flex-prev,
.header-slider .flex-direction-nav .flex-next {
  width: 40px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
  font-size: 32px;
  text-align: center;
  color: #444;
  line-height: 1.7;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.header-slider .flex-direction-nav .flex-prev:hover,
.header-slider .flex-direction-nav .flex-next:hover {
  background: rgba(255, 255, 255, 0.9);
}

.header-slider .flex-direction-nav .flex-prev {
  left: 0;
}

.header-slider .flex-direction-nav .flex-next {
  right: 0;
}

.header-slider .flex-control-nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  list-style: none;
  text-align: center;
  z-index: 99;
}

.header-slider .flex-control-nav .thumb-item {
  display: inline-block;
  margin: 0 10px;
}

.header-slider .flex-control-nav .thumb-item a {
  width: 8px;
  height: 8px;
  cursor: pointer;
  display: block;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  -webkit-transition: 0.3s cubic-bezier(0.75, -0.3, 0.24, 1.49);
          transition: 0.3s cubic-bezier(0.75, -0.3, 0.24, 1.49);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
}

.header-slider .flex-control-nav .thumb-item a.flex-active {
  background: #4db2ec;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}

/*======================================*
 * 5. Posts and Page
 * ======================================*/
/*======================================*
	 * 5.1 Posts Style
	 * ======================================*/
.main-content {
  margin-top: 30px;
}

.sidebar-left .content-container {
  float: right;
}

@media screen and (max-width: 990px) {
  .sidebar-left .content-container {
    float: none;
  }
}

.content-container.fullwidth .inner-post {
  padding: 30px;
}

@media screen and (max-width: 990px) {
  .content-container.fullwidth .inner-post {
    padding: 30px;
  }
}

@media screen and (max-width: 640px) {
  .content-container.fullwidth .inner-post {
    padding: 20px;
  }
  .content-container.fullwidth .inner-post .entry-content {
    padding: 0;
  }
}

.entry-cover {
  margin: -30px -30px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 50px;
  padding-top: 200px;
  position: relative;
  z-index: 1;
  background-size: cover;
}

.boxed .entry-cover {
  margin: 0 -30px 30px;
  padding-left: 0;
  padding-right: 0;
}

.entry-cover .cover-content {
  *zoom: 1;
  color: white;
}

.entry-cover .cover-content:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

@media screen and (max-width: 480px) {
  .entry-cover .cover-content {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}

.entry-cover .cover-content .categories a {
  color: white;
  font-weight: 300;
}

.entry-cover .cover-content .categories a:hover {
  color: #4db2ec;
}

.entry-cover .cover-content .entry-title {
  color: white;
  font-size: 48px;
  font-size: 3em;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 10px;
  word-break: break-word;
}

.entry-cover:after {
  content: " ";
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.5));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.masonry-layout {
  *zoom: 1;
  margin: 0 -15px;
}

.masonry-layout:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

@media screen and (max-width: 990px) {
  .masonry-layout {
    margin: 0;
  }
}

.category-box, .author-posts {
  margin-bottom: 30px;
  padding: 30px;
  *zoom: 1;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border-left: 10px solid #4db2ec;
}

.category-box:after, .author-posts:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.category-box h2, .author-posts h2 {
  color: #9b9b9b;
  font-size: 24px;
  font-size: 1.5em;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 300;
  margin-top: 0;
  line-height: 1;
}

.category-box h2 strong, .author-posts h2 strong {
  color: #393939;
  font-weight: 700;
  display: block;
  letter-spacing: -2px;
  font-size: 48px;
  font-size: 3rem;
}

.category-box .author-image, .author-posts .author-image {
  margin-right: 20px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  width: 70px;
  height: 70px;
}

.category-box .author-image img, .author-posts .author-image img {
  max-width: 100%;
  width: 100%;
}

.category-box .detail, .author-posts .detail {
  display: table;
}

.post, .type-page {
  background: white;
  padding: 30px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  /* Featured image, status-media, tile-layout and media-wrap */
  /*===============================*
	 * Specific Post Format Styling
	 * ===============================*/
  /* Sticky Post */
  /* Format Chat */
  /* Format Quote */
}

.masonry-layout .post, .masonry-layout .type-page {
  width: 50%;
  float: left;
  box-shadow: none;
  background: transparent;
  padding: 0 15px 15px;
  margin-bottom: 15px;
}

.masonry-layout .post .inner-post, .masonry-layout .type-page .inner-post {
  padding: 30px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.masonry-layout .post.sticky, .masonry-layout .type-page.sticky {
  border: none;
}

.masonry-layout .post.sticky .inner-post, .masonry-layout .type-page.sticky .inner-post {
  border: 3px solid #4db2ec;
}

@media screen and (max-width: 990px) {
  .masonry-layout .post, .masonry-layout .type-page {
    width: 100%;
  }
}

.masonry-layout .post .tile-layout, .masonry-layout .type-page .tile-layout {
  margin: 0 0 30px;
}

.post ul.social-share, .type-page ul.social-share {
  position: absolute;
  right: 100%;
  margin-right: 20px;
  list-style: none;
}

.boxed .post ul.social-share, .boxed .type-page ul.social-share {
  margin-right: 30px;
}

.sidebar-left .post ul.social-share, .sidebar-left .type-page ul.social-share {
  right: auto;
  left: 100%;
  margin-left: 20px;
  margin-right: 0;
}

.boxed.sidebar-left .post ul.social-share, .boxed.sidebar-left .type-page ul.social-share {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .post ul.social-share, .type-page ul.social-share {
    display: none;
  }
}

.post ul.social-share li, .type-page ul.social-share li {
  border: 1px solid #dedede;
  border-bottom-width: 0;
  background: white;
}

.post ul.social-share li:last-child, .type-page ul.social-share li:last-child {
  border-bottom-width: 1px;
}

.post ul.social-share li a, .type-page ul.social-share li a {
  font-size: 24px;
  font-size: 1.5em;
  display: block;
  width: 48px;
  height: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.post ul.social-share li a:before, .type-page ul.social-share li a:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: .3s ease;
          transition: .3s ease;
  z-index: -1;
}

.post ul.social-share li a:hover, .type-page ul.social-share li a:hover {
  color: white !important;
}

.post ul.social-share li a:hover:before, .type-page ul.social-share li a:hover:before {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.post ul.social-share li a.facebook, .type-page ul.social-share li a.facebook {
  color: #3B5998;
}

.post ul.social-share li a.facebook:before, .type-page ul.social-share li a.facebook:before {
  background-color: #3B5998;
}

.post ul.social-share li a.twitter, .type-page ul.social-share li a.twitter {
  color: #55ACEE;
}

.post ul.social-share li a.twitter:before, .type-page ul.social-share li a.twitter:before {
  background-color: #55ACEE;
}

.post ul.social-share li a.google-plus, .type-page ul.social-share li a.google-plus {
  color: #E02F2F;
}

.post ul.social-share li a.google-plus:before, .type-page ul.social-share li a.google-plus:before {
  background-color: #E02F2F;
}

.post ul.social-share li a.pinterest, .type-page ul.social-share li a.pinterest {
  color: #cc2127;
}

.post ul.social-share li a.pinterest:before, .type-page ul.social-share li a.pinterest:before {
  background-color: #cc2127;
}

.post .featured-image, .type-page .featured-image {
  margin-bottom: 20px;
}

.post .featured-image img, .type-page .featured-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.post .tile-layout, .type-page .tile-layout {
  margin: 0 0 20px;
}

.post .tile-layout .tiles img, .type-page .tile-layout .tiles img {
  display: none;
}

.post .tile-layout .tiles, .type-page .tile-layout .tiles {
  margin: 0 auto;
}

.post .media-wrap, .type-page .media-wrap {
  margin-bottom: 20px;
}

.post .media-wrap iframe, .type-page .media-wrap iframe {
  width: 100%;
  max-width: 100%;
  max-height: 480px;
}

.post .media-wrap embed, .type-page .media-wrap embed {
  max-width: 100%;
  max-height: 480px;
}

.post .status-media, .type-page .status-media {
  padding: 100px;
  text-align: center;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  margin: -30px;
}

.post .status-media:after, .type-page .status-media:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.6));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.post .status-media .entry-title, .type-page .status-media .entry-title {
  color: white;
  font-weight: 300;
  word-break: break-word;
  font-size: 32px;
  font-size: 2em;
}

@media screen and (max-width: 640px) {
  .post .status-media, .type-page .status-media {
    padding: 30px;
  }
}

.post .status-media iframe, .type-page .status-media iframe {
  display: inline-block !important;
}

.post .post-data, .type-page .post-data {
  *zoom: 1;
}

.post .post-data:after, .type-page .post-data:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.post .entry-summary dl, .type-page .entry-summary dl {
  width: 100% !important;
}

.post .entry-summary p, .type-page .entry-summary p {
  word-break: break-word;
}

.post .entry-summary img, .type-page .entry-summary img {
  max-width: 100% !important;
  height: auto !important;
}

.post .entry-summary .article-paging, .type-page .entry-summary .article-paging {
  display: none;
}

.post .category a, .type-page .category a {
  padding: 1px 10px;
  border-radius: 2px;
  color: white;
  background-color: #4db2ec;
  font-size: 14px;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.7;
  display: inline-block;
}

.post .entry-title, .type-page .entry-title {
  font-size: 36px;
  font-size: 2.25em;
  line-height: normal;
  font-weight: 700;
  letter-spacing: -1px;
  word-break: break-word;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  margin: 10px 0 20px;
}

.post .entry-title a, .type-page .entry-title a {
  color: #393939;
}

.post .entry-title:hover a, .type-page .entry-title:hover a {
  color: #4db2ec;
}

.post .entry-summary, .type-page .entry-summary {
  margin-bottom: 30px;
}

.post .entry-detail .more-link, .type-page .entry-detail .more-link {
  border: 2px solid #9b9b9b;
  padding: 5px 20px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  color: #444;
  font-size: 14px;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  display: inline-block;
  position: relative;
  z-index: 1;
  float: right;
}

.post .entry-detail .more-link:hover, .type-page .entry-detail .more-link:hover {
  border-color: #4db2ec;
  color: white;
  background-color: #4db2ec;
}

.post .entry-detail .more-link:after, .type-page .entry-detail .more-link:after {
  content: "\f105";
  font-family: "FontAwesome";
  padding-left: 10px;
}

.post.single .entry-detail .entry-title, .type-page.single .entry-detail .entry-title {
  font-size: 36px;
  font-size: 2.25em;
}

.post.sticky, .type-page.sticky {
  border: 3px solid #4db2ec;
}

.post.sticky.has-post-thumbnail .post-data, .type-page.sticky.has-post-thumbnail .post-data {
  background-color: white;
  position: relative;
  z-index: 1;
}

.post.sticky.has-post-thumbnail .entry-detail, .type-page.sticky.has-post-thumbnail .entry-detail {
  padding: 0;
}

.post .entry-chat, .type-page .entry-chat {
  list-style: none;
  margin-bottom: 30px;
}

.post .entry-chat strong, .type-page .entry-chat strong {
  color: #393939;
}

.post .entry-chat li, .type-page .entry-chat li {
  padding: 10px 0;
  border-bottom: 1px solid #9b9b9b;
}

.post .entry-chat li:nth-child(even), .type-page .entry-chat li:nth-child(even) {
  border-color: #4db2ec;
}

.post .entry-chat li:last-child, .type-page .entry-chat li:last-child {
  margin-bottom: 30px;
}

.post.format-quote blockquote, .type-page.format-quote blockquote {
  padding-left: 80px;
  margin: 0 0 30px;
  background: url(../img/quote.png) no-repeat 0 0;
  font-size: 36px;
  font-size: 2.25em;
  font-family: "Playfair Display", "Merriweather", serif;
  font-weight: 700;
  line-height: 1.3;
  color: #393939;
}

.post.format-quote blockquote cite, .type-page.format-quote blockquote cite {
  display: block;
  padding-top: 20px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  position: relative;
  font-weight: 700;
  margin-top: 20px;
}

.post.format-quote blockquote cite:before, .type-page.format-quote blockquote cite:before {
  content: " ";
  width: 40px;
  height: 5px;
  background: #4db2ec;
  position: absolute;
  top: 0;
  left: 0;
}

.post.format-quote blockquote p, .type-page.format-quote blockquote p {
  display: block;
}

.post.format-quote p, .type-page.format-quote p {
  display: none;
}

.post.format-link .link-wrapper, .type-page.format-link .link-wrapper {
  padding: 100px 50px;
  text-align: center;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  margin: -30px;
}

.post.format-link .link-wrapper:after, .type-page.format-link .link-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  background: -webkit-linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.7));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.post.format-link .link-wrapper i.simple-icon-link, .type-page.format-link .link-wrapper i.simple-icon-link {
  font-size: 24px;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  line-height: 2;
  display: inline-block;
  margin-bottom: 20px;
}

.post.format-link .link-wrapper .entry-title, .type-page.format-link .link-wrapper .entry-title {
  font-weight: 300;
}

.post.format-link .link-wrapper .entry-title a, .type-page.format-link .link-wrapper .entry-title a {
  color: white;
}

.post.format-aside .entry-detail aside, .post.format-aside .entry-content aside, .type-page.format-aside .entry-detail aside, .type-page.format-aside .entry-content aside {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 4px solid #4db2ec;
}

.pagination {
  clear: both;
  text-align: center;
  *zoom: 1;
  margin-bottom: 30px;
}

.pagination:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.pagination a, .pagination span {
  padding: 10px 20px;
  border: 2px solid #9b9b9b;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  color: #444;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: bottom;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  background-color: white;
}

.pagination a:hover, .pagination a.current, .pagination span:hover, .pagination span.current {
  border-color: #4db2ec;
  color: white;
  background-color: #4db2ec;
}

.pagination .prev {
  float: left;
}

.pagination .next {
  float: right;
}

.single .inner-post, .page .inner-post {
  *zoom: 1;
}

.single .inner-post:after, .page .inner-post:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.single .inner-post .col-md-9, .page .inner-post .col-md-9 {
  padding-left: 30px;
}

.single.has-cover-image .entry-content, .page.has-cover-image .entry-content {
  padding-top: 0;
}

.single .post-meta, .page .post-meta {
  padding: 30px 0 30px 30px;
  *zoom: 1;
}

.single .post-meta:after, .page .post-meta:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.single .post-meta .entry-meta, .page .post-meta .entry-meta {
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 990px) {
  .single .post-meta, .page .post-meta {
    padding: 30px;
  }
  .single .post-meta .entry-meta, .page .post-meta .entry-meta {
    text-align: left;
    width: 50%;
    float: left;
    padding-right: 30px;
  }
}

@media screen and (max-width: 990px) and (max-width: 480px) {
  .single .post-meta .entry-meta, .page .post-meta .entry-meta {
    float: none;
    width: 100%;
    padding: 0;
  }
}

.single .post-meta .datePublished, .page .post-meta .datePublished {
  color: #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  .single .post-meta .datePublished, .page .post-meta .datePublished {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .single .post-meta .datePublished, .page .post-meta .datePublished {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

.single .post-meta .datePublished .date, .page .post-meta .datePublished .date {
  color: #444;
  font-size: 24px;
  font-size: 1.5em;
}

.single .post-meta .comment-count, .page .post-meta .comment-count {
  border-bottom: 1px solid #9b9b9b;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

@media screen and (max-width: 640px) {
  .single .post-meta .comment-count, .page .post-meta .comment-count {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .single .post-meta .comment-count, .page .post-meta .comment-count {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

.single .post-meta .comment-count a, .page .post-meta .comment-count a {
  color: #9b9b9b;
}

.single .post-meta .comment-count a i, .page .post-meta .comment-count a i {
  color: #444;
  font-size: 18px;
  font-size: 1.125em;
  vertical-align: middle;
  margin-right: 5px;
}

.single .post-meta .widget-content, .page .post-meta .widget-content {
  padding: 0;
}

.single ul.social-share, .page ul.social-share {
  top: 30px;
}

.single .entry-content, .page .entry-content {
  padding: 30px 0;
  word-break: break-work;
  clear: both;
}

.single .entry-content .leading, .page .entry-content .leading {
  font-size: 22px;
  font-size: 1.375em;
  color: #444;
  font-weight: 300;
  line-height: 1.5;
}

.single .entry-content h1, .single .entry-content h2, .single .entry-content h3, .single .entry-content h4, .single .entry-content h5, .single .entry-content h6, .page .entry-content h1, .page .entry-content h2, .page .entry-content h3, .page .entry-content h4, .page .entry-content h5, .page .entry-content h6 {
  margin-top: 20px;
  letter-spacing: -1px;
}

.single .entry-content h1, .page .entry-content h1 {
  font-size: 36px;
  font-size: 2.25em;
}

.single .entry-content h2, .page .entry-content h2 {
  font-size: 32px;
  font-size: 2em;
}

.single .entry-content h3, .page .entry-content h3 {
  font-size: 28px;
  font-size: 1.75em;
}

.single .entry-content h4, .page .entry-content h4 {
  font-size: 26px;
  font-size: 1.625em;
}

.single .entry-content h5, .page .entry-content h5 {
  font-size: 24px;
  font-size: 1.5em;
}

.single .entry-content h6, .page .entry-content h6 {
  font-size: 20px;
  font-size: 1.25em;
}

.single .entry-content a, .page .entry-content a {
  color: #4db2ec;
  text-decoration: underline;
}

.single .entry-content img, .page .entry-content img {
  max-width: 100%;
  height: auto !important;
}

.single .entry-content table, .page .entry-content table {
  margin-bottom: 30px;
}

.single .entry-content table td, .single .entry-content table th, .page .entry-content table td, .page .entry-content table th {
  padding: 10px;
  border: 1px solid #eaeaea;
}

.single .entry-content ul, .single .entry-content ol, .page .entry-content ul, .page .entry-content ol {
  margin: 10px 0 10px 20px;
}

.single .entry-content pre, .page .entry-content pre {
  background: #eaeaea;
  padding: 20px;
}

.single .entry-content blockquote, .single .entry-content q, .page .entry-content blockquote, .page .entry-content q {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
  line-height: 1.5;
}

.single .entry-content blockquote, .page .entry-content blockquote {
  font-size: 28px;
  font-size: 1.75em;
  color: #444;
  margin: 1.7em 0;
  padding-left: 60px;
  position: relative;
  font-family: "Playfair Display", "Merriweather", serif;
  font-style: normal;
  font-weight: 700;
}

.single .entry-content blockquote:before, .page .entry-content blockquote:before {
  content: " ";
  width: 39px;
  height: 35px;
  background: url(../img/quote.png) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.single .entry-content blockquote.alignleft, .single .entry-content blockquote.alignright, .page .entry-content blockquote.alignleft, .page .entry-content blockquote.alignright {
  width: 40%;
  padding: 70px 20px 20px;
}

.single .entry-content blockquote.alignleft:before, .single .entry-content blockquote.alignright:before, .page .entry-content blockquote.alignleft:before, .page .entry-content blockquote.alignright:before {
  right: 0;
  margin: auto;
}

.single .entry-content .article-paging, .page .entry-content .article-paging {
  display: block;
  color: #9b9b9b;
  margin-top: 30px;
  padding-top: 10px;
  position: relative;
  border-top: 5px solid #eaeaea;
}

.single .entry-content .article-paging:before, .page .entry-content .article-paging:before {
  content: " ";
  top: -5px;
  height: 5px;
  width: 30px;
  position: absolute;
  background-color: #4db2ec;
}

.single .entry-content .article-paging strong, .page .entry-content .article-paging strong {
  color: #393939;
  background-color: #FFF;
  display: inline-block;
}

.single .entry-content .article-paging a, .page .entry-content .article-paging a {
  text-decoration: none;
}

.single .entry-content .entry-taxonomy, .page .entry-content .entry-taxonomy {
  padding: 30px 0;
  line-height: normal;
}

.single .entry-content .entry-taxonomy span, .page .entry-content .entry-taxonomy span {
  display: inline-block;
  vertical-align: middle;
}

.single .entry-content .entry-taxonomy i, .page .entry-content .entry-taxonomy i {
  margin-right: 10px;
  color: #4db2ec;
  font-size: 16px;
  font-size: 1em;
  line-height: normal;
  vertical-align: middle;
}

.single .entry-content .entry-taxonomy a, .page .entry-content .entry-taxonomy a {
  display: inline-block;
  padding: 2px 10px;
  height: 24px;
  line-height: normal;
  margin: 0 15px 5px 0;
  background-color: #4db2ec;
  color: white;
  font-size: .9em;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  position: relative;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  text-decoration: none;
}

.single .entry-content .entry-taxonomy a:before, .page .entry-content .entry-taxonomy a:before {
  content: " ";
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent transparent #4db2ec;
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.single .entry-content .entry-taxonomy a:after, .page .entry-content .entry-taxonomy a:after {
  content: " ";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.single .entry-content .entry-taxonomy a:hover, .page .entry-content .entry-taxonomy a:hover {
  background-color: #1f9ee7;
}

.single .entry-content .entry-taxonomy a:hover:before, .page .entry-content .entry-taxonomy a:hover:before {
  border-color: transparent transparent transparent #1f9ee7;
}

.single .entry-content .entry-taxonomy .categories, .page .entry-content .entry-taxonomy .categories {
  margin-right: 20px;
}

.single .next-prev-post, .page .next-prev-post {
  *zoom: 1;
  border-top: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding-top: 30px;
}

.single .next-prev-post:after, .page .next-prev-post:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.single .next-prev-post .fa, .page .next-prev-post .fa {
  color: #4db2ec;
  font-size: 18px;
  font-size: 1.125em;
  margin-bottom: 20px;
  vertical-align: bottom;
}

.single .next-prev-post .previous-post, .single .next-prev-post .next-post, .page .next-prev-post .previous-post, .page .next-prev-post .next-post {
  float: left;
  width: 50%;
  text-align: center;
  padding: 20px;
}

.single .next-prev-post a, .page .next-prev-post a {
  text-decoration: none;
}

.single .next-prev-post .category a, .single .next-prev-post .date, .page .next-prev-post .category a, .page .next-prev-post .date {
  color: #9b9b9b;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
  font-size: 13px;
  font-size: 0.8125em;
}

.single .next-prev-post .entry-title, .page .next-prev-post .entry-title {
  margin-bottom: 0;
  word-break: break-word;
  font-size: 24px;
  font-size: 1.5em;
}

.single .next-prev-post .entry-title a, .page .next-prev-post .entry-title a {
  color: #393939;
}

.entry-meta {
  padding: 0 0 10px;
}

.entry-meta .datePublished, .entry-meta .comment-count, .entry-meta .category {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.entry-meta .datePublished a, .entry-meta .comment-count a, .entry-meta .category a {
  color: #9b9b9b;
}

.entry-meta .datePublished i, .entry-meta .comment-count i, .entry-meta .category i {
  color: #444;
  font-size: 18px;
  font-size: 1.125em;
  vertical-align: middle;
  margin-right: 5px;
}

.entry-meta .datePublished {
  color: #9b9b9b;
}

@media screen and (max-width: 640px) {
  .entry-meta .datePublished {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .entry-meta .datePublished {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .entry-meta .comment-count {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .entry-meta .comment-count {
    display: inline-block;
    border-bottom: none;
    margin-right: 10px;
  }
}

.author-post {
  border-bottom: none;
  position: relative;
  padding: 0 0 0 50px;
  text-align: left;
  font-size: 14px;
  font-size: 0.875em;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  float: left;
}

.author-post .author-image {
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0px;
  width: 40px;
  height: 40px;
}

.author-post .author-image img {
  width: 40px;
  height: 40px;
}

.author-post a, .author-post .date-span {
  line-height: normal;
}

.author-post a {
  font-weight: 700;
}

.author-post .date-span {
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #9b9b9b;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.author-box {
  border-top: 1px solid #eaeaea;
  padding: 30px 0 30px 90px;
  *zoom: 1;
  position: relative;
}

.author-box:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.author-box .author-image {
  border-radius: 50%;
  overflow: hidden;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 30px;
}

.author-box .author-image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.author-box a.fn {
  font-weight: 700;
  color: #393939;
  text-decoration: none;
}

.author-box p {
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
}

.author-box .social-links {
  margin-top: 10px;
  text-align: left;
}

.author-box .social-links a {
  float: none;
  display: inline-block !important;
}

.related {
  margin-bottom: 50px;
}

@media screen and (max-width: 990px) {
  .related {
    padding-left: 30px;
  }
}

.related .section-title {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 5px solid #eaeaea;
  font-size: 18px;
  font-size: 1.125em;
  letter-spacing: -1px;
  position: relative;
  color: #393939;
}

.related .section-title:after {
  content: " ";
  width: 30px;
  height: 5px;
  background-color: #4db2ec;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.related .post-list {
  *zoom: 1;
  list-style: none;
}

.related .post-list:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.related .post-list li {
  width: 50%;
  float: left;
  padding-right: 30px;
  border-bottom: none;
}

@media screen and (max-width: 640px) {
  .related .post-list li {
    width: 100%;
    margin-bottom: 30px;
    float: none;
    clear: both;
  }
}

.related .post-list li .post-image {
  float: left;
  margin-right: 20px;
}

.related .post-list li .post-image img {
  width: 80px !important;
  height: 80px !important;
}

.related .post-list li .post-detail {
  display: table;
  text-align: left;
  line-height: 1;
}

.related .post-list li .category a, .related .post-list li .date, .related .post-list li .comment-count {
  color: #9b9b9b;
  font-size: 13px;
  font-size: 0.8125rem;
}

.related .post-list li .category {
  color: #9b9b9b;
}

.related .post-list li .date {
  margin-right: 10px;
}

.related .post-list li .entry-title {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875em;
}

.related .post-list li .entry-title a {
  color: #393939;
}

.review-box-score {
  background: #f0f0f0;
  padding: 30px;
  margin: 50px 0;
}

.review-box-score .score-title {
  text-transform: uppercase;
  color: #393939;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 5px solid #9b9b9b;
}

.review-box-score .score-title:after {
  content: " ";
  width: 30px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #4db2ec;
}

.review-box-score .score-category {
  list-style: none;
}

.review-box-score .score-category .category-title {
  margin-bottom: 0;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 300;
}

.review-box-score .score-category.progress li {
  margin-bottom: 20px;
}

.review-box-score .score-category.progress .star-rating {
  display: none;
}

.review-box-score .score-category.progress .category-title, .review-box-score .score-category.progress .score {
  display: inline-block;
}

.review-box-score .score-category.progress .category-title {
  margin-right: 20px;
}

.review-box-score .score-category.progress .progress-bar {
  margin-top: 5px;
}

.review-box-score .score-category.star li {
  *zoom: 1;
  padding: 10px 0;
  border-bottom: 1px solid #4db2ec;
}

.review-box-score .score-category.star li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.review-box-score .score-category.star .progress-bar {
  display: none;
}

.review-box-score .score-category.star .score {
  display: none;
}

.review-box-score .score-category.star .category-title {
  float: left;
}

.review-box-score .score-category.star .star-rating {
  float: right;
}

.review-box-score .progress-bar {
  background: white;
  width: 100%;
  height: 10px;
  position: relative;
}

.review-box-score .progress-bar .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #4db2ec;
}

.review-box-score .score-summary {
  margin-top: 30px;
  display: table;
}

@media screen and (max-width: 640px) {
  .review-box-score .score-summary {
    display: block;
  }
}

.review-box-score .score-summary .total-score, .review-box-score .score-summary .summary {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 640px) {
  .review-box-score .score-summary .total-score, .review-box-score .score-summary .summary {
    display: block;
    width: 100%;
  }
}

.review-box-score .score-summary .total-score {
  font-size: 48px;
  font-size: 3em;
  font-weight: 700;
  color: #4db2ec;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  padding-right: 20px;
}

/*======================================*
	 * 5.2 Page Style
	 * ======================================*/
body {
  -webkit-transition: .2s ease;
          transition: .2s ease;
}

#site-content {
  -webkit-transition: .2s ease;
          transition: .2s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 990px) {
  #site-content {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #site-content {
    padding: 0;
  }
}

body.boxed {
  background-color: #eaeaea;
}

body.boxed #site-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: table;
  table-layout: fixed;
  padding: 0 30px;
}

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

@media screen and (max-width: 990px) {
  .main-content .container {
    padding: 0 20px;
  }
}

.content .type-page, .content .page {
  background-color: white;
}

.content .type-page .entry-title, .content .page .entry-title {
  font-size: 36px;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: -2px;
}

.content .type-page .entry-detail, .content .page .entry-detail {
  display: table;
}

.content .type-page .featured-image, .content .page .featured-image {
  overflow: hidden;
}

.content .type-page .featured-image img, .content .page .featured-image img {
  max-width: 100%;
  width: 100%;
}

.content .type-page .wp-caption, .content .page .wp-caption {
  margin-right: 0;
}

.content .type-page .map, .content .page .map {
  min-height: 450px;
  margin-bottom: 50px;
}

.content .type-page .contact-form .contact-title, .content .page .contact-form .contact-title {
  text-transform: uppercase;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 5px solid #eaeaea;
  color: #9b9b9b;
  font-size: 12px;
  font-size: 0.75em;
  margin-top: 50px;
}

.content .type-page .contact-form .contact-title:after, .content .page .contact-form .contact-title:after {
  content: " ";
  position: absolute;
  width: 30px;
  height: 5px;
  background-color: #4db2ec;
  bottom: -5px;
  left: 0;
}

.content .type-page .contact-form input:not([type="submit"]), .content .type-page .contact-form select, .content .page .contact-form input:not([type="submit"]), .content .page .contact-form select {
  width: 300px;
  margin-bottom: 10px;
}

.content .type-page .contact-form textarea, .content .page .contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  min-height: 150px;
}

.content .type-page .contact-form input[type="submit"], .content .page .contact-form input[type="submit"] {
  background: none !important;
  color: #4db2ec;
  border: 2px solid #4db2ec;
}

.error404 .fourofour {
  font-size: 200px !important;
  text-align: center;
  color: #9b9b9b;
}

@media screen and (max-width: 768px) {
  .error404 .fourofour {
    font-size: 200px !important;
  }
}

.error404 .entry-content .widget.widget_search {
  margin-top: 50px;
  margin-bottom: 50px;
}

.error404 .entry-content .widget.widget_search .widget-content {
  padding: 0;
}

.error404 .entry-content .widget.widget_search input {
  width: 100%;
}

.error404 .entry-content .widget.widget_search button {
  padding: 5px 20px;
}

.error404 .entry-content .widget.widget_search button:after {
  content: "Search";
  font-size: 14px;
  font-size: 0.875rem;
}

.error404 .entry-content .widget.widget_search button i {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 990px) {
  .error404 .related {
    padding-left: 0;
  }
}

.error404 .related .category a {
  color: #9b9b9b;
}

.error404 .related .entry-title {
  font-size: 16px;
  font-size: 1em;
}

.error404 .related a {
  text-decoration: none;
}

.contact-detail .contact-phone, .contact-detail address .contact-address, .contact-detail .contact-tagline {
  padding-left: 40px;
  position: relative;
  display: block;
}

.contact-detail .contact-phone .fa, .contact-detail address .contact-address .fa, .contact-detail .contact-tagline .fa {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  font-size: 1.25em;
}

.contact-detail .contact-phone h4, .contact-detail address .contact-address h4, .contact-detail .contact-tagline h4 {
  margin-bottom: 10px;
}

.page.page-template-archive .entry-content .widget_categories ul,
.page.page-template-archive .entry-content .widget_archive ul,
.page.page-template-archive .entry-content .widget_recent_entries ul {
  margin: 0;
}

.page.page-template-archive .entry-content .widget_categories ul .children,
.page.page-template-archive .entry-content .widget_archive ul .children,
.page.page-template-archive .entry-content .widget_recent_entries ul .children {
  margin-top: 10px;
}

.page.page-template-archive .entry-content .widget_categories a,
.page.page-template-archive .entry-content .widget_archive a,
.page.page-template-archive .entry-content .widget_recent_entries a {
  text-decoration: none;
  color: #393939;
}

.content-container.fullwidth .post-detail {
  text-align: center;
  font-size: 24px;
  font-size: 1.5em;
}

.content-container.fullwidth .post-detail .entry-detail {
  display: block;
}

.search-no-results .content {
  margin-bottom: 30px;
}

.search-no-results .content .widget_search {
  padding: 30px 0;
}

.search-no-results .content .related {
  margin-bottom: 0;
}

/*======================================*
 * 6. Sidebar Style
 * ======================================*/
/*======================================*
	 * 6.1 Sidebar Layout Style
	 * ======================================*/
/*
 * Sidebar Styles
 */
@media screen and (max-width: 990px) {
  .sidebar-left .sidebar {
    clear: both;
  }
}

.sidebar .widget {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 640px) and (max-width: 990px) {
  .sidebar .widget {
    width: 45%;
    float: left;
    margin-right: 5%;
  }
  .sidebar .widget:nth-child(2n) {
    margin-right: 0;
  }
}

/*======================================*
	 * 6.2 Widget styles
	 * ======================================*/
/*======================================*
 * Widgets
 * ======================================*/
.widget {
  padding: 30px;
  position: relative;
  background: white;
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 0.875em;
  /* Image slider for special widget */
  /* Review List */
  /*==================================*
	 * Wordpress Default Widgets
	 *==================================*/
  /* Categories, Archive widget list */
  /* RSS Widget */
  /* Text Widget */
  /* Tag list */
  /* Calendar Widget */
  /* Newsletter widget */
  /* Login Widget */
}

.site-footer .widget {
  background: none;
}

.site-footer .widget a {
  color: white;
}

.widget img {
  max-width: 100%;
  height: auto;
}

.widget .video-widget iframe {
  max-width: 100%;
}

.widget a {
  word-break: break-word;
}

.widget .widget-title, .widget .widgettitle {
  background-color: #4db2ec;
  color: white;
  letter-spacing: -2px;
  position: relative;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-size: 22px;
  font-size: 1.375em;
  color: white;
  margin: -20px -40px 30px;
  padding-left: 40px;
  padding: 8px 40px;
}

.widget .widget-title:before, .widget .widget-title:after, .widget .widgettitle:before, .widget .widgettitle:after {
  content: " ";
  border-style: solid;
  border-width: 5px;
  position: absolute;
  top: 100%;
}

.widget .widget-title:before, .widget .widgettitle:before {
  left: 0;
  border-color: #1790d6 #1790d6 transparent transparent;
}

.widget .widget-title:after, .widget .widgettitle:after {
  right: 0;
  border-color: #1790d6 transparent transparent #1790d6;
}

.widget .widget-title span, .widget .widgettitle span {
  position: relative;
  display: inline-block;
  /*&:before, &:after{
				content:" ";
				width: 500%;
				position: absolute;
				height: 2px;
				background-color: $muted-color;
				top:0;
				bottom: 0;
				margin: auto;
			}
			&:before{
				right: 100%;
			}
			&:after{
				left: 100%;
			} */
}

.site-footer .widget .widget-title, .site-footer .widget .widgettitle {
  border-color: rgba(0, 0, 0, 0.2);
  color: white;
}

.widget.no-content-padding .widget-content {
  padding: 0;
  position: relative;
}

.widget.no-content-padding .widget-title, .widget.no-content-padding .widgettitle {
  padding: 30px 30px 20px;
  border-bottom: none !important;
  position: relative !important;
}

.widget.no-content-padding .widget-title:before, .widget.no-content-padding .widgettitle:before {
  content: " ";
  position: absolute;
  left: 30px;
  right: 30px;
  height: 5px;
  bottom: 0;
  background: #eaeaea;
}

.widget.no-content-padding .widget-title:after, .widget.no-content-padding .widgettitle:after {
  left: 30px !important;
  bottom: 0 !important;
}

.widget .image-slider {
  *zoom: 1;
  overflow: hidden;
}

.widget .image-slider:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget .image-slider .slides {
  list-style: none;
  *zoom: 1;
  width: 2000%;
}

.widget .image-slider .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget .image-slider .slides li {
  width: 100%;
  float: left;
}

.widget .image-slider .slides li a {
  display: block;
}

.widget .image-slider .slides li img {
  max-width: 100%;
  display: block;
}

.widget .image-slider .flex-direction-nav {
  position: absolute;
  top: 10px;
  right: 0;
  text-align: center;
  letter-spacing: none;
  margin: 0;
  z-index: 9;
}

.widget .image-slider .flex-direction-nav li {
  display: inline-block;
}

.widget .image-slider .flex-direction-nav li a {
  display: block;
  padding: 0 5px;
  color: white;
  font-size: 22px;
  font-size: 1.375em;
}

.widget .review-list {
  list-style: none;
}

.widget .review-list li {
  border-bottom: 1px solid #eaeaea;
  padding: 0;
}

.widget .review-list li:nth-child(even) {
  background: none;
}

.widget .review-list .featured-image {
  overflow: hidden;
}

.widget .review-list img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
}

.widget .review-list .review-detail {
  padding: 30px;
  display: table;
  width: 100%;
}

.widget .review-list header, .widget .review-list .rating {
  display: table-cell;
}

.small .widget .review-list header, .lt200 .widget .review-list header, .small .widget .review-list .rating, .lt200 .widget .review-list .rating {
  display: block;
}

.widget .review-list header {
  padding-right: 10px;
}

.widget .review-list header .entry-title {
  font-size: 14px;
  font-size: 0.875em;
  margin-bottom: 0;
}

.widget .review-list header .entry-title a {
  color: #393939;
}

.widget .review-list .rating {
  width: 100px;
  padding-left: 20px;
  border-left: 1px solid #eaeaea;
}

.small .widget .review-list .rating, .lt200 .widget .review-list .rating {
  border-left: none;
  padding-left: 0;
  margin-top: 10px;
}

.site-footer .widget.contact-detail {
  color: white;
}

.widget.contact-detail .contact-email, .widget.contact-detail .contact-phone, .widget.contact-detail .contact-fax {
  padding-left: 25px !important;
}

.widget.contact-detail .contact-email:after, .widget.contact-detail .contact-phone:after, .widget.contact-detail .contact-fax:after {
  background: none;
}

.widget.contact-detail .contact-email:before, .widget.contact-detail .contact-phone:before, .widget.contact-detail .contact-fax:before {
  font-family: FontAwesome;
  position: absolute;
  left: 0;
}

.site-footer .widget.contact-detail .contact-email:before, .site-footer .widget.contact-detail .contact-phone:before, .site-footer .widget.contact-detail .contact-fax:before {
  color: white;
}

.widget.contact-detail .contact-email:before {
  content: "\f003";
}

.widget.contact-detail .contact-phone:before {
  content: "\f095";
}

.widget.contact-detail .contact-fax:before {
  content: "\f1ac";
}

.widget.widget_categories ul, .widget.widget_archive ul, .widget.widget_pages ul, .widget.widget_meta ul, .widget.widget_recent_comments ul, .widget.widget_recent_entries ul, .widget.widget_nav_menu ul, .widget.widget_product_categories ul {
  list-style: none;
  *zoom: 1;
}

.widget.widget_categories ul:after, .widget.widget_archive ul:after, .widget.widget_pages ul:after, .widget.widget_meta ul:after, .widget.widget_recent_comments ul:after, .widget.widget_recent_entries ul:after, .widget.widget_nav_menu ul:after, .widget.widget_product_categories ul:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.widget_categories li, .widget.widget_archive li, .widget.widget_pages li, .widget.widget_meta li, .widget.widget_recent_comments li, .widget.widget_recent_entries li, .widget.widget_nav_menu li, .widget.widget_product_categories li {
  *zoom: 1;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
  color: #9b9b9b;
}

.widget.widget_categories li:after, .widget.widget_archive li:after, .widget.widget_pages li:after, .widget.widget_meta li:after, .widget.widget_recent_comments li:after, .widget.widget_recent_entries li:after, .widget.widget_nav_menu li:after, .widget.widget_product_categories li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.widget_categories li:last-child, .widget.widget_archive li:last-child, .widget.widget_pages li:last-child, .widget.widget_meta li:last-child, .widget.widget_recent_comments li:last-child, .widget.widget_recent_entries li:last-child, .widget.widget_nav_menu li:last-child, .widget.widget_product_categories li:last-child {
  border-bottom: none;
}

.widget.widget_categories li a, .widget.widget_archive li a, .widget.widget_pages li a, .widget.widget_meta li a, .widget.widget_recent_comments li a, .widget.widget_recent_entries li a, .widget.widget_nav_menu li a, .widget.widget_product_categories li a {
  float: left;
  padding: 0;
  border-bottom: none;
  color: #444;
  font-weight: 400;
  word-break: break-word;
}

.widget.widget_categories li a:hover, .widget.widget_archive li a:hover, .widget.widget_pages li a:hover, .widget.widget_meta li a:hover, .widget.widget_recent_comments li a:hover, .widget.widget_recent_entries li a:hover, .widget.widget_nav_menu li a:hover, .widget.widget_product_categories li a:hover {
  color: #4db2ec;
}

.widget.widget_categories li ul, .widget.widget_archive li ul, .widget.widget_pages li ul, .widget.widget_meta li ul, .widget.widget_recent_comments li ul, .widget.widget_recent_entries li ul, .widget.widget_nav_menu li ul, .widget.widget_product_categories li ul {
  margin-left: 5%;
  margin-top: 10px;
  margin-bottom: -10px;
  border-top: 1px solid #eaeaea;
  clear: both;
}

.site-footer .widget.widget_categories li ul, .site-footer .widget.widget_archive li ul, .site-footer .widget.widget_pages li ul, .site-footer .widget.widget_meta li ul, .site-footer .widget.widget_recent_comments li ul, .site-footer .widget.widget_recent_entries li ul, .site-footer .widget.widget_nav_menu li ul, .site-footer .widget.widget_product_categories li ul {
  border-color: #232323;
}

.widget.widget_categories select, .widget.widget_archive select, .widget.widget_pages select, .widget.widget_meta select, .widget.widget_recent_comments select, .widget.widget_recent_entries select, .widget.widget_nav_menu select, .widget.widget_product_categories select {
  border: 2px solid #393939;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  background: transparent;
  outline: none;
}

.widget.widget_categories select:active, .widget.widget_categories select:focus, .widget.widget_archive select:active, .widget.widget_archive select:focus, .widget.widget_pages select:active, .widget.widget_pages select:focus, .widget.widget_meta select:active, .widget.widget_meta select:focus, .widget.widget_recent_comments select:active, .widget.widget_recent_comments select:focus, .widget.widget_recent_entries select:active, .widget.widget_recent_entries select:focus, .widget.widget_nav_menu select:active, .widget.widget_nav_menu select:focus, .widget.widget_product_categories select:active, .widget.widget_product_categories select:focus {
  border-color: #4db2ec;
}

.site-footer .widget.widget_categories select, .site-footer .widget.widget_archive select, .site-footer .widget.widget_pages select, .site-footer .widget.widget_meta select, .site-footer .widget.widget_recent_comments select, .site-footer .widget.widget_recent_entries select, .site-footer .widget.widget_nav_menu select, .site-footer .widget.widget_product_categories select {
  border-color: white;
  background: transparent;
  color: white;
}

.widget.widget_categories li {
  text-align: right;
  color: #4db2ec;
}

.widget.widget_pages li, .widget.widget_meta li, .widget.widget_recent_comments li, .widget.widget_recent_entries li, .widget.widget_nav_menu li {
  text-align: left;
}

.site-footer .widget.widget_pages li, .site-footer .widget.widget_meta li, .site-footer .widget.widget_recent_comments li, .site-footer .widget.widget_recent_entries li, .site-footer .widget.widget_nav_menu li {
  border-color: rgba(255, 255, 255, 0.1);
}

.widget.widget_pages li a, .widget.widget_meta li a, .widget.widget_recent_comments li a, .widget.widget_recent_entries li a, .widget.widget_nav_menu li a {
  float: none;
}

.widget.widget_rss li {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  list-style: none;
}

.site-footer .widget.widget_rss li {
  border-color: #232323;
}

.widget.widget_rss li a.rsswidget {
  color: #393939;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: normal;
}

.widget.widget_rss li .rss-date {
  color: #9b9b9b;
  font-style: italic;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  line-height: normal;
  margin: 0 0 20px;
  display: block;
}

.widget.widget_rss li .rss-date:before {
  content: "\e021";
  font-family: dripicons;
  font-style: normal;
  margin-right: 5px;
  font-weight: normal;
}

.widget.widget_rss li .rssSummary {
  margin-bottom: 10px;
}

.widget.widget_rss li cite {
  font-size: 12px;
  font-size: 0.75em;
  font-style: italic;
}

.widget.widget_text img, .widget.widget_text input, .widget.widget_text textarea, .widget.widget_text select {
  max-width: 100%;
}

.widget .tagcloud a {
  display: inline-block;
  padding: 2px 10px;
  height: 24px;
  line-height: normal;
  margin: 0 2px 5px 10px;
  background-color: #4db2ec;
  color: white;
  font-size: 1em !important;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  position: relative;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.widget .tagcloud a:before {
  content: " ";
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent transparent #4db2ec;
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.widget .tagcloud a:after {
  content: " ";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.widget .tagcloud a:hover {
  background-color: #1f9ee7;
}

.widget .tagcloud a:hover:before {
  border-color: transparent transparent transparent #1f9ee7;
}

.widget.widget_search .search-form .control {
  position: relative;
}

.widget.widget_search .search-form .control input[type="text"], .widget.widget_search .search-form .control input[type="search"] {
  width: 100%;
  padding-right: 60px;
}

.widget.widget_search .search-form .control button {
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: 3px;
}

.widget #wp-calendar {
  width: 100%;
  border-collapse: collapse;
}

.widget #wp-calendar td, .widget #wp-calendar th {
  border: 1px solid #eaeaea;
  padding: 5px;
  text-align: center;
}

.widget #wp-calendar th {
  background: #eaeaea;
}

.site-footer .widget #wp-calendar th {
  background-color: transparent;
}

.widget #wp-calendar caption {
  text-transform: uppercase;
  padding: 10px;
  font-weight: 700;
}

.widget #wp-calendar #today {
  background-color: #4db2ec;
}

.widget #wp-calendar #today a {
  color: white;
}

.widget.widget-newsletter {
  background: #0f6191;
  position: relative;
  z-index: 1;
  padding: 30px;
  color: white;
}

.widget.widget-newsletter .widget-title {
  border-bottom: none;
}

.widget.widget-newsletter form input[type="email"], .widget.widget-newsletter form input[type="text"] {
  background: white;
  border-color: 3px solid #393939;
  color: #444;
  width: 100%;
  margin-bottom: 20px;
}

.widget.widget_tokomoo_recent_comments_avatar_widget img {
  border-radius: 50%;
}

.widget.widget-login input:not([type="checkbox"]) {
  width: 100%;
}

.widget.widget-login .remember-me {
  float: left;
}

.widget.widget-login .login-submit {
  float: right;
}

.widget.widget-login .forget-link {
  clear: both;
  padding-top: 20px;
  margin-bottom: 0;
  border-top: 1px solid #eaeaea;
  text-align: center;
  font-weight: 300;
}

.widget.widget-advertisement a {
  display: block;
  text-align: center;
}

.widget.widget-advertisement img {
  max-width: 100%;
}

.widget.widget-advertisement .ads-note {
  font-size: 12px;
  font-size: 0.75em;
  display: block;
  text-align: center;
  color: #9b9b9b;
}

.widget.widget_search input {
  display: inline-block;
  width: 190px;
  vertical-align: middle;
  box-sizing: border-box;
}

.small .widget.widget_search input, .lt200 .widget.widget_search input {
  width: 100%;
}

.widget.widget_search button {
  font-size: 20px;
  font-size: 1.25em;
  padding: 7px 10px;
  display: inline-block;
  vertical-align: middle;
}

.small .widget.widget_search button, .lt200 .widget.widget_search button {
  float: right;
  margin-top: 10px;
}

.widget ul.photo-grid {
  list-style: none;
  margin: 0 -5px;
  padding-bottom: 5px;
  *zoom: 1;
}

.widget ul.photo-grid:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.small .widget ul.photo-grid, .lt200 .widget ul.photo-grid {
  margin: 0;
}

.widget ul.photo-grid li {
  width: 50%;
  padding: 5px;
  float: left;
  overflow: hidden;
}

.small .widget ul.photo-grid li, .lt200 .widget ul.photo-grid li {
  width: 100%;
  float: none;
  padding: 0;
}

.widget ul.photo-grid li:first-child {
  width: 100%;
  padding-top: 0;
}

.widget ul.photo-grid li a {
  overflow: hidden;
  display: block;
}

.widget ul.photo-grid img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.widget.user-testimonials blockquote {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px;
}

.widget.user-testimonials blockquote:before, .widget.user-testimonials blockquote:after {
  content: "\"";
}

.widget.user-testimonials .rslides_nav {
  position: absolute;
  top: 0;
  right: 0;
}

.widget.user-testimonials .rslides_nav {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  display: -moz-inline-stack;
  -moz-box-orient: vertical;
  display: inline-block;
  *display: inline;
  vertical-align: top;
  *zoom: 1;
}

.widget.user-testimonials .rslides_nav .prev, .widget.user-testimonials .rslides_nav .next {
  font-family: FontAwesome;
}

.widget.user-testimonials .rslides_nav .prev:before, .widget.user-testimonials .rslides_nav .next:before {
  text-indent: 0;
}

.widget.user-testimonials .rslides_nav .prev {
  content: "\f104";
}

.widget.user-testimonials .rslides_nav .next {
  background: url("../img/testimonial-right-arrow.png") no-repeat;
}

.widget.widget-contributor .author-list {
  list-style: none;
}

.widget.widget-contributor .author-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding-bottom: 10px;
  overflow: hidden;
  *zoom: 1;
}

.widget.widget-contributor .author-list li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.small .widget.widget-contributor .author-list li, .lt200 .widget.widget-contributor .author-list li {
  text-align: center;
  padding-bottom: 0;
}

@media screen and (min-width: 481px) and (max-width: 990px) {
  .small .widget.widget-contributor .author-list li, .lt200 .widget.widget-contributor .author-list li {
    text-align: left;
    padding-bottom: 20px;
  }
}

.widget.widget-contributor .author-list .author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.small .widget.widget-contributor .author-list .author-image, .lt200 .widget.widget-contributor .author-list .author-image {
  float: none;
  margin: 0 auto 10px;
}

@media screen and (min-width: 481px) and (max-width: 990px) {
  .small .widget.widget-contributor .author-list .author-image, .lt200 .widget.widget-contributor .author-list .author-image {
    float: left;
    margin-right: 20px;
  }
}

.widget.widget-contributor .author-list .author-image img {
  max-width: 100%;
  width: 100%;
}

.widget.widget-contributor .author-list .author-name {
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.widget.widget-contributor .author-list small {
  color: #9b9b9b;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
}

.widget.advance_categories ul {
  margin: -30px -30px;
}

.widget.advance_categories li {
  position: relative;
  text-align: left;
  list-style: none;
  z-index: 1;
}

.widget.advance_categories li:not([style]) {
  background-color: #4db2ec;
}

.widget.advance_categories li:first-child {
  border-top: 1px solid #eaeaea;
}

.widget.advance_categories li:hover:before {
  width: 100%;
}

.widget.advance_categories li:hover a {
  color: white;
}

.widget.advance_categories li:before {
  content: " ";
  position: absolute;
  background-color: inherit;
  width: 5px;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.widget.advance_categories li:after {
  content: " ";
  background: white;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.widget.advance_categories li a {
  display: block;
  padding: 10px 30px;
  color: #444;
  font-weight: 400;
}

.widget.advance_categories li .count {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background-color: inherit;
  text-align: center;
  color: white;
  font-weight: 700;
  display: block;
  line-height: 3;
}

.widget.weather-widget .today-forecast {
  *zoom: 1;
  padding-bottom: 10px;
  border-bottom: 5px solid #4db2ec;
  margin-bottom: 20px;
}

.widget.weather-widget .today-forecast:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.weather-widget .today-forecast .details, .widget.weather-widget .today-forecast .weather-icon {
  width: 50%;
  float: left;
}

.small .widget.weather-widget .today-forecast .details, .lt200 .widget.weather-widget .today-forecast .details, .small .widget.weather-widget .today-forecast .weather-icon, .lt200 .widget.weather-widget .today-forecast .weather-icon {
  width: 100%;
  float: none;
}

.widget.weather-widget .today-forecast .forecast-location {
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 1.5em;
  font-weight: 400;
  color: #393939;
  border-bottom: 1px solid #eaeaea;
}

.widget.weather-widget .today-forecast .day, .widget.weather-widget .today-forecast .date {
  font-size: 13px;
  font-size: 0.8125em;
}

.widget.weather-widget .today-forecast .day {
  color: #393939;
}

.widget.weather-widget .today-forecast .date {
  color: #9b9b9b;
}

.widget.weather-widget .today-forecast .weather-icon {
  font-size: 36px;
  font-size: 2.25em;
  padding-left: 10px;
  color: #9b9b9b;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 700;
}

.small .widget.weather-widget .today-forecast .weather-icon, .lt200 .widget.weather-widget .today-forecast .weather-icon {
  font-size: 30px;
  font-size: 1.875em;
  margin-top: 10px;
}

.widget.weather-widget .today-forecast .weather-icon .sup {
  font-weight: 100;
  font-size: 30px;
  font-size: 1.875rem;
}

.widget.weather-widget .today-forecast .weather-icon .wi {
  color: #f2b54a;
}

.widget.weather-widget .weekly-forecast {
  list-style: none;
  *zoom: 1;
}

.widget.weather-widget .weekly-forecast:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.weather-widget .weekly-forecast li {
  *zoom: 1;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.widget.weather-widget .weekly-forecast li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.small .widget.weather-widget .weekly-forecast li, .lt200 .widget.weather-widget .weekly-forecast li {
  cursor: pointer;
}

.small .widget.weather-widget .weekly-forecast li.active .weather-icon:before, .lt200 .widget.weather-widget .weekly-forecast li.active .weather-icon:before {
  content: "";
}

.widget.weather-widget .weekly-forecast .forecast-detail {
  float: left;
  margin-top: 5px;
}

.widget.weather-widget .weekly-forecast .forecast-detail .day, .widget.weather-widget .weekly-forecast .forecast-detail .collapsible, .widget.weather-widget .weekly-forecast .forecast-detail .weather-icon {
  display: inline-block;
}

.widget.weather-widget .weekly-forecast .forecast-detail .day {
  text-transform: uppercase;
  width: 50px;
  position: relative;
}

.widget.weather-widget .weekly-forecast .forecast-detail .day:after {
  content: " ";
  display: block;
  width: 11px;
  height: 20px;
  background: url(../img/garing-2.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}

.small .widget.weather-widget .weekly-forecast .forecast-detail .day, .lt200 .widget.weather-widget .weekly-forecast .forecast-detail .day {
  display: block;
}

.small .widget.weather-widget .weekly-forecast .forecast-detail .day:after, .lt200 .widget.weather-widget .weekly-forecast .forecast-detail .day:after {
  display: none;
}

.widget.weather-widget .weekly-forecast .forecast-detail .date {
  color: #9b9b9b;
  position: relative;
  padding-right: 20px;
}

.widget.weather-widget .weekly-forecast .forecast-detail .date:after {
  content: " ";
  display: block;
  width: 11px;
  height: 20px;
  background: url(../img/garing-2.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}

.small .widget.weather-widget .weekly-forecast .forecast-detail .date, .lt200 .widget.weather-widget .weekly-forecast .forecast-detail .date {
  display: block;
}

.small .widget.weather-widget .weekly-forecast .forecast-detail .date:after, .lt200 .widget.weather-widget .weekly-forecast .forecast-detail .date:after {
  display: none;
}

.small .widget.weather-widget .weekly-forecast .forecast-detail .collapsible, .lt200 .widget.weather-widget .weekly-forecast .forecast-detail .collapsible {
  display: none;
}

.widget.weather-widget .weekly-forecast .weather-icon {
  float: right;
  color: #f2b54a;
  position: relative;
  font-size: 18px;
  font-size: 1.125em;
}

.small .widget.weather-widget .weekly-forecast .weather-icon:before, .lt200 .widget.weather-widget .weekly-forecast .weather-icon:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
  color: #4db2ec;
}

.widget.tabbed-popular-posts-widget .nav-tab {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
}

.widget.tabbed-popular-posts-widget .nav-tab a {
  color: #9b9b9b;
  padding: 10px;
  display: inline-block;
  font-size: 11px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  position: relative;
}

.widget.tabbed-popular-posts-widget .nav-tab a:first-child {
  padding-left: 0;
}

.widget.tabbed-popular-posts-widget .nav-tab a.active {
  color: #4db2ec;
}

.widget.tabbed-popular-posts-widget .nav-tab a.active:before {
  content: " ";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-left: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
}

.widget.tabbed-popular-posts-widget .tab-panel {
  *zoom: 1;
}

.widget.tabbed-popular-posts-widget .tab-panel:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.tabbed-popular-posts-widget .tab {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  margin-right: -100%;
  float: left;
  width: 100%;
}

.widget.tabbed-popular-posts-widget .tab.active {
  opacity: 1;
  visibility: visible;
}

.widget.post-slider-widget {
  backgorund: white;
}

.widget.post-slider-widget .widget-content {
  position: relative;
}

.widget.post-slider-widget .slides {
  list-style: none;
  margin: 0;
  *zoom: 1;
}

.widget.post-slider-widget .slides:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.widget.post-slider-widget .slides .slide-item {
  width: 100%;
  margin-right: -100%;
  float: left;
  position: relative;
  min-height: 300px;
}

.widget.post-slider-widget .slides figure {
  margin: 0;
  overflow: hidden;
}

.widget.post-slider-widget .slides figure img {
  max-width: 100%;
  display: block;
  width: 100%;
}

.widget.post-slider-widget .slides .post-detail {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 30px 30px 0;
  background: rgba(0, 0, 0, 0.5);
}

.widget.post-slider-widget .slides .post-detail .entry-title {
  margin-top: 0;
  margin-bottom: 5px;
}

.widget.post-slider-widget .slides .post-detail .entry-title a {
  color: white;
}

.widget.post-slider-widget .slides .post-detail .entry-meta {
  color: white;
}

.widget.post-slider-widget .slides .post-detail .entry-meta a {
  color: white;
}

.widget.post-slider-widget .slides .post-detail .comment-count {
  margin-left: 10px;
}

.widget.post-slider-widget .slides .post-detail .comments-link .drip-icon-message {
  margin-right: 5px;
}

.widget.post-slider-widget .slides .post-detail .share-count {
  margin-top: 10px;
}

.widget.post-slider-widget .flex-direction-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  list-style: none;
}

.widget.post-slider-widget .flex-direction-nav li {
  display: inline-block;
}

.widget.post-slider-widget .flex-direction-nav li a {
  display: block;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  font-size: 1em;
}

.widget.flickr-photos {
  overflow: visible;
}

.widget.flickr-photos ul {
  margin: 0 -5px;
}

.widget.flickr-photos ul:hover li {
  opacity: .6;
}

.widget.flickr-photos ul li {
  width: 33.3333%;
  float: left;
  padding: 5px;
  margin: 0;
  -webkit-transition: .3s ease;
          transition: .3s ease;
}

.widget.flickr-photos ul li:hover {
  opacity: 1;
}

.widget.flickr-photos ul a, .widget.flickr-photos ul img {
  display: block;
  padding: 0;
  border: none;
}

.widget.flickr-photos ul img {
  width: 100%;
  max-width: 100%;
}

/* Typical Post list widget with possible thumbnail on the left */
.post-list {
  list-style: none;
  margin: -20px -30px 0;
}

.post-list li {
  *zoom: 1;
  padding: 15px 30px;
  border-bottom: 1px solid #eaeaea;
}

.post-list li:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.post-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.site-footer .post-list li {
  border-color: rgba(0, 0, 0, 0.1);
}

.post-list .post-image {
  float: left;
  margin-right: 20px;
}

.small .post-list .post-image, .lt200 .post-list .post-image {
  float: none;
  display: block;
  margin-right: 0;
  margin-bottom: 10px;
}

.post-list .post-image.rounded {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
}

.post-list .post-image.rounded img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.post-list .post-detail {
  display: table;
}

.post-list .post-detail footer {
  color: #9b9b9b;
  font-size: 14px;
  font-size: 0.875em;
}

.post-list .post-detail footer a, .post-list .post-detail footer .author-link {
  color: #393939;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-weight: 700;
}

.post-list .post-detail .entry-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  margin: 0;
  letter-spacing: -1px;
  word-break: break-word;
}

.post-list .post-detail .entry-title a {
  color: #393939;
}

.site-footer .post-list .post-detail .entry-title a {
  color: white;
}

.post-list .post-detail .entry-title a:hover {
  color: #4db2ec;
}

.post-list .post-detail .category {
  color: #9b9b9b;
}

.post-list .post-detail .category a {
  color: #9b9b9b;
}

.post-list .post-detail .category a:hover {
  color: #4db2ec;
}

.post-list .post-detail .date {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #9b9b9b;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.post-list .post-detail [class*="drip"] {
  display: none;
}

.post-list .post-detail .entry-date {
  display: block;
  color: #9b9b9b;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.post-list .post-detail .entry-summary {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

.post-list .post-content {
  font-family: "Open Sans", "Droid Sans", sans-serif;
}

.post-list .follow-me {
  margin-top: 20px;
  display: block;
}

.post-date-list {
  list-style: none;
}

.post-date-list li {
  display: table;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.post-date-list li .entry-date, .post-date-list li .entry-title {
  display: table-cell;
  vertical-align: top;
}

.post-date-list li .entry-date {
  width: 70px;
  background: url(../img/garing-3.png) no-repeat right top;
}

.post-date-list li .entry-date span {
  color: #9b9b9b;
  display: block;
}

.post-date-list li .entry-date span.date {
  color: #393939;
  font-size: 24px;
  font-size: 1.5em;
  line-height: 1;
}

.post-date-list li .entry-title {
  font-size: 16px;
  font-size: 1rem;
  padding-left: 10px;
}

.post-date-list li .entry-title a {
  color: #393939;
}

.customizer {
  background: white;
  position: fixed;
  top: 20%;
  left: 0;
  z-index: 99999;
  width: 220px;
  left: -220px;
  -webkit-transition: .3s ease;
          transition: .3s ease;
  -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
  font-family: "Open Sans", "Droid Sans", sans-serif;
  font-style: italic;
  padding-bottom: 20px;
}

.customizer.active {
  left: 0;
}

.customizer .toggle-customizer {
  position: absolute;
  left: 100%;
  top: 0;
  padding: 10px 10px;
  font-size: 20px;
  font-size: 1.25em;
  outline: none;
}

.customizer header {
  padding: 10px 10px 10px 10px;
  position: relative;
  background: #4db2ec;
  color: white;
}

.customizer h2 {
  font-size: 14px;
  font-size: 0.875em;
  margin-bottom: 0;
  padding: 10px 20px;
}

.customizer input[type="checkbox"] {
  margin-left: 20px;
  margin-right: 10px;
}

.customizer .color-scheme {
  list-style: none;
  text-align: center;
  margin: 20px;
}

.customizer .color-scheme li {
  cursor: pointer;
  width: 80px;
  height: 20px;
  background: url(../img/schemes.jpg);
  margin-bottom: 5px;
  border: 1px solid white;
  float: left;
  margin-right: 10px;
}

.customizer .color-scheme li.selected {
  box-shadow: 0 0 0 2px #000;
}

.customizer .color-scheme li.scheme-1 {
  background-position: 0 0px;
}

.customizer .color-scheme li.scheme-2 {
  background-position: 0 -20px;
}

.customizer .color-scheme li.scheme-3 {
  background-position: 0 -40px;
}

.customizer .color-scheme li.scheme-4 {
  background-position: 0 -60px;
}

.customizer .color-scheme li.scheme-5 {
  background-position: 0 -80px;
}

.customizer .color-scheme li.scheme-6 {
  background-position: 0 -100px;
}

.customizer .color-scheme li.scheme-7 {
  background-position: 0 -120px;
}

.customizer .color-scheme li.scheme-8 {
  background-position: 0 -140px;
}

.customizer .color-scheme li.scheme-9 {
  background-position: 0 -160px;
}

.customizer .color-scheme li.scheme-10 {
  background-position: 0 -180px;
}

.customizer .color-scheme li.scheme-11 {
  background-position: 0 -200px;
}

.customizer .color-scheme li.scheme-12 {
  background-position: 0 -220px;
}

.customizer .color-scheme li.scheme-13 {
  background-position: 0 -240px;
}

.customizer .color-scheme li.scheme-14 {
  background-position: 0 -260px;
}

.customizer .color-scheme li.scheme-15 {
  background-position: 0 -280px;
}

.small .widget.widget_calendar #wp-calendar, .lt200 .widget.widget_calendar #wp-calendar {
  display: none;
}

.small .widget.widget_calendar #calendar_wrap:after, .lt200 .widget.widget_calendar #calendar_wrap:after {
  content: "This widget is not supported on small sidebar";
}

/*======================================*
 * 7. Footer Style
 * ======================================*/
/*
 * Footer Styles
 */
.site-footer {
  border-top: 5px solid #4db2ec;
}

.boxed .site-footer {
  margin: 0 -30px;
}

.site-footer .widget-area {
  background-color: #2E3135;
}

.site-footer .widget-area .col-content {
  padding: 30px 0;
}

.site-footer .widget-area a {
  color: #e6eaf0 !important;
}

.site-footer .widget-area a:hover {
  color: #4db2ec !important;
}

.site-footer .colophon {
  background-color: #232323;
  color: #9b9b9b;
  *zoom: 1;
  padding: 30px 0;
}

.site-footer .colophon:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.site-footer .colophon a {
  color: #9b9b9b;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  .site-footer .colophon .pull-left, .site-footer .colophon .pull-right {
    display: block;
    text-align: center;
    float: none;
  }
}

.site-footer .logo {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: "Open Sans", "Droid Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-size: 28px;
  font-size: 1.75em;
}

@media screen and (max-width: 640px) {
  .site-footer .logo {
    display: block;
    text-align: center;
    margin: 0 0 20px;
  }
}

.site-footer .logo a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

.instagram-footer-grid {
  *zoom: 1;
  list-style: none;
  margin: 50px -45px 0;
}

.instagram-footer-grid:after {
  content: " ";
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
}

.container-fluid .instagram-footer-grid {
  margin: 50px -15px 0;
}

.instagram-footer-grid:hover a:before {
  opacity: 1;
}

.instagram-footer-grid li {
  float: left;
  width: 12.5%;
}

@media screen and (max-width: 990px) {
  .instagram-footer-grid li {
    width: 25%;
  }
}

.instagram-footer-grid li a {
  display: block;
  position: relative;
}

.instagram-footer-grid li a:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: .3s ease;
          transition: .3s ease;
  opacity: 0;
}

.instagram-footer-grid li a:hover:before {
  opacity: 0;
}

.instagram-footer-grid li img {
  width: 100%;
  max-width: 100%;
  display: block;
}
/*# sourceMappingURL=screen.css.map */