/*
Theme Name: DesignRulz2016
Theme URI: http://underscores.me/
Author: SiteUP
Author URI: #
Description: Custom WP Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drwp
Tags: responsive, custom

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

DesignRulz2016 is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both; }

p {
  margin-bottom: 1.5em; }

dfn,
cite,
em,
i {
  font-style: italic; }

blockquote {
  margin: 0 1.5em;
  font-style: italic; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark,
ins {
  background: transparent;
  text-decoration: none; }

big {
  font-size: 125%; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: ""; }

blockquote,
q {
  quotes: "" ""; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em; }

ul,
ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: none; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

dt {
  font-weight: bold; }

dd {
  margin: 0 1.5em 1.5em; }

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

table {
  margin: 0 0 1.5em;
  width: 100%; }

h2,
h3,
h4,
h5,
h6 {
    font-size: 1.5em;
    font-weight: normal;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn {
  border: 1px solid;
  border-color: #45c3f1;
  background: #fff;
  color: #45c3f1;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 20px;
  display: inline-block; }

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.btn:hover {
  border-color: #45c3f1;
  color: #fff;
  background-color: #45c3f1; }

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic; }

select {
  border: 1px solid #ccc; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 10px; }

textarea {
  padding-left: 10px;
  width: 100%; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #45c3f1; }

a:hover,
a:focus,
a:active {
  color: #0d80aa; }

a:focus {
  outline: thin dotted; }

a:hover,
a:active {
  outline: 0;
  cursor: pointer; }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  display: block;
  float: left;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: right;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center; }
  @media (min-width: 798px) {
    .main-navigation {
      padding: 0 15px; } }
  @media (min-width: 1092px) {
    .main-navigation {
      padding: 0 90px; } }

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0; }

.main-navigation li {
  float: left;
  font-weight: 600;
  text-transform: uppercase; }

.main-navigation a {
  display: block;
  text-decoration: none; }

.main-navigation ul ul {
  float: left;
  position: absolute;
  top: 83px;
  left: -999em;
  z-index: 99999;
  background-color: #45c3f1; }

.main-navigation ul ul ul {
  left: -999em;
  top: 0; }

.main-navigation ul ul a {
  color: #fff; }
  @media (min-width: 798px) {
    .main-navigation ul ul a {
      padding: 25px 6px; } }
  @media (min-width: 1092px) {
    .main-navigation ul ul a {
      padding: 25px 12px; } }

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
  background-color: #0d80aa; }

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 0;
  width: 100%; }

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%; }

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: inline; }

.main-navigation.toggled ul {
  position: absolute;
  left: 0;
  top: auto;
  z-index: 99;
  width: 100%;
  background-color: #45c3f1;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .main-navigation.toggled ul ul {
    display: none;
    height: auto;
    position: relative;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef; }
    .main-navigation.toggled ul ul li {
      width: 100%; }

.main-navigation.toggled li {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  margin: 20px 0; }
  .main-navigation.toggled li.open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: inherit; }
    .main-navigation.toggled li.open > a {
      margin-bottom: 20px; }

.main-navigation.toggled a {
  color: #fff; }

@media screen and (min-width: 798px) {
  .menu-toggle {
    display: none; }
  .main-navigation ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .main-navigation ul ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0px 5px; }
    .main-navigation ul ul li {
      margin: auto;
      font-size: 12px;
      font-size: 1.2rem; }
  .main-navigation .menu > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px; } }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0; }

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em; }

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block; }

.hentry {
  margin: 0 0 2.2em; }

.byline,
.updated:not(.published) {
  display: none; }

.single .byline,
.group-blog .byline {
  display: inline; }

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0; }

.page-links {
  clear: both;
  margin: 0 0 1.5em; }

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none; }

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11%; }

.gallery-caption {
  display: block; }

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e46d1b02aa7d182db0d9)
 * Config saved to config.json and https://gist.github.com/e46d1b02aa7d182db0d9
 */
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Dosis', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42857143;
  color: #222222;
  background-color: #ffffff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #45c3f1;
  text-decoration: none; }

a:hover,
a:focus {
  text-decoration: none; }

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 0px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #ffffff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }

@media (min-width: 480px) {
  .container {
    width: 480px; } }

@media (min-width: 798px) {
  .container {
    width: 798px; } }

@media (min-width: 1092px) {
  .container {
    width: 1092px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }

.row {
  margin-left: -10px;
  margin-right: -10px; }

.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: 10px;
  padding-right: 10px; }

.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-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0%; }

@media (min-width: 480px) {
  .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-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0%; } }

@media (min-width: 798px) {
  .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-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0%; } }

@media (min-width: 1092px) {
  .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-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #ffffff;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #dddddd; }

.table .table {
  background-color: #ffffff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd; }

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }

@media screen and (max-width: 479px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

/*
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 0px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #222222;
  background-color: #efefef;
  border: 1px solid #efefef;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #45c3f1;
  background-color: #efefef;
  border-color: #efefef;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #222222;
  background-color: #ffffff;
  border-color: #efefef;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #ffffff;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
*/
.media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }

.media-object.img-thumbnail {
  max-width: none; }

.media-right,
.media > .pull-right {
  padding-left: 10px; }

.media-left,
.media > .pull-left {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table; }

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-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: 479px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 479px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 479px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 479px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 480px) and (max-width: 797px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 480px) and (max-width: 797px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 480px) and (max-width: 797px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 480px) and (max-width: 797px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 798px) and (max-width: 1091px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 798px) and (max-width: 1091px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 798px) and (max-width: 1091px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 798px) and (max-width: 1091px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1092px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1092px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1092px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1092px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 479px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 480px) and (max-width: 797px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 798px) and (max-width: 1091px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1092px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  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; } }

@font-face {
  font-family: "dricons";
  src: url("fonts/dricons.eot");
  src: url("fonts/dricons.eot?#iefix") format("embedded-opentype"), url("fonts/dricons.woff") format("woff"), url("fonts/dricons.ttf") format("truetype"), url("fonts/dricons.svg#dricons") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "dricons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before,
.widget_newsletter .widget-title:before,
.gallery-back .btn:before {
  font-family: "dricons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-paper-plane-o:before {
  content: "\e000"; }

.icon-angle-double-left:before,
.gallery-back .btn:before {
  content: "\e001"; }

.icon-paper-plane:before,
.widget_newsletter .widget-title:before {
  content: "\e002"; }

.widget_newsletter .widget-title:before,
.gallery-back .btn:before {
  padding-right: 6px;
  vertical-align: middle; }

.gallery-back .btn:before {
  vertical-align: top; }

.btn-primary, .widget_newsletter .btn-primary, input.btn-primary, .widget_newsletter input.btn-primary {
  color: #fff;
  background-color: #45c3f1; }
  .btn-primary:hover, input.btn-primary:hover {
    color: #45c3f1;
    background-color: #fff; }

.search-ico {
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #45c3f1;
  width: 30px;
  margin-left: 10px;
  padding: 0 5px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer; }
  .search-ico.active {
    background-color: #efefef;
    border-color: #efefef; }
  .search-ico img {
    max-height: 54px;
    width: 100%; }
    @media (min-width: 798px) {
      .search-ico img {
        max-height: 80px; } }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .search-ico img {
      width: 100%;
      height: 100%; } }

.search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .search-form label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .search-form label input {
      width: 98%; }

.site-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: #efefef;
  padding: 16px 0;
  -webkit-transition: opacity 0.05s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.05s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.05s ease-out;
  transition: transform 0.2s ease-out, opacity 0.05s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: translateY(-90px);
          transform: translateY(-90px);
  opacity: 0; }
  .site-search.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.15s ease-out 0.2s, -webkit-transform 0.2s ease-out;
    transition: opacity 0.15s ease-out 0.2s, -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out, opacity 0.15s ease-out 0.2s;
    transition: transform 0.2s ease-out, opacity 0.15s ease-out 0.2s, -webkit-transform 0.2s ease-out;
    opacity: 1;
    z-index: 999; }

.sticky {
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  opacity: 0.9;
  top: -200px; }

.dark-widget-title, .widget-area .widget-title, .jp-relatedposts-headline {
  background-color: #222;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 10px 10px 18px;
  font-weight: 600; }

#masthead {
  position: relative;
  z-index: 99;
  background-color: #fff;
  border-bottom: 1px solid #efefef; }
  #masthead.active {
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; }
  #masthead header {
    background-color: #fff; }

  .content-area {
    width: 100%; }
    @media (min-width: 1092px) {
      .content-area {
        width: 64.55%;
        max-width: 728px;
        float: left;
        margin-right: 4.1%; } }

  .widget-area {
    width: 100%; }
    @media (min-width: 1092px) {
      .widget-area {
        width: 31.35%;
        max-width: 336px;
        float: left; } }

.search-submit {
  font-size: 15px;
  font-size: 1.5rem; }

.site-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 10px; }
  @media (min-width: 798px) {
    .site-header {
      position: relative; }
      .site-header .menu-item-has-children > a, .site-header .menu-item-has-children > a.hover {
        position: relative; }
        .site-header .menu-item-has-children > a:after, .site-header .menu-item-has-children > a.hover:after {
          content: "";
          width: 0;
          height: 0;
          display: none;
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          margin-left: auto;
          margin-right: auto;
          border-style: solid;
          border-width: 0 12px 10px 12px;
          border-color: transparent transparent #45c3f1 transparent; }
        .site-header .menu-item-has-children > a:hover:after, .site-header .menu-item-has-children > a.hover:hover:after {
          display: block; }
      .site-header .menu-item-has-children > a.hover:after {
        display: block; } }

.site-branding {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 114px;
      -ms-flex: 1 0 114px;
          flex: 1 0 114px;
  max-width: 120px; }
  @media (min-width: 798px) {
    .site-branding {
      max-width: 185px; } }

.site-footer {
  background-color: #efefef; }
  .site-footer .widget-container .menu {
    margin: 0;
    padding: 0; }
  .site-footer .widget-container .widget_nav_menu .menu-item {
    text-align: center; }
  @media (min-width: 798px) {
    .site-footer .widget-container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .site-footer .widget-container .widget_newsletter {
        max-width: 435px; }
        .site-footer .widget-container .widget_newsletter input, .site-footer .widget-container .widget_newsletter button {
          float: left;
          width: 48%; }
          .site-footer .widget-container .widget_newsletter input:nth-of-type(odd) {
            margin-right: 1%; }
          .site-footer .widget-container .widget_newsletter input:nth-of-type(even), .site-footer .widget-container .widget_newsletter input#mc-embedded-subscribe {
            margin-left: 1%; }
      .site-footer .widget-container .widget_nav_menu .menu-item {
        text-align: right; } }
  .site-footer .widget-title {
    font-weight: 600;
    text-transform: uppercase; }

.site-footer-below {
  text-align: center; }
  @media (min-width: 180px) {
    .site-footer-below {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .site-footer-below a {
    text-decoration: underline; }
    .site-footer-below a:hover {
      color: #222; }

.widget_newsletter .newsletter_text {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 15px; }

.widget_newsletter .widget-title {
  margin-bottom: 0; }

.widget_newsletter .btn {
  height: 41px;
  vertical-align: bottom; }

.widget_newsletter input, .widget_newsletter button  {
  width: 100%;
  margin-bottom: 10px; }

.content-sidebar .widget_newsletter {
  border: 1px solid #efefef;
  padding: 20px; }
  .content-sidebar .widget_newsletter .widget-title {
    background-color: initial;
    color: initial;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0; }

.widget_nav_menu {
  padding-top: 22px; }
  .widget_nav_menu .menu-item {
    margin-bottom: 20px;
    text-align: right; }
    .widget_nav_menu .menu-item a {
      color: #222; }
      .widget_nav_menu .menu-item a:hover {
        color: #45c3f1; }

.jp-relatedposts-headline {
  float: none !important;
  display: block !important;
  font-size: 16px !important;
  font-size: 1.6rem !important; }

/* Pagination custom */
.nav-links {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 0px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Lora", serif; }

.nav-links > a,
.nav-links > span {
  position: relative;
  float: left;
  padding: 4px 11px;
  font-size: 14px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #222;
  background-color: #efefef;
  border: 1px solid #efefef;
  margin-left: 5px; }
  @media (min-width: 480px) {
    .nav-links > a,
    .nav-links > span {
      padding: 4px 16px;
      font-size: 18px; } }

.nav-links > a:first-child,
.nav-links > span:first-child {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px; }

.nav-links > a.next,
.nav-links > a.prev {
  background-color: #fff;
  border-color: #fff; }

.nav-links > a:hover,
.nav-links > span:hover,
.nav-links > a:focus,
.nav-links > span:focus {
  z-index: 2;
  color: #45c3f1;
  background-color: #efefef;
  border-color: #efefef; }

.nav-links > a.current,
.nav-links > span.current,
.nav-links > a:hover.current,
.nav-links > span:hover.current,
.nav-links > span:hover.current,
.nav-links > span:focus.current {
  z-index: 3;
  color: #222;
  background-color: #ffffff;
  border-color: #222;
  cursor: default; }

.entry-title {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: 200;
  margin-bottom: 0;
  margin-top: 0; }
  .entry-title a {
    color: #222; }
    .entry-title a:hover {
      color: #45c3f1; }

.home .entry-content,
.blog .entry-content,
.archive .entry-content,
.search .entry-content {
  margin-top: 10px;
  position: relative;
  min-height: 120px;
  overflow: hidden; }
  .home .entry-content .wp-post-image,
  .blog .entry-content .wp-post-image,
  .archive .entry-content .wp-post-image,
  .search .entry-content .wp-post-image {
    width: 100%; }
  .home .entry-content:hover .entry-gallery,
  .blog .entry-content:hover .entry-gallery,
  .archive .entry-content:hover .entry-gallery,
  .search .entry-content:hover .entry-gallery {
    right: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out; }

.home .entry-meta,
.blog .entry-meta,
.archive .entry-meta,
.search .entry-meta {
  position: absolute;
  bottom: 15px;
  left: 0; }

.home .entry-gallery,
.blog .entry-gallery,
.archive .entry-gallery,
.search .entry-gallery {
  position: absolute;
  top: 15px;
  right: -200px;
  -webkit-transition: all 0.4s ease-out 1.0s;
  transition: all 0.4s ease-out 1.0s; }

.home .cat-links,
.blog .cat-links,
.archive .cat-links,
.search .cat-links {
  background-color: #efefef;
  padding: 12px 17px 12px 12px;
  display: block;
  font-size: 14px;
  font-size: 1.4rem; }
  .home .cat-links a,
  .blog .cat-links a,
  .archive .cat-links a,
  .search .cat-links a {
    color: inherit;
    padding: 0; }
    .home .cat-links a:hover,
    .blog .cat-links a:hover,
    .archive .cat-links a:hover,
    .search .cat-links a:hover {
      color: #45c3f1; }

.home .entry-footer,
.blog .entry-footer,
.archive .entry-footer,
.search .entry-footer {
  margin-top: 10px; }
  @media (min-width: 480px) {
    .home .entry-footer,
    .blog .entry-footer,
    .archive .entry-footer,
    .search .entry-footer {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 480px) {
    .home .entry-footer .btn,
    .blog .entry-footer .btn,
    .archive .entry-footer .btn,
    .search .entry-footer .btn {
      display: block; } }
  .home .entry-footer .readmore,
  .blog .entry-footer .readmore,
  .archive .entry-footer .readmore,
  .search .entry-footer .readmore {
    margin-bottom: 10px;
    display: none; }
    @media (min-width: 798px) {
      .home .entry-footer .readmore,
      .blog .entry-footer .readmore,
      .archive .entry-footer .readmore,
      .search .entry-footer .readmore {
        display: block; } }
  .home .entry-footer .essb_links,
  .blog .entry-footer .essb_links,
  .archive .entry-footer .essb_links,
  .search .entry-footer .essb_links {
    margin: 0; }

@media screen and (max-width: 480px) {
  .home .essb_links.essb_template_blocks-retina li, .home .essb_links.essb_template_blocks-retina ul,
  .blog .essb_links.essb_template_blocks-retina li,
  .blog .essb_links.essb_template_blocks-retina ul,
  .archive .essb_links.essb_template_blocks-retina li,
  .archive .essb_links.essb_template_blocks-retina ul,
  .search .essb_links.essb_template_blocks-retina li,
  .search .essb_links.essb_template_blocks-retina ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .home .essb_links.essb_template_blocks-retina li,
  .blog .essb_links.essb_template_blocks-retina li,
  .archive .essb_links.essb_template_blocks-retina li,
  .search .essb_links.essb_template_blocks-retina li {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; }
  .home .entry-footer .essb_links.essb_template_blocks-retina .essb_item > a,
  .blog .entry-footer .essb_links.essb_template_blocks-retina .essb_item > a,
  .archive .entry-footer .essb_links.essb_template_blocks-retina .essb_item > a,
  .search .entry-footer .essb_links.essb_template_blocks-retina .essb_item > a {
    width: 98%; }
  .home .entry-footer .readmore .btn,
  .blog .entry-footer .readmore .btn,
  .archive .entry-footer .readmore .btn,
  .search .entry-footer .readmore .btn {
    width: 100%;
    text-align: center; } }

.subMenuShadow {
  width: 100%;
  height: 67px;
  background-color: #45c3f1;
  position: absolute;
  top: 83;
  left: 0; }

.essbis-hover-display {
  margin-bottom: 25px; }

.fullimage {
  position: relative; }
  .fullimage .background_image {
    height: 100%;
    max-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%; }
  .fullimage > .container {
    max-height: 500px;
    overflow: hidden; }
  .fullimage .attachment-post-thumbnail {
    position: relative;
    z-index: 30;
    display: block;
    margin: 0 auto; }

.fulltitle {
  background-color: #efefef;
  padding: 20px 0;
  position: relative;
  z-index: 30;
  margin-bottom: 20px; }
  .fulltitle.nobg {
    background-color: transparent; }

.single .entry-content {
  font-family: "Lora", serif;
  line-height: 1.9;
  margin-top: 0; }
  .single .entry-content a > img {
    margin-bottom: 15px; }

.single .cat-links {
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem; }
  .single .cat-links a {
    background-color: #efefef;
    padding: 5px 10px;
    margin-right: 5px;
    text-transform: uppercase; }

.page .entry-content {
  font-family: "Lora", serif;
  line-height: 1.9; }

.wp-caption-text {
  color: #666;
  font-style: italic;
  text-align: left;
  font-size: 15px;
  font-size: 1.5rem; }

.gallery-area {
  width: 100%; }
  .gallery-area .gallery-nav .slick-slide {
    /*height: 500px;*/
    /*border: 1px solid red;*/
    /*height: 75vh;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 1280px) {
      .gallery-area .gallery-nav .slick-slide {
        /* max-height: 68vh; */ } }
  .gallery-area .slick-slider, .gallery-area .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    .gallery-area .gallery-nav .slick-slide img {
    object-fit: contain; }
    @media (min-height: 480px) and (min-aspect-ratio: 16 / 9) {
      .gallery-area .slick-slider, .gallery-area .slick-slide img {
        /* max-height: 100%; */ } }
    @media (min-height: 800px) {
      .gallery-area .slick-slider, .gallery-area .slick-slide img {
       /* height: 65vh; */ } }
    @media (min-height: 1080px) and (max-aspect-ratio: 16 / 9) {
      .gallery-area .slick-slider, .gallery-area .slick-slide img {
       /* max-height: 100%;
        max-height: 83vh; */ } }
    @media (max-width: 480px) {
    	.gallery-area .gallery-nav .slick-slide {
    		height: 65vh;
    	}
    }

.gallery-for {
  max-height: 200px;
  overflow: hidden;
  display: none; }
  @media (min-width: 798px) {
    .gallery-for {
      display: block; } }
  .gallery-for .slick-slide img {
    padding: 0 10px; }

.gallery-for .slick-slide {
	height: 100px !important;
}


	@media (max-width: 797px) {
		.gallery-for.slick-slider {
			display: none;
		}
	}


.gallery-back {
  margin: 0 0 20px 0; }
  .gallery-back .btn {
    width: 100%;
    text-align: center; }

.featured-article {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #222; }

.featured_article_content {
  padding-left: 10px;
  max-height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 798px) {
    .featured_article_content {
      max-height: 230px;
      padding: 10px 15px; } }

.featured_title {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0; }

.featured_article__title {
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 0; }
  @media (min-width: 480px) {
    .featured_article__title {
      font-size: 18px;
      font-size: 1.8rem; } }
  @media (min-width: 798px) {
    .featured_article__title {
      font-size: 24px;
      font-size: 2.4rem; } }
  @media (min-width: 1092px) {
    .featured_article__title {
      font-size: 28px;
      font-size: 2.8rem; } }

.featured_article_image {
  max-width: 67.85%;
  float: left;
  width: 100%; }
  .featured_article_image div {
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%; }
    @media (min-width: 798px) {
      .featured_article_image div {
        height: 230px; } }

.featured_article_categories {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem; }
  .featured_article_categories a {
    color: #fff; }
    .featured_article_categories a:hover {
      color: #45c3f1; }
  .featured_article_categories p {
    margin-bottom: 5px; }
    @media (min-width: 798px) {
      .featured_article_categories p {
        margin-bottom: 12px; } }

.hp_gallery {
  margin-top: 40px;
  margin-bottom: 15px; }

@media (min-width: 798px) {
    .hp_slider {
      display: block;
      max-height: 300px; } }

.soliloquy-container .soliloquy-prev {
  left: 0 !important;
  top: auto !important;
  bottom: -40px !important; }

.soliloquy-container .soliloquy-next {
  right: 0 !important;
  left: 40px !important;
  top: auto !important;
  bottom: -40px !important; }

.hp_container {
  margin-bottom: 50px; }

.hp_container + .ad-space {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0; }

@media (min-width: 798px) {
  .hp_container + .ad-space {
  /*height: 90px;*/

  } }

.hp_container + .ad-space::after {
  content: "";
  display: block; }
  @media (min-width: 480px) {
    .hp_container + .ad-space::after {
      padding-bottom: 0;
      display: table; } }

@media (min-width: 798px) {
  .soliloquy-container .soliloquy-image {
    max-width: 60%; } }

@media (min-width: 1092px) {
  .soliloquy-container .soliloquy-image {
    max-width: 100%; } }

.soliloquy-container .soliloquy-controls-direction .soliloquy-prev {
  background: url("images/left-arrow.png") no-repeat scroll 0 0 !important; }

.soliloquy-container .soliloquy-controls-direction .soliloquy-next {
  background: url("images/right-arrow.png") no-repeat scroll 0 0 !important; }

.soliloquy-outer-container {
  padding-bottom: 30px; }

.soliloquy-container {
  max-height: none !important; }

.soliloquy-viewport {
  height: auto !important; }

.soliloquy-container .soliloquy-caption {
  position: relative !important; }

.hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
  text-align: left;
  background: #fff;
  color: #222;
  text-shadow: none;
  padding: 15px 5px 30px 0;
  font-size: 14px;
  font-size: 1.4rem; }
  @media (min-width: 798px) {
    .hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside {
      padding: 15px 5px 15px 0; } }
  .hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside .soliloquy-fc-title {
    font-weight: 200;
    font-size: 22px;
    font-size: 2.2rem; }
    .hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside .soliloquy-fc-title a {
      font-weight: 200; }
  .hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside a {
    color: #222; }
    .hp_slider .soliloquy-container .soliloquy-caption .soliloquy-caption-inside a:hover {
      color: #45c3f1; }

.page-title {
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: normal; }
  .page-title span {
    color: #45c3f1;
    text-transform: uppercase; }

.search-tips-list{
  margin: 0;
  list-style: disc;
  margin-bottom: 30px;
}
.search-page-categories-column{
  float: none !important;
}
.error-404 .page-title {
  text-align: center;
  font-family: "Lora", serif;
  text-transform: uppercase;
  font-size: 30px;
  font-size: 3.0rem; }
  .error-404 .page-title span {
    display: block;
    font-size: 51px;
    font-size: 5.1rem;
    font-family: inherit;
    color: inherit; }

.error-404 .page-content {
  margin-bottom: 85px; }

.error-404 .widget_recent_entries ul {
  margin: 0;
  padding: 0; }

.inform-404 {
  font-size: 30px;
  font-size: 3.0rem;
  text-align: center;
  margin: 0; }

.inform {
  margin-top: 60px;
  margin-bottom: 60px; }

.posts-list, .rpwwt-widget {
  margin: 0;
  padding: 0; }
  .posts-list img, .rpwwt-widget img {
    vertical-align: top;
    margin-right: 25px;
    margin-bottom: 15px; }
  .posts-list a, .rpwwt-widget a {
    display: block;
    font-size: 22px;
    font-size: 2.2rem;
    color: #222; }
    .posts-list a:hover, .rpwwt-widget a:hover {
      color: #45c3f1; }
  .posts-list li, .rpwwt-widget li {
    margin-bottom: 20px; }
  @media (min-width: 798px) {
    .posts-list li, .rpwwt-widget li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

.posts-list a:first-of-type {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

@media (min-width: 798px) {
  .rpwwt-widget a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; } }

.rpwwt-widget ul li img {
  margin: 0 25px 15px 0 !important;
  float: none !important; }
  @media (min-width: 798px) {
    .rpwwt-widget ul li img {
      float: left !important;
      max-width: 335px;
      width: 46%;
      max-width: 335px;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0; } }

.rpwwt-post-title {
  display: block; }
  @media (min-width: 798px) {
    .rpwwt-post-title {
      display: inline; } }

.slick-prev, .slick-next {
  height: 100% !important;
  width: 35px !important;
  z-index: 90; }

.slick-prev:before, .slick-next:before {
  color: rgba(0, 0, 0, 0.7) !important;
  font-size: 30px !important; }

.slick-slide img {
  margin: 0 auto; }

.slick-next {
  right: 0 !important; }

.slick-prev {
  left: 0 !important; }

#jp-relatedposts .jp-relatedposts-items-visual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
    width: 100% !important; }
    #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post .jp-relatedposts-post-img {
      width: 40.67%;
      float: left; }
  #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
    float: left;
    clear: none;
    margin-left: 2.76% !important; }
    #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title a {
      font-weight: 200 !important;
      font-size: 22px !important;
      font-size: 2.2rem !important;
      color: #222 !important; }
      #jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title a:hover {
        color: #45c3f1 !important; }
  #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-context {
    display: none; }

.sidebar-related {
  margin: 0;
  padding: 0; }

.sidebar-related_items h4 a {
  color: #222;
  font-weight: 200;
  font-size: 22px;
  font-size: 2.2rem; }
  .sidebar-related_items h4 a:hover {
    color: #45c3f1; }

.entry-footer {
  margin: 20px 0; }

.entry-footer .essb_links.essb_template_blocks-retina .essb_item > a, .entry-content .essb_links.essb_template_blocks-retina .essb_item > a {
  border-width: 1px !important; }

.wpcf7 input {
  width: 100%; }

ins.adsbygoogle {
  display: block !important;
  margin: 0 auto; }

.blog article + .widget_text {
  margin-bottom: 25px; }

.essb-click-to-tweet {
  padding: 25px 20px 20px 30px; }

.essb-click-to-tweet-light {
  background: #fff !important;
  border: 1px solid #45c3f1 !important;
  border-radius: 0px !important;
  color: #45c3f1 !important;
  font-style: italic; }

.essb-click-to-tweet.essb-click-to-tweet-light .essb-click-to-tweet-quote, .essb-click-to-tweet-light .essb-click-to-tweet-button {
  color: #45c3f1 !important; }

.essb-click-to-tweet.essb-click-to-tweet-light .essb-click-to-tweet-quote {
  font-size: 20px;
  font-size: 2.0rem; }

.essb-click-to-tweet-light .essb-click-to-tweet-button {
  font-family: 'Dosis', Arial;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem; }

.essb-click-to-tweet-light .essb-click-to-tweet-button-icon {
  margin-top: 0 !important;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMC8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvVFIvMjAwMS9SRUMtU1ZHLTIwMDEwOTA0L0RURC9zdmcxMC5kdGQnPjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzJweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggZD0iTTMxLjk5Myw2LjA3N0MzMC44MTYsNi42LDI5LjU1Miw2Ljk1MywyOC4yMjMsNy4xMWMxLjM1NS0wLjgxMiwyLjM5Ni0yLjA5OCwyLjg4Ny0zLjYzICBjLTEuMjY5LDAuNzUxLTIuNjczLDEuMjk5LTQuMTY4LDEuNTkyQzI1Ljc0NCwzLjc5NywyNC4wMzgsMywyMi4xNDksM2MtMy42MjUsMC02LjU2MiwyLjkzOC02LjU2Miw2LjU2MyAgYzAsMC41MTQsMC4wNTcsMS4wMTYsMC4xNjksMS40OTZDMTAuMzAxLDEwLjc4NSw1LjQ2NSw4LjE3MiwyLjIyNyw0LjIwMWMtMC41NjQsMC45Ny0wLjg4OCwyLjA5Ny0wLjg4OCwzLjMgIGMwLDIuMjc4LDEuMTU5LDQuMjg2LDIuOTE5LDUuNDY0Yy0xLjA3NS0wLjAzNS0yLjA4Ny0wLjMyOS0yLjk3Mi0wLjgyMWMtMC4wMDEsMC4wMjctMC4wMDEsMC4wNTYtMC4wMDEsMC4wODIgIGMwLDMuMTgxLDIuMjYyLDUuODM0LDUuMjY1LDYuNDM3Yy0wLjU1LDAuMTQ5LTEuMTMsMC4yMy0xLjcyOSwwLjIzYy0wLjQyNCwwLTAuODM0LTAuMDQxLTEuMjM0LTAuMTE3ICBjMC44MzQsMi42MDYsMy4yNTksNC41MDQsNi4xMyw0LjU1OGMtMi4yNDUsMS43Ni01LjA3NSwyLjgxMS04LjE1LDIuODExYy0wLjUzLDAtMS4wNTMtMC4wMzEtMS41NjYtMC4wOTIgIEMyLjkwNSwyNy45MTMsNi4zNTUsMjksMTAuMDYyLDI5YzEyLjA3MiwwLDE4LjY3NS0xMC4wMDEsMTguNjc1LTE4LjY3NWMwLTAuMjg0LTAuMDA4LTAuNTY4LTAuMDItMC44NSAgQzMwLDguNTUsMzEuMTEyLDcuMzk1LDMxLjk5Myw2LjA3N3oiIGZpbGw9IiM1NUFDRUUiLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48L3N2Zz4=") !important; }

.essb-click-to-tweet.essb-click-to-tweet-light:hover {
  background-color: #45c3f1 !important;
  color: #fff !important; }
  .essb-click-to-tweet.essb-click-to-tweet-light:hover .essb-click-to-tweet-quote, .essb-click-to-tweet.essb-click-to-tweet-light:hover .essb-click-to-tweet-button {
    color: #fff !important; }
  .essb-click-to-tweet.essb-click-to-tweet-light:hover .essb-click-to-tweet-button-icon {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iNDJweCIgaGVpZ2h0PSI0MnB4IiB2aWV3Qm94PSIwIDAgNDIgNDIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDQyIDQyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0zNywxMS4wNzZjLTEuMTc3LDAuNTIxLTIuNDQxLDAuODc1LTMuNzcxLDEuMDM0YzEuMzU2LTAuODEzLDIuMzk3LTIuMSwyLjg4OC0zLjYzMw0KCWMtMS4yNjksMC43NTItMi42NzUsMS4yOTktNC4xNjksMS41OTRjLTEuMTk3LTEuMjc2LTIuOTA0LTIuMDc0LTQuNzkzLTIuMDc0Yy0zLjYyNSwwLTYuNTY0LDIuOTM5LTYuNTY0LDYuNTY0DQoJYzAsMC41MTYsMC4wNTcsMS4wMTcsMC4xNywxLjQ5N2MtNS40NTctMC4yNzQtMTAuMjk0LTIuODg4LTEzLjUzMS02Ljg1OWMtMC41NjUsMC45Ny0wLjg5LDIuMDk4LTAuODksMy4zMDENCgljMCwyLjI3OCwxLjE1OSw0LjI4NywyLjkyLDUuNDY0Yy0xLjA3NS0wLjAzNC0yLjA4OC0wLjMyOS0yLjk3My0wLjgyMWMtMC4wMDEsMC4wMjctMC4wMDEsMC4wNTYtMC4wMDEsMC4wODINCgljMCwzLjE4MiwyLjI2Myw1LjgzNSw1LjI2Nyw2LjQzOGMtMC41NTEsMC4xNDktMS4xMzEsMC4yMjktMS43MjksMC4yMjljLTAuNDI0LDAtMC44MzQtMC4wNDEtMS4yMzUtMC4xMTYNCgljMC44MzUsMi42MDcsMy4yNjEsNC41MDYsNi4xMzMsNC41NTljLTIuMjQ3LDEuNzYxLTUuMDc3LDIuODEtOC4xNTMsMi44MWMtMC41MywwLTEuMDUzLTAuMDMtMS41NjYtMC4wOTINCgljMi45MDQsMS44NjMsNi4zNTUsMi45NSwxMC4wNjMsMi45NWMxMi4wNzgsMCwxOC42ODEtMTAuMDA0LDE4LjY4MS0xOC42NzljMC0wLjI4NS0wLjAwNy0wLjU2OC0wLjAxOS0wLjg1MQ0KCUMzNS4wMDcsMTMuNTQ5LDM2LjEyLDEyLjM5MiwzNywxMS4wNzYiLz4NCjwvc3ZnPg0K") !important; }


.container-wrapper {
	text-align: center;
}
#container-fullscreen-gallery,
.container-center {
	max-width: 970px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: inline-block;
}
#container-fullscreen-gallery,
.container-top {
	padding-bottom: 15px;
}
.nomargin {
	margin: 0;
}
.full-gall-top,
.full-gall-left,
.full-gall-right {
	text-align: center;
}
.full-gall-top ins,
.full-gall-left ins,
.full-gall-right ins {
	/* background-color: #ddd !important; */
}
.container-left,
.container-right {
	padding: 0 10px;
	/*width: 140px;*/
	text-align: center;
	vertical-align: top;
	display: inline-block;
}

/* 404 page styling */
.categories-column{
  width: 48%;
  margin: 0 0.5% 30px 0.5%;
  font-size: 2.2rem;
  display: inline-block;
  vertical-align: top;
}

.categories-column.sitemap-column{
  font-size: 16px;
}
.categories-column .dark-widget-title{
  font-size:16px;
}
.categories-column ul{
  margin-left: 0;
}
.jetpack_top_posts_widget .widgettitle{
  display: none;
}
@media screen and (max-width: 400px) {
  .categories-column ul{
    padding-left: 0;
  }
}
@media screen and (max-width: 798px) {
  .categories-column{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* 404 page styling end*/

/* add this buttons styling start*/
.expanding-share-buttons .at-style-responsive .at-share-btn{
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-color: #fff !important;
  padding: 5px 0 3px 15px !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn .at-icon-wrapper{
  line-height: 25px !important;
  width: 25px !important;
  height: 25px !important;
  margin: 3px -3px 3px 3px;
}
.expanding-share-buttons .at-style-responsive .at-share-btn .at-icon-wrapper svg{
  width: 25px !important;
  Height: 25px !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn .at-label{
  font-size: 0px !important;
  transition: all 300ms ease-in-out;
}
.expanding-share-buttons .at-resp-share-element .at-share-btn:focus, .expanding-share-buttons .at-resp-share-element .at-share-btn:hover{
  transform: none;
  -webkit-transform: none;
  padding: 5px 15px 3px 15px !important;
}
.expanding-share-buttons .at-resp-share-element .at-share-btn:focus .at-label, .expanding-share-buttons .at-resp-share-element .at-share-btn:hover .at-label{
  font-size: 14px !important;
}

/*facebook button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-facebook{
  border: 1px solid  rgb(59, 89, 152) !important;
  fill: rgb(59, 89, 152) !important;
  margin-left: 50px;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-facebook svg{
  fill: rgb(59, 89, 152) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-facebook:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-facebook:hover{
  background-color: rgb(59, 89, 152) !important;
  color: #fff !important;
}

/*twitter button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-twitter{
  border: 1px solid  rgb(29, 161, 242) !important;
  fill: rgb(29, 161, 242) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-twitter svg{
  fill: rgb(29, 161, 242) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-twitter:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-twitter:hover{
  background-color: rgb(29, 161, 242) !important;
  color: #fff !important;
}

/*google_plusone_share button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-google_plusone_share{
  border: 1px solid  rgb(220, 78, 65) !important;
  fill: rgb(220, 78, 65) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-google_plusone_share svg{
  fill: rgb(220, 78, 65) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-google_plusone_share:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-google_plusone_share:hover{
  background-color: rgb(220, 78, 65) !important;
  color: #fff !important;
}

/*pinterest_share button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-pinterest_share{
  border: 1px solid  rgb(203, 32, 39) !important;
  fill: rgb(203, 32, 39) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-pinterest_share svg{
  fill: rgb(203, 32, 39) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-pinterest_share:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-pinterest_share:hover{
  background-color: rgb(203, 32, 39) !important;
  color: #fff !important;
}

/*linkedin button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-linkedin{
  border: 1px solid  rgb(0, 119, 181) !important;
  fill: rgb(0, 119, 181) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-linkedin svg{
  fill: rgb(0, 119, 181) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-linkedin:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-linkedin:hover{
  background-color: rgb(0, 119, 181) !important;
  color: #fff !important;
}

/*stumbleupon button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-stumbleupon{
  border: 1px solid  rgb(235, 73, 36) !important;
  fill: rgb(235, 73, 36) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-stumbleupon svg{
  fill: rgb(235, 73, 36) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-stumbleupon:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-stumbleupon:hover{
  background-color: rgb(235, 73, 36) !important;
  color: #fff !important;
}

/*compact button*/
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact{
  border: 1px solid  rgb(255, 101, 80) !important;
  fill: rgb(255, 101, 80) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact svg{
  fill: rgb(255, 101, 80) !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact:hover svg{
  fill: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact:hover{
  background-color: rgb(255, 101, 80) !important;
  color: #fff !important;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact .at4-share-count-container{
  position: absolute;
  display: block;
  color: #222 !important;
  left: 0px;
  top: -3px;
  font-size: 21px !important;
  font-weight: 700;
  font-family: 'Open Sans',helvetica,arial,sans-serif;
  text-align: center;
  line-height: 20px;
}
.expanding-share-buttons .at-style-responsive .at-share-btn.at-svc-compact .at4-share-count-container:after{
  content: 'shares';
  display:block;
  font-size:11px;
  line-height: 10px !important;
  color: #777;
  text-transform:uppercase
}

/*Sidebar social counter*/
.sf-col-one-icon{
  margin-top: 0px;
}
.sf-front a, .sf-front .sf-love{
  padding: 0;
}
.sf-counter-container div[data-social~=facebook]{
  border-bottom: 3px solid #3b5998;
  cursor: pointer;
}
.sf-counter-container div[data-social~=facebook]>div{
    background-color: transparent;
  transition: 300ms all ease-in-out;
}
.sf-counter-container div[data-social~=facebook]>div:hover, .sf-counter-container div[data-social~=facebook]:focus{
  background-color:#3b5998 !important;
}
.sf-counter-container div[data-social~=facebook]>div:hover a, .sf-counter-container div[data-social~=facebook]>div:focus a, .sf-counter-container div[data-social~=facebook]>div:hover a i, .sf-counter-container div[data-social~=facebook]>div:focus a i, .sf-counter-container div[data-social~=facebook]>div:hover a small, .sf-counter-container div[data-social~=facebook]>div:focus a small{
  color: #fff !important;
}
.sf-counter-container div[data-social~=twitter]{
  border-bottom: 3px solid #4099ff;
  cursor: pointer;
}
.sf-counter-container div[data-social~=twitter]>div{
    background-color: transparent;
  transition: 300ms all ease-in-out;
}
.sf-counter-container div[data-social~=twitter]>div:hover, .sf-counter-container div[data-social~=twitter]:focus{
  background-color:#4099ff !important;
}
.sf-counter-container div[data-social~=twitter]>div:hover a, .sf-counter-container div[data-social~=twitter]>div:focus a, .sf-counter-container div[data-social~=twitter]>div:hover a i, .sf-counter-container div[data-social~=twitter]>div:focus a i, .sf-counter-container div[data-social~=twitter]>div:hover a small, .sf-counter-container div[data-social~=twitter]>div:focus a small{
  color: #fff !important;
}
.sf-counter-container div[data-social~=pinterest]{
  border-bottom: 3px solid #cb2027;
  cursor: pointer;
}
.sf-counter-container div[data-social~=pinterest]>div{
    background-color: transparent;
  transition: 300ms all ease-in-out;
}
.sf-counter-container div[data-social~=pinterest]>div:hover, .sf-counter-container div[data-social~=pinterest]:focus{
  background-color:#cb2027 !important;
}
.sf-counter-container div[data-social~=pinterest]>div:hover a, .sf-counter-container div[data-social~=pinterest]>div:focus a, .sf-counter-container div[data-social~=pinterest]>div:hover a i, .sf-counter-container div[data-social~=pinterest]>div:focus a i, .sf-counter-container div[data-social~=pinterest]>div:hover a small, .sf-counter-container div[data-social~=pinterest]>div:focus a small{
  color: #fff !important;
}
.sf-col-one-icon a i{
  font-size: 21px;
  margin-top: 10px
}
.sf-counter-container a, .sf-front small{
  color: #444;
}
.sf-counter-container .sf-block{
  margin-bottom: 1px;
}

/*Styling share buttons over the images*/
#at-image-sharing-tool{
  margin-top: 32px;
}
#at-image-sharing-tool .at-share-btn{
  display: block;
}

/*SIMPLE share buttons (archive page)*/
.simple-share-buttons div.addthis_toolbox a{
  line-height: 42px !important;
  vertical-align: middle !important;
  height: 42px !important;
  overflow: hidden;
  font-size: 14px !important;
  font-family: 'Open Sans',helvetica,arial,sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 14px;
  margin-left: 5px
}
.simple-share-buttons div.addthis_toolbox a>span{
  line-height: 25px !important;
  width: 25px !important;
  height: 25px !important;
  background: none !important;
  margin-right: 5px;
}
.simple-share-buttons div.addthis_toolbox a>span svg{
  width: 25px !important;
  height: 25px !important;
}

/*facebook*/
.simple-share-buttons div.addthis_toolbox a.addthis_button_facebook{
  border: 1px solid #3B5998;
  color: #3B5998;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_facebook svg{
  background-color: #fff;
  fill: #3B5998;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_facebook:hover{
  background-color: #3B5998;
  color: #fff;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_facebook:hover svg{
  background-color: #3B5998;
  fill: #fff;
}

/*twitter*/
.simple-share-buttons div.addthis_toolbox a.addthis_button_twitter{
  border: 1px solid #1DA1F2;
  color: #1DA1F2;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_twitter svg{
  background-color: #fff;
  fill: #1DA1F2;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_twitter:hover{
  background-color: #1DA1F2;
  color: #fff;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_twitter:hover svg{
  background-color: #1DA1F2;
  fill: #fff;
}

/*pinterest_share*/
.simple-share-buttons div.addthis_toolbox a.addthis_button_pinterest_share{
  border: 1px solid #CB2027;
  color: #CB2027;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_pinterest_share svg{
  background-color: #fff;
  fill: #CB2027;
  transition: all 300ms ease-in-out;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_pinterest_share:hover{
  background-color: #CB2027;
  color: #fff;
}
.simple-share-buttons div.addthis_toolbox a.addthis_button_pinterest_share:hover svg{
  background-color: #CB2027;
  fill: #fff;
}/* add this buttons styling end*/

.hp-slider-item-container{
  margin-right: 20px;
}
.hp-slider-item-container img{
  width: 100%;
}
.hp-slider-item-title{
  font-size: 2.2rem;
  color: #222;
  font-weight: 200;
  margin-bottom: 22px;
  padding-top: 15px;
  line-height: 22px;
}
.hp-slider-footer{
  font-size: 14px;
  line-height: 14px;
}
.hp-slider-footer a{
  color: #222;
}
.hp-slider-footer a:hover, .hp-slider-item-title:hover{
  color: #45c3f1;
}
.slick-prev, .slick-next {
  height: auto !important;
  bottom: -40px;
  top: auto !important;
  transform: none !important;
}
.slick-prev {
    left: 0 !important;
    background: url(images/left-arrow.png) no-repeat scroll 0 0 !important;
    width: 32px !important;
    height: 32px !important;
}

.slick-next {
    right: auto !important;
    left: 40px !important;
    background: url(images/right-arrow.png) no-repeat scroll 0 0 !important;
    width: 32px !important;
    height: 32px !important;
}
.slick-prev:before, .slick-next:before {
  content: '' !important;
}
.slick-list{
  width: calc(100% + 20px)
}
.hp-slider-footer .category-list-comma:last-child{
  display: none;
}

.sharebox{
  border: 1px solid #4bc2f0;
  color: #4bc2f0;
  padding: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-family: 'Dosis', Helvetica, Arial, sans-serif;
  margin: 20px;
}
.sharebox p{
  margin: 0;
}
.sharebox-large{
  width: 100%;
  display:block;
  margin: 15px 0;
}
.sharebox-small{
  width: 50%;
  display:inline-block;
  min-width: 300px;
}
.sharebox-left{
  margin-left: 0;
  float: left;
}
.sharebox-right{
  margin-right: 0;
  float: right;
}
.sharebox-center{
  display:block;
  margin-left: auto;
  margin-right: auto;
}
.sharebox-text-center{
  text-align:center;
}
.sharebox-text-left{
  text-align:left;
}
.sharebox-text-right{
  text-align:right;
}
.sharebox-button{
  font-family:'Dosis', Helvetica, Arial, sans-serif;
  text-transform:uppercase;
  font-size: 12px;
  padding: 5px;
  font-weight: 700;
}
.sharebox-button span.dashicons{
    vertical-align: middle;
    height: 15px;
    width: 15px;
    line-height: 15px;
    font-size: 15px;
    margin-top: -3px;
    margin-left: 5px;
}
.sharebox-buttons{
  text-align: right;
}

@media screen and (max-width: 1266px) {
	#container-fullscreen-gallery,
	.container-center {
		max-width: 728px;
	}
}
@media screen and (max-width: 1024px) {
	.container-left,
	.container-right {
		display: none;
	}
}
@media screen and (max-width: 740px) {
	.container-top {
		display: none;
	}
	#container-fullscreen-gallery,
	.container-center {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
  .hp-slider-item-title, .hp-slider-footer{
	  display:none;
	}
}
@media screen and (max-width: 480px){
    .sharebox-small{
	  width: 100%;
	  display:block;
	}
}
@media screen and (max-height: 600px) {
	.container-top {
		display: none;
	}

}
@media screen and (max-height: 540px) {
	.gallery-area .gallery-for.slick-slider {
		display: none;
	}
}
