@charset 'UTF-8';
/**============================================================
* Theme Name: Blockter
* Version: 2.3
* Description: Movie database form Haintheme
* Author: Haintheme
* Text Domain: blockter
* Author URI: http://themeforest.net/user/haintheme
* Theme URI: http://haintheme.com
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: custom-background, threaded-comments, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*============================================================*/
/**
* TABLE OF CONTENT
* ----------------
* ----------------
* I. GENERAL
* 	I.1. BASE
* 	I.2. COMMON
* 	I.3. GRID SYSTEM
* 	I.4. TYPOGRAPHY
* II. COMPONENT
* 	II.1. PLUGINS
* 	II.2. NPROGRESS
* 	II.3. CUSTOM
* III. PARTIALS
* 	III.1. PAGE
* 	III.2. HEADER
* 		III.2.1 Navigation
* 	III.3. FOOTER
* 	III.4. SIDEBAR
* 	III.5. POSTS
*/
/* I. GENERAL
***********************/
/* I.1. BASE */
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  outline: 0;
}
a img {
  border: 0;
}
/*--------------------------------------------
Initial Setup
----------------------------------------------*/
a {
  text-decoration: none;
}
input:focus,
textarea:focus {
  outline: none;
}
img,
video {
  max-width: 100%;
  vertical-align: top;
}
audio,
canvas,
video {
  display: inline;
  zoom: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
/*--------------------------------------------
General
----------------------------------------------*/
::-webkit-input-placeholder {
  -webkit-font-smoothing: antialiased;
}
:-moz-placeholder {
  /* Firefox 18- */
  -moz-osx-font-smoothing: grayscale;
}
::-moz-placeholder {
  /* Firefox 19+ */
  -moz-osx-font-smoothing: grayscale;
}
a,
a:visited {
  cursor: hand;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #212121;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #212121;
}
/*--------------------------------------------
Combo CSS
----------------------------------------------*/
.clr {
  *zoom: 1;
}
.clr:before,
.clr:after {
  content: " ";
  display: table;
}
.clr:after {
  clear: both;
}
.icf {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.tran,
a,
.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap .mfp-content,
.owl-controls .owl-dot {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*--------------------------------------------
Popup Effects
----------------------------------------------*/
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/* I.2. COMMON */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.content {
  padding: 50px 0;
}
.post-1134 ul,
.post-1178 ul,
.postid-1148 ul {
  list-style: inside;
}
article header ul,
.page header ul {
  list-style: none;
}
article ol,
.page ol {
  list-style-type: decimal;
  padding-left: 15px;
}
article blockquote,
.page blockquote {
  border-left: #eee 5px solid;
  padding-left: 10px;
}
article blockquote p,
.page blockquote p {
  font-style: italic;
  font-size: 110%;
}
.screen-reader-text {
  display: none;
}
/*flex box*/
/* calc */
/* I.3. CUSTOM VAR MIXIN */
/* I.4. GRID SYSTEM */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.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 {
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  vertical-align: top;
  float: none;
  width: 100%;
}
.col-xs-12 {
  width: 100%;
  float: left;
}
.col-xs-11 {
  width: 91.66666667%;
  float: left;
}
.col-xs-10 {
  width: 83.33333333%;
  float: left;
}
.col-xs-9 {
  width: 75%;
  float: left;
}
.col-xs-8 {
  width: 66.66666667%;
  float: left;
}
.col-xs-7 {
  width: 58.33333333%;
  float: left;
}
.col-xs-6 {
  width: 50%;
  float: left;
}
.col-xs-5 {
  width: 41.66666667%;
  float: left;
}
.col-xs-4 {
  width: 33.33333333%;
  float: left;
}
.col-xs-3 {
  width: 25%;
  float: left;
}
.col-xs-2 {
  width: 16.66666667%;
  float: left;
}
.col-xs-1 {
  width: 8.33333333%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-12 {
    width: 100%;
    float: left;
  }
  .col-sm-11 {
    width: 91.66666667%;
    float: left;
  }
  .col-sm-10 {
    width: 83.33333333%;
    float: left;
  }
  .col-sm-9 {
    width: 75%;
    float: left;
  }
  .col-sm-8 {
    width: 66.66666667%;
    float: left;
  }
  .col-sm-7 {
    width: 58.33333333%;
    float: left;
  }
  .col-sm-6 {
    width: 50%;
    float: left;
  }
  .col-sm-5 {
    width: 41.66666667%;
    float: left;
  }
  .col-sm-4 {
    width: 33.33333333%;
    float: left;
  }
  .col-sm-3 {
    width: 25%;
    float: left;
  }
  .col-sm-2 {
    width: 16.66666667%;
    float: left;
  }
  .col-sm-1 {
    width: 8.33333333%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-12 {
    width: 100%;
    float: left;
  }
  .col-md-11 {
    width: 91.66666667%;
    float: left;
  }
  .col-md-10 {
    width: 83.33333333%;
    float: left;
  }
  .col-md-9 {
    width: 75%;
    float: left;
  }
  .col-md-8 {
    width: 66.66666667%;
    float: left;
  }
  .col-md-7 {
    width: 58.33333333%;
    float: left;
  }
  .col-md-6 {
    width: 50%;
    float: left;
  }
  .col-md-5 {
    width: 41.66666667%;
    float: left;
  }
  .col-md-4 {
    width: 33.33333333%;
    float: left;
  }
  .col-md-3 {
    width: 25%;
    float: left;
  }
  .col-md-2 {
    width: 16.66666667%;
    float: left;
  }
  .col-md-1 {
    width: 8.33333333%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-12 {
    width: 100%;
    float: left;
  }
  .col-lg-11 {
    width: 91.66666667%;
    float: left;
  }
  .col-lg-10 {
    width: 83.33333333%;
    float: left;
  }
  .col-lg-9 {
    width: 75%;
    float: left;
  }
  .col-lg-8 {
    width: 66.66666667%;
    float: left;
  }
  .col-lg-7 {
    width: 58.33333333%;
    float: left;
  }
  .col-lg-6 {
    width: 50%;
    float: left;
  }
  .col-lg-5 {
    width: 41.66666667%;
    float: left;
  }
  .col-lg-4 {
    width: 33.33333333%;
    float: left;
  }
  .col-lg-3 {
    width: 25%;
    float: left;
  }
  .col-lg-2 {
    width: 16.66666667%;
    float: left;
  }
  .col-lg-1 {
    width: 8.33333333%;
    float: left;
  }
}
.col-lg-20 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  font-size: 15px;
  vertical-align: top;
}
@media (min-width: 1200px) {
  .col-lg-20 {
    float: left;
    width: 20%;
  }
}
.col-md-20 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
}
@media (min-width: 992px) {
  .col-md-20 {
    float: left;
    width: 20%;
  }
}
.hidden {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .no-padding-xs {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
  .no-padding-sm {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .no-padding-md {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
  .no-padding-lg {
    padding: 0;
  }
}
html,
body {
  overflow-x: hidden;
}
.container {
  max-width: 320px;
}
@media only screen and (min-width: 30em) {
  .container {
    max-width: 480px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 640px;
  }
}
@media only screen and (min-width: 992px) {
  [class*="col"] {
    margin-bottom: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0;
  }
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  [class*="col"] {
    margin-bottom: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 0;
  }
  .container {
    max-width: 1170px;
  }
  .boxed {
    max-width: 1200px;
    margin: auto;
  }
}
/* I.5. TYPOGRAPHY */
html {
  font-size: 14px;
}
body {
  font-size: 14px;
  color: #abb7c4;
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  line-height: 1;
}
button,
input,
select,
textarea {
  font-family: 'Nunito', sans-serif;
  line-height: 1;
  color: #404040;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  clear: both;
  margin: 15px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}
h1 {
  font-size: 32px;
  line-height: 64px;
}
h2 {
  font-size: 28px;
  line-height: 56px;
}
h3 {
  font-size: 24px;
  line-height: 48px;
}
h4 {
  font-size: 20px;
  line-height: 40px;
}
h5 {
  font-size: 18px;
  line-height: 36px;
}
h6 {
  font-size: 16px;
  line-height: 32px;
}
p {
  line-height: 24px;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  margin-bottom: 1.65em;
  color: #abb7c4;
}
li ul,
li ol {
  padding-left: 0;
  margin-left: 15px;
}
b,
strong {
  font-weight: 700;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
li,
figcaption {
  line-height: 24px;
  font-family: 'Nunito', sans-serif;
}
blockquote {
  color: #abb7c4;
  font-size: 18pt;
  line-height: 1.6667;
  margin: 20px 0 20px 70px;
  font-style: italic;
  padding: 5px 40px;
  position: relative;
  clear: both;
  display: block;
  background: none;
  font-family: 'Nunito', sans-serif;
}
blockquote p {
  color: #abb7c4 !important;
  margin-left: 20px;
  line-height: 26px;
  font-family: 'Nunito', sans-serif;
}
blockquote cite a {
  color: #4280bf;
}
blockquote cite a:hover {
  color: #dcf836;
}
@media (max-width: 767px) {
  blockquote {
    font-size: 14pt;
    padding: 0px 15px 0 40px;
    margin: 20px 0 20px 20px;
  }
}
@media (min-width: 992px) {
  blockquote p {
    font-size: 18px !important;
    font-style: italic !important;
  }
}
blockquote p {
  margin-bottom: 1.6667em;
}
blockquote > p:last-child {
  margin-bottom: 0;
}
blockquote cite,
blockquote small {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
blockquote a {
  font-size: 16px;
  color: #abb7c4;
}
blockquote a:hover {
  text-decoration: none;
}
blockquote em,
blockquote i,
blockquote cite {
  font-style: normal;
}
blockquote strong,
blockquote b {
  color: #abb7c4;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
blockquote.alignleft {
  margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
}
blockquote.alignright {
  margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
}
blockquote.aligncenter {
  margin-bottom: 1.473684211em;
}
address {
  font-style: italic;
  margin: 0 0 1.6em;
  line-height: 24px;
}
code,
kbd,
tt,
var,
samp,
pre {
  font-family: Inconsolata, monospace;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre {
  background-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid #eaeaea;
  border: 1px solid rgba(51, 51, 51, 0.1);
  line-height: 24px;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 0.8em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
abbr[title] {
  border-bottom: 1px dotted #eaeaea;
  border-bottom: 1px dotted rgba(51, 51, 51, 0.1);
  cursor: help;
}
mark,
ins {
  background-color: #fff9c0;
  text-decoration: none;
}
sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}
small {
  font-size: 75%;
}
big {
  font-size: 125%;
}
hr {
  background-color: #eaeaea;
  background-color: rgba(51, 51, 51, 0.1);
  border: 0;
  height: 1px;
  margin: 15px 0;
}
table,
th,
td {
  border: 1px solid #405266;
  font-family: 'Nunito', sans-serif;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 20px 0;
  table-layout: fixed;
  /* Prevents HTML tables from becoming too wide */
  max-width: 100%;
  width: 100%;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
th {
  border-width: 0 1px 1px 0;
  font-weight: 700;
  color: #abb7c4;
}
td {
  border-width: 0 1px 1px 0;
}
th,
td {
  padding: 0.62em;
}
.padding-right table th,
.padding-right table td {
  padding: 1em;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
del {
  opacity: 0.8;
}
/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #abb7c4;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
}
:-moz-placeholder {
  color: #abb7c4;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
}
::-moz-placeholder {
  color: #abb7c4;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #abb7c4;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
}
textarea {
  max-width: 100%;
}
a {
  color: #999;
  text-decoration: none;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
a:hover {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
dl {
  margin: 0 0 1.75em;
  line-height: 24px;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 0 10px;
}
.gallery-icon img {
  margin: 0 auto;
}
.bypostauthor {
  outline: none;
}
.gallery-caption {
  color: #686868;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 0.5384615385em;
  padding-right: 30px;
}
.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-item {
  width: 100%;
  display: inline-block;
  text-align: left;
  vertical-align: top;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  padding-right: 15px;
}
/* Alignments */
.alignleft {
  float: left;
  margin: 0.375em 1.75em 1.75em 0;
}
.alignright {
  float: right;
  margin: 0.375em 0 1.75em 1.75em;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}
figure.wp-caption.alignnone {
  margin: 0;
  max-width: 100%;
}
.blockter-start-page .page .flw {
  display: inline-block;
  width: 100%;
}
/* II. COMPONENT
***********************/
.page_content {
  display: inline-block;
  width: 100%;
}
.blog-standard,
.blog-grid,
.page-background {
  background-color: #020d18;
  padding: 80px 0;
}
article.post,
article .sc-blog-item {
  margin-bottom: 30px;
}
article.post .posted_date span,
article .sc-blog-item .posted_date span {
  font-size: 14px;
}
article.post .blog-post-content,
article .sc-blog-item .blog-post-content {
  background-color: #071829;
  padding: 30px;
}
@media (max-width: 991px) {
  article.post .blog-post-content,
  article .sc-blog-item .blog-post-content {
    padding: 15px;
  }
}
article.post .blog-post-content .post-tit,
article .sc-blog-item .blog-post-content .post-tit {
  margin-bottom: 15px;
}
article.post .blog-post-content .post-tit a,
article .sc-blog-item .blog-post-content .post-tit a {
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #4280bf;
  font-weight: 700;
  text-transform: none;
}
article.post .blog-post-content .post-tit a:hover,
article .sc-blog-item .blog-post-content .post-tit a:hover {
  color: #dcf836;
}
article.post .blog-post-content .blog-post-info,
article .sc-blog-item .blog-post-content .blog-post-info {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
article.post .blog-post-content .blog-post-info li,
article .sc-blog-item .blog-post-content .blog-post-info li {
  margin-right: 15px;
}
article.post .blog-post-content .blog-post-sumary,
article .sc-blog-item .blog-post-content .blog-post-sumary {
  margin-bottom: 30px;
  margin-top: 15px;
}
article.post .blog-post-content .blog-btn-more,
article .sc-blog-item .blog-post-content .blog-btn-more {
  padding: 12px 30px;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background-color: #dd003f;
}
.single .posted_date {
  margin: 15px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: #abb7c4;
  font-size: 14px;
}
.flex-center {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .flex-center {
    flex-wrap: wrap;
  }
}
/*blog standard*/
.blog-standard .sc-blog-item,
.archive .sc-blog-item {
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
}
@media (max-width: 767px) {
  .blog-standard .sc-blog-item,
  .archive .sc-blog-item {
    flex-direction: column;
    height: auto;
  }
}
.blog-standard .sc-blog-item .blog-post-cover,
.archive .sc-blog-item .blog-post-cover {
  min-width: 260px;
}
.blog-standard .sc-blog-item .blog-post-cover a,
.archive .sc-blog-item .blog-post-cover a {
  display: inline-block;
}
@media (max-width: 767px) {
  .blog-standard .sc-blog-item .blog-post-cover,
  .archive .sc-blog-item .blog-post-cover {
    width: 100%;
  }
  .blog-standard .sc-blog-item .blog-post-cover img,
  .archive .sc-blog-item .blog-post-cover img {
    width: 100%;
  }
}
.blog-standard .sc-blog-item .blog-post-content,
.archive .sc-blog-item .blog-post-content {
  width: 100%;
}
@media (max-width: 767px) {
  .blog-standard .sc-blog-item .blog-post-content,
  .archive .sc-blog-item .blog-post-content {
    max-width: 100%;
    height: auto;
    padding: 30px 15px;
  }
}
.blog-standard .sc-blog-item .blog-post-content .post-tit,
.archive .sc-blog-item .blog-post-content .post-tit {
  line-height: 24px;
  margin-bottom: 5px;
}
.blog-standard .sc-blog-item .blog-post-content .blog-post-sumary,
.archive .sc-blog-item .blog-post-content .blog-post-sumary {
  margin: 0;
}
.blog-standard .sc-blog-item .blog-post-content .blog-post-sumary p,
.archive .sc-blog-item .blog-post-content .blog-post-sumary p {
  max-height: 50px;
  overflow: hidden;
}
.blog-standard .flex-rowwrap,
.archive .flex-rowwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/*blog grid*/
.blog-grid {
  display: inline-block;
  width: 100%;
}
.blog-grid .flex-col .flex-rowwrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .blog-grid .flex-col .blog-grid-it {
    max-width: 300px;
  }
  .blog-grid .flex-col .flex-rowwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.blog-grid .non-wrap-item {
  display: flex;
  flex-wrap: wrap;
}
.blog-grid .sc-blog-item .post-tit {
  line-height: 24px;
  margin-bottom: 5px;
}
.blog-grid .sc-blog-item .blog-post-cover {
  margin-bottom: 30px;
}
.blog-grid .sc-blog-item .blog-post-content {
  padding: 0;
  background: none;
}
.blog-grid .sc-blog-item .blog-post-sumary {
  margin: 0;
}
.blog-grid .sc-blog-item .blog-post-sumary p {
  max-height: 50px;
  overflow: hidden;
}
.blog-grid .sc-blog-item .blog-post-cover,
.blog-standard .sc-blog-item .blog-post-cover,
.archive .sc-blog-item .blog-post-cover {
  overflow: hidden;
}
.blog-grid .sc-blog-item .blog-post-cover img,
.blog-standard .sc-blog-item .blog-post-cover img,
.archive .sc-blog-item .blog-post-cover img {
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.blog-grid .sc-blog-item .blog-post-content .post-tit a,
.blog-standard .sc-blog-item .blog-post-content .post-tit a,
.archive .sc-blog-item .blog-post-content .post-tit a {
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.blog-grid .sc-blog-item:hover .blog-post-cover img,
.blog-standard .sc-blog-item:hover .blog-post-cover img,
.archive .sc-blog-item:hover .blog-post-cover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.blog-grid .sc-blog-item:hover .blog-post-content .post-tit a,
.blog-standard .sc-blog-item:hover .blog-post-content .post-tit a,
.archive .sc-blog-item:hover .blog-post-content .post-tit a {
  color: #dcf836;
  cursor: pointer;
}
/*pagination*/
.paging-navigation {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.paging-navigation .current {
  color: #dcf836;
  border: 1px solid #dcf836;
}
.paging-navigation span,
.paging-navigation a {
  margin: 0 3px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
  height: 33px;
  width: 33px;
  border: 1px solid #405266;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.paging-navigation span:hover,
.paging-navigation a:hover {
  color: #dcf836;
  border: 1px solid #dcf836;
}
/*single*/
.single article {
  background-color: #020d18;
}
.single article .post-tit {
  font-family: 'Dosis', sans-serif;
  font-size: 36px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  line-height: 42px;
}
.single article .posted_date span {
  font-size: 16px;
}
.single article .blog-post-cover {
  margin-bottom: 30px;
}
.single article .blog-post-content {
  background-color: #020d18;
  padding: 0;
}
.single article p {
  margin: 15px 0;
}
.single article .blog-inner-single-flex {
  display: flex;
}
@media (max-width: 991px) {
  .single article .blog-inner-single-flex {
    flex-direction: column;
  }
}
.single article .blog-inner-single-flex .text {
  width: 55%;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .single article .blog-inner-single-flex .text {
    width: 100%;
  }
}
/*comment*/
.comments-area {
  border-top: 1px solid #405266;
}
.consult-comment-related,
.comments-area {
  margin-top: 30px;
  padding-top: 30px;
}
.consult-comment-related .comments-area,
.comments-area .comments-area {
  background: none;
}
.consult-comment-related .comment-reply-title,
.comments-area .comment-reply-title {
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 30px;
}
.consult-comment-related .comment-form,
.comments-area .comment-form {
  background: #020d18;
}
.consult-comment-related .comment-form p,
.comments-area .comment-form p {
  margin-bottom: 20px;
}
.consult-comment-related label,
.comments-area label {
  color: #abb7c4;
}
.consult-comment-related textarea,
.comments-area textarea,
.consult-comment-related input,
.comments-area input,
.consult-comment-related input::placeholder,
.comments-area input::placeholder,
.consult-comment-related textarea::placeholder,
.comments-area textarea::placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: initial;
  -webkit-appearance: none;
}
.consult-comment-related textarea:focus,
.comments-area textarea:focus,
.consult-comment-related input:focus,
.comments-area input:focus {
  border: 1px solid #dcf836;
}
.consult-comment-related textarea,
.comments-area textarea {
  width: 100%;
  height: 250px;
  margin-top: 10px;
  border: 1px solid #405266;
  background-color: #020d18;
  padding: 15px;
  margin-bottom: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: initial;
}
.consult-comment-related input,
.comments-area input {
  height: 40px;
  width: 100%;
  border: 1px solid #405266;
  margin-top: 10px;
  background-color: #020d18;
  padding: 15px;
}
.consult-comment-related .flex-item,
.comments-area .flex-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .consult-comment-related .flex-item,
  .comments-area .flex-item {
    flex-direction: column;
  }
}
.consult-comment-related .name,
.comments-area .name,
.consult-comment-related .mail,
.comments-area .mail {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.consult-comment-related .name,
.comments-area .name {
  margin-right: 30px;
}
.consult-comment-related .submit,
.comments-area .submit {
  width: 140px;
  height: 42px;
  padding: 0;
  color: #ffffff;
  background-color: #dd003f;
  font-family: 'Dosis', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
  border: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
}
.consult-comment-related .submit:hover,
.comments-area .submit:hover {
  background-color: #dcf836;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #020d18;
}
.consult-comment-related .comment-total-title,
.comments-area .comment-total-title {
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.consult-comment-related .comment-list,
.comments-area .comment-list {
  list-style: none;
}
.consult-comment-related .comment-list .comment-item,
.comments-area .comment-list .comment-item,
.consult-comment-related .comment-list .comment,
.comments-area .comment-list .comment {
  background-color: #071829;
  margin-bottom: 30px;
  padding: 15px;
  display: flex;
}
@media (max-width: 767px) {
  .consult-comment-related .comment-list .comment-item,
  .comments-area .comment-list .comment-item,
  .consult-comment-related .comment-list .comment,
  .comments-area .comment-list .comment {
    border-bottom: 1px solid #405266;
    padding-bottom: 30px;
  }
}
.consult-comment-related .comment-list .comment-item .comment-avatar,
.comments-area .comment-list .comment-item .comment-avatar,
.consult-comment-related .comment-list .comment .comment-avatar,
.comments-area .comment-list .comment .comment-avatar {
  width: 60px;
  height: 60px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .consult-comment-related .comment-list .comment-item .comment-avatar,
  .comments-area .comment-list .comment-item .comment-avatar,
  .consult-comment-related .comment-list .comment .comment-avatar,
  .comments-area .comment-list .comment .comment-avatar {
    margin-bottom: 20px;
    margin-right: 15px;
    width: 25px;
    height: 25px;
  }
  .consult-comment-related .comment-list .comment-item .comment-avatar img,
  .comments-area .comment-list .comment-item .comment-avatar img,
  .consult-comment-related .comment-list .comment .comment-avatar img,
  .comments-area .comment-list .comment .comment-avatar img {
    height: 25px;
  }
}
.consult-comment-related .comment-list .comment-item .comment-avatar img,
.comments-area .comment-list .comment-item .comment-avatar img,
.consult-comment-related .comment-list .comment .comment-avatar img,
.comments-area .comment-list .comment .comment-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.consult-comment-related .comment-list .comment-item .comment-content,
.comments-area .comment-list .comment-item .comment-content,
.consult-comment-related .comment-list .comment .comment-content,
.comments-area .comment-list .comment .comment-content {
  max-width: -webkit-calc(100% - 90px);
  max-width: -moz-calc(100% - 90px);
  max-width: -o-calc(100% - 90px);
  max-width: calc(100% - 90px);
}
@media (max-width: 767px) {
  .consult-comment-related .comment-list .comment-item .comment-content,
  .comments-area .comment-list .comment-item .comment-content,
  .consult-comment-related .comment-list .comment .comment-content,
  .comments-area .comment-list .comment .comment-content {
    max-width: -webkit-calc(100% - 40px);
    max-width: -moz-calc(100% - 40px);
    max-width: -o-calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
}
.consult-comment-related .comment-list .comment-item .comment-content .content-text,
.comments-area .comment-list .comment-item .comment-content .content-text,
.consult-comment-related .comment-list .comment .comment-content .content-text,
.comments-area .comment-list .comment .comment-content .content-text {
  color: #020d18;
}
.consult-comment-related .comment-list .comment-item .comment-content .comment-author-name,
.comments-area .comment-list .comment-item .comment-content .comment-author-name,
.consult-comment-related .comment-list .comment .comment-content .comment-author-name,
.comments-area .comment-list .comment .comment-content .comment-author-name {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  margin-right: 15px;
}
.consult-comment-related .comment-list .comment-item .comment-content .flex-it,
.comments-area .comment-list .comment-item .comment-content .flex-it,
.consult-comment-related .comment-list .comment .comment-content .flex-it,
.comments-area .comment-list .comment .comment-content .flex-it {
  display: flex;
  align-items: center;
}
.consult-comment-related .comment-list .comment-item .comment-content .flex-it .comment-time,
.comments-area .comment-list .comment-item .comment-content .flex-it .comment-time,
.consult-comment-related .comment-list .comment .comment-content .flex-it .comment-time,
.comments-area .comment-list .comment .comment-content .flex-it .comment-time {
  font-family: 'Dosis', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: capitalize;
  margin-right: 15px;
}
.consult-comment-related .comment-list .comment-item .comment-content .flex-it .comment-time span,
.comments-area .comment-list .comment-item .comment-content .flex-it .comment-time span,
.consult-comment-related .comment-list .comment .comment-content .flex-it .comment-time span,
.comments-area .comment-list .comment .comment-content .flex-it .comment-time span {
  margin: 0 2px;
}
.consult-comment-related .comment-list .comment-item .comment-content .flex-it a:hover,
.comments-area .comment-list .comment-item .comment-content .flex-it a:hover,
.consult-comment-related .comment-list .comment .comment-content .flex-it a:hover,
.comments-area .comment-list .comment .comment-content .flex-it a:hover {
  color: #dcf836;
}
.consult-comment-related .comment-list .comment-item .comment-content .flex-it .comment-edit-link,
.comments-area .comment-list .comment-item .comment-content .flex-it .comment-edit-link,
.consult-comment-related .comment-list .comment .comment-content .flex-it .comment-edit-link,
.comments-area .comment-list .comment .comment-content .flex-it .comment-edit-link,
.consult-comment-related .comment-list .comment-item .comment-content .flex-it .comment-reply-link,
.comments-area .comment-list .comment-item .comment-content .flex-it .comment-reply-link,
.consult-comment-related .comment-list .comment .comment-content .flex-it .comment-reply-link,
.comments-area .comment-list .comment .comment-content .flex-it .comment-reply-link {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 15px;
}
.consult-comment-related .comment-list .comment-item:hover .comment-content .comment-author-name,
.comments-area .comment-list .comment-item:hover .comment-content .comment-author-name,
.consult-comment-related .comment-list .comment:hover .comment-content .comment-author-name,
.comments-area .comment-list .comment:hover .comment-content .comment-author-name {
  color: #dcf836;
}
.consult-comment-related .comment-list .children,
.comments-area .comment-list .children {
  margin-left: 40px;
  list-style: none;
}
@media (max-width: 767px) {
  .consult-comment-related .comment-list .children,
  .comments-area .comment-list .children {
    margin-left: 25px;
  }
}
/*comment form feedback extension*/
ol.comment-list .comment {
  display: flex;
  flex-direction: column;
  background: none !important;
  padding: 0px !important;
  margin-bottom: 10px !important;
}
ol.comment-list .comment .comment-body {
  border-bottom: 1px solid #405266;
  padding: 15px 0;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  ol.comment-list .comment .comment-body .comment-meta .flex-it {
    flex-direction: column;
  }
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .flex-it-inner {
  display: flex;
  width: 90%;
  align-items: center;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-author {
  margin-right: 30px;
}
@media (max-width: 767px) {
  ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-author {
    margin-right: 15px;
  }
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-author img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content {
  display: flex;
  flex-direction: column;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .flex-it-ava {
  display: flex;
}
@media (max-width: 767px) {
  ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .flex-it-ava {
    flex-direction: column;
  }
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .flex-it-ava .fn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  margin-right: 10px;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .flex-it-ava .comment-metadata a {
  font-size: 12px;
  color: #abb7c4;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content p {
  margin: 5px 0;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .wrap-rating.listing {
  float: left;
  margin: 5px 0;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .wrap-rating.listing .rating span.voted {
  color: #f5b50a;
}
ol.comment-list .comment .comment-body .comment-meta .flex-it .comment-content .wrap-rating.listing .rating span {
  color: #abb7c4;
}
ol.comment-list .comment .comment-body .edit-link a {
  font-size: 14px;
  color: #abb7c4;
  text-transform: uppercase;
}
ol.comment-list .comment .comment-body .edit-link a:hover {
  color: #dcf836;
}
ol.comment-list .children {
  margin-top: 30px;
}
.comment-respond {
  margin-top: 30px;
}
.comment-respond .rating span.voted,
.comment-respond .rating span.over {
  color: #f5b50a !important;
}
.comment-respond .rating span {
  color: #abb7c4;
}
@media (max-width: 991px) {
  .blog-standard .flex-center,
  .blog-grid .flex-center {
    flex-direction: column;
  }
}
.archive .page_content {
  display: inline-block;
  width: 100%;
  margin-bottom: -10px;
}
.search_result_page .page-title {
  margin-bottom: 30px;
}
.widget_search p,
.page-content p {
  margin-bottom: 30px;
}
.widget_search .search-form,
.page-content .search-form {
  position: relative;
}
.widget_search .search-form input.search-field,
.page-content .search-form input.search-field {
  padding: 0 15px;
  border: 1px solid transparent;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #071829;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
  width: 100%;
}
.widget_search .search-form input:focus,
.page-content .search-form input:focus {
  border: 1px solid #dcf836;
}
.widget_search .search-form .search-submit,
.page-content .search-form .search-submit {
  height: 40px;
  border: none;
  background: none;
  color: #abb7c4;
  font-size: 18px;
  padding: 0 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.widget_search .search-form input::placeholder,
.page-content .search-form input::placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
}
.page-content .search-form {
  width: 250px;
}
.page-header {
  margin-bottom: 30px;
}
.page-links {
  clear: both;
  margin: 30px 0;
}
.post-password-form input {
  height: 40px;
  border: 1px solid #405266;
  background: none;
}
.post-password-form input:focus {
  border-color: #dcf836;
}
.post-password-form input[type='submit'] {
  font-family: 'Dosis', sans-serif;
  color: #ffffff;
  background-color: #dd003f;
  font-size: 14px;
  font-weight: 600;
  padding: 0 30px;
  height: 40px;
  border: none;
}
.post-password-form input[type='submit']:hover {
  background-color: #dcf836;
  color: #020d18;
}
.theme-sticky i {
  font-size: 16px;
  margin-right: 10px;
}
.single .theme-sticky i {
  font-size: 32px;
}
.theme-tags {
  color: #4280bf;
  clear: both;
  margin: 30px 0;
}
.comment-post-pingback {
  padding: 25px 0;
  font-family: 'Nunito', sans-serif;
}
.comment-post-pingback .edit-link {
  margin-left: 15px;
}
.comment-post-pingback .url {
  margin-left: 15px;
}
.comment-post-pingback .url:hover {
  color: #dcf836;
}
.single-ht_movie header .blockter-breadcrumb,
.single-ht_show header .blockter-breadcrumb {
  display: none;
}
.single-ht_movie .movie-single,
.single-ht_show .movie-single {
  margin-top: -415px;
}
.movie-banner {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
}
.movie-banner:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 600px;
  top: 0;
  left: 0;
  background-color: rgba(2, 13, 24, 0.8);
}
.movie_single {
  background-color: #020d18;
  padding: 100px 0;
  display: inline-block;
  width: 100%;
  margin-bottom: -10px;
  position: relative;
  z-index: 99;
}
.movie_single section {
  display: inline-block;
  clear: both;
  width: 100%;
}
.movie_single .movie-poster {
  margin-bottom: 30px;
  max-width: 300px;
}
.movie_single .movie-poster img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .movie_single .movie-poster {
    max-width: 250px;
  }
  .movie_single .movie-poster img {
    max-width: 250px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .movie_single .movie-poster {
    max-width: 280px;
  }
  .movie_single .movie-poster img {
    max-width: 280px;
    height: auto;
  }
}
.movie_single .movie-poster .movie-btns {
  text-align: center;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background-color: #07101a;
  border: 3px solid #0c1c2c;
  overflow: hidden;
}
.movie_single .movie-poster .movie-btns a {
  height: 45px;
}
.movie_single .movie-poster .movie-btns .btn-transform.red {
  margin-bottom: 15px;
}
.movie_single .movie-poster .movie-btns .redbtn:hover {
  color: #ffffff;
}
.movie_single .movie-poster .movie-btns .item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.movie_single .movie-poster .movie-btns .item i {
  margin-right: 10px;
}
.movie_single .movie-poster .movie-btns .redbtn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #dd003f;
}
.movie_single .movie-poster .movie-btns .yellowbtn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #020d18;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #dcf836;
}
.movie_single .movie-poster .movie-btns .yellowbtn i {
  font-size: 16px;
}
.movie_single .movie-single-content .mv-title {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 30px;
}
.movie_single .movie-single-content .rate-average {
  display: flex;
  align-items: center;
  height: 60px;
  border-top: 1px solid #405266;
  border-bottom: 1px solid #405266;
  margin: 30px 0;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .rate-average {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px 0;
  }
}
.movie_single .movie-single-content .rate-average .left-it {
  border-right: 1px solid #405266;
  height: 60px;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .rate-average .left-it {
    padding-right: 0;
    height: auto;
    border-right: 0;
  }
}
.movie_single .movie-single-content .rate-average .left-it span.icon {
  font-size: 30px;
  color: #f5b50a;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .rate-average .left-it span.icon {
    font-size: 26px;
  }
}
.movie_single .movie-single-content .rate-average .left-it .rate-num {
  color: #ffffff;
}
.movie_single .movie-single-content .rate-average .left-it .rate-num span {
  font-size: 16px;
}
.movie_single .movie-single-content .rate-average .left-it .rate-num .sm-text {
  font-size: 12px;
  color: #abb7c4;
}
.movie_single .movie-single-content .rate-average .left-it .rv {
  font-size: 12px;
  color: #4280bf;
}
.movie_single .movie-single-content .rate-average .right-it {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .rate-average .right-it {
    padding-left: 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
.movie_single .movie-single-content .rate-average .right-it .rate-title {
  font-size: 18px;
  text-transform: capitalize;
  margin-right: 15px;
}
.movie_single .movie-single-content .rate-average .right-it .rate-stars .rating span {
  font-size: 30px;
  color: #abb7c4;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .rate-average .right-it .rate-stars .rating span {
    font-size: 26px;
  }
}
.movie_single .movie-single-content .rate-average .right-it .rate-stars .rating .voted {
  color: #f5b50a;
}
.movie_single .movie-single-content .tab-links {
  display: flex;
  margin-bottom: 15px;
  z-index: 999;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .tab-links {
    flex-direction: column;
    margin: 30px 0;
  }
}
.movie_single .movie-single-content .tab-links li {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .tab-links li {
    margin: 15px 0;
  }
}
.movie_single .movie-single-content .tab-links li a {
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #abb7c4;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 30px;
  border-bottom: 3px solid transparent;
  padding: 15px 0;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .tab-links li a {
    padding: 5px 0;
  }
}
.movie_single .movie-single-content .tab-links li a.active {
  border-bottom: 3px solid #dcf836;
  color: #dcf836;
}
.movie_single .movie-single-content .tab-links li.active a,
.movie_single .movie-single-content .tab-links li:hover a {
  color: #dcf836;
  border-bottom: 3px solid #dcf836;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.movie_single .movie-single-content .ov-it-title {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-bottom: 1px solid #405266;
}
.movie_single .movie-single-content .ov-it-title h4 {
  font-size: 14px;
  text-transform: uppercase;
}
.movie_single .movie-single-content .ov-it-title a {
  font-size: 12px;
}
.movie_single .movie-single-content .ov-it-title a:hover {
  color: #dcf836;
}
.movie_single .movie-single-content .actor-list-items {
  margin: 30px 0;
}
.movie_single .movie-single-content .actor-list-items .actor-list-left {
  width: 50%;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .actor-list-items .actor-list-left {
    width: 100%;
  }
}
.movie_single .movie-single-content .actor-list-items .actor-list-right {
  width: 50%;
}
@media (max-width: 767px) {
  .movie_single .movie-single-content .actor-list-items .actor-list-right {
    width: 100%;
  }
}
.movie_single .movie-single-content .actor-list-items .ac-it {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.movie_single .movie-single-content .actor-list-items .ac-it .act-img {
  width: 40px;
}
.movie_single .movie-single-content .actor-list-items .ac-it .act-img img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.movie_single .movie-single-content .actor-list-items .ac-it .act-img .actor-img .no-image {
  width: 40px;
  height: 40px;
  background-color: #dbdbdb;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.movie_single .movie-single-content .actor-list-items .ac-it .act-img .actor-img .no-image:before {
  position: absolute;
  content: '\f213';
  font-family: "Ionicons";
  color: #b5b5b5;
  font-size: 24px;
  line-height: 40px;
  width: 40px;
  text-align: center;
}
.movie_single .movie-single-content .actor-list-items .ac-it a.actor-name {
  color: #4280bf;
  display: flex;
  justify-content: flex-start;
  margin-left: 30px;
}
.movie_single .movie-single-content .actor-list-items .ac-it a.actor-name:hover {
  color: #dcf836;
}
.movie_single .movie-single-content .flex-it {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .movie_single .movie-single-content .flex-it {
    flex-direction: column;
  }
}
.movie_single .movie-single-content .gallery {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
  flex-wrap: wrap;
}
.movie_single .movie-single-content .gallery img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.movie_single .movie-single-content .overview-sb-it {
  margin-bottom: 15px;
}
.movie_single .movie-single-content .overview-sb-it h6 {
  font-size: 14px;
  color: #abb7c4;
}
.movie_single .movie-single-content .overview-sb-it span {
  font-size: 14px;
  color: #4280bf;
}
.movie_single .movie-single-content .overview-sb-it span.white-text {
  color: #ffffff;
}
.movie_single .movie-single-content .overview-sb-it a {
  margin-right: 10px;
}
.movie_single .movie-single-content .overview-sb-it a:hover {
  color: #dcf836;
}
.movie_single .movie-single-content #overview .rate-stars {
  align-self: flex-start;
}
.movie_single .movie-single-content #overview .overview-left-ct .overview-ct {
  font-size: 16px;
  margin-bottom: 30px;
}
.movie_single .movie-single-content #overview .overview-left-ct .overview-ct p {
  font-size: 16px;
}
.movie_single .movie-single-content #overview .overview-left-ct .overview-it {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .movie_single .movie-single-content #overview .overview-sb {
    padding-left: 0;
  }
}
.movie_single .movie-single-content #overview .consult-comment-related {
  border-top: 0;
  padding-top: 0;
}
.movie_single .movie-single-content #overview .consult-comment-related .flex-it-ava {
  display: flex;
}
.movie_single .movie-single-content #overview .consult-comment-related .flex-it-ava .fn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  margin-right: 10px;
}
.movie_single .movie-single-content #overview .consult-comment-related .flex-it-ava .comment-metadata a {
  font-size: 12px;
  color: #abb7c4;
}
.movie_single .movie-single-content #overview .consult-comment-related .edit-link a {
  font-size: 14px;
  color: #abb7c4;
  text-transform: uppercase;
}
.movie_single .movie-single-content #overview .consult-comment-related .edit-link a:hover {
  color: #dcf836;
}
.movie_single .movie-single-content #overview .consult-comment-related .rating .voted {
  color: #f5b50a;
}
.movie_single .movie-single-content #reviews .consult-comment-related {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.movie_single .movie-single-content #reviews .consult-comment-related .comments-title {
  display: none;
}
.movie_single .movie-single-content #reviews .consult-comment-related .comment-reply-title {
  margin-bottom: 15px;
}
.movie_single .movie-single-content #cast .cast-it {
  margin-bottom: 30px;
}
.movie_single .movie-single-content #media .media-it,
.movie_single .movie-single-content #overview .media-it {
  margin-bottom: 30px;
}
.movie_single .movie-single-content #media .media-it .gallery img,
.movie_single .movie-single-content #overview .media-it .gallery img {
  margin-right: 5px;
  margin-bottom: 5px;
}
.movie_single .movie-single-content #media .media-it .gallery img:hover,
.movie_single .movie-single-content #overview .media-it .gallery img:hover {
  opacity: 0.6;
}
.movie_single .movie-single-content #media .videos,
.movie_single .movie-single-content #overview .videos {
  display: flex;
  justify-content: flex-start;
  margin: 30px 0;
  flex-wrap: wrap;
}
.movie_single .movie-single-content #media .videos .vd-it,
.movie_single .movie-single-content #overview .videos .vd-it {
  margin-right: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  max-width: 170px;
  overflow: hidden;
}
.movie_single .movie-single-content #media .videos .vd-it a,
.movie_single .movie-single-content #overview .videos .vd-it a {
  display: inline-block;
  width: 170px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.movie_single .movie-single-content #media .videos .vd-it a img,
.movie_single .movie-single-content #overview .videos .vd-it a img {
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.movie_single .movie-single-content #media .videos .vd-it a:after,
.movie_single .movie-single-content #overview .videos .vd-it a:after {
  position: absolute;
  content: '\f215';
  font-family: "Ionicons";
  font-size: 18px;
  color: #ffffff;
  left: 40%;
  top: 35%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #dd003f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  overflow: hidden;
}
.movie_single .movie-single-content #media .videos .vd-it .vd-title,
.movie_single .movie-single-content #overview .videos .vd-it .vd-title {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  line-height: 18px;
}
.movie_single .movie-single-content #media .videos .vd-it:hover a img,
.movie_single .movie-single-content #overview .videos .vd-it:hover a img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.movie_single .movie-single-content #media .videos .vd-it:hover .vd-title,
.movie_single .movie-single-content #overview .videos .vd-it:hover .vd-title {
  color: #dcf836;
}
.movie_single .movie-single-content .sub-mv-title {
  margin-bottom: 30px;
}
.movie_single .movie-single-content .sub-mv-title h6 {
  font-size: 16px;
  color: #abb7c4;
}
.movie_single .movie-single-content .sub-mv-title h4 {
  font-size: 24px;
  color: #4280bf;
}
.share-buttons {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .share-buttons {
    flex-direction: column;
  }
}
.share-buttons .icon-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 1px solid #dd003f;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 15px;
}
.share-buttons .icon-btn:before {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.share-buttons .favorite-btn button {
  background-color: transparent;
  border: none;
  width: 150px;
  text-align: left;
}
.share-buttons .favorite-btn button.favourited .icon-btn {
  background-color: #dd003f;
  color: white;
}
.share-buttons .favorite-btn button.favourited .icon-btn:before {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}
.share-buttons .favorite-btn button:hover {
  cursor: pointer;
}
.share-buttons .favorite-btn button:hover .icon-btn:before {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}
.share-buttons .favorite-btn,
.share-buttons .trailer-btn {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .share-buttons .favorite-btn,
  .share-buttons .trailer-btn {
    margin-bottom: 15px;
  }
}
.share-buttons .favorite-btn a,
.share-buttons .trailer-btn a {
  display: flex;
  align-items: center;
}
.share-buttons .social-share {
  display: flex;
  align-items: center;
}
.share-buttons .social-share .social-links {
  background-color: #dd003f;
  margin-left: 30px;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  opacity: 0;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.share-buttons .social-share .social-links span {
  font-size: 16px;
}
.share-buttons .social-share .social-links span a {
  color: #ffffff;
  padding: 0 10px;
}
.share-buttons .social-share .social-links span a:hover {
  color: #020d18;
}
.share-buttons .social-share .social-links:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  top: 15px;
  left: -10px;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-right: 10px solid #dd003f;
}
.share-buttons .social-share:hover .social-links {
  opacity: 1;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.share-buttons .social-share span,
.share-buttons .favorite-btn button,
.share-buttons .trailer-btn a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #dd003f;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-transform {
  position: relative;
  display: inline-block;
  height: 45px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.btn-transform .item {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  text-align: center;
  display: block;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  text-transform: uppercase;
}
.btn-transform.transform-vertical .item-1 {
  transform: rotateX(0deg);
}
.btn-transform.transform-vertical .item-2 {
  transform: rotateX(180deg);
}
.btn-transform:hover.transform-vertical .item-1 {
  transform: rotateX(180deg);
}
.btn-transform:hover.transform-vertical .item-2 {
  transform: rotateX(0deg);
}
.btn-group .current-list,
.btn-group .current {
  color: #dcf836;
}
.btn-group .current-grid {
  color: #dcf836;
}
.theme-movie-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /*list group items*/
  /*grid group items*/
}
.theme-movie-items .movie-item {
  position: relative;
  margin-bottom: 15px;
  display: flex;
}
.theme-movie-items .movie-item .movie-thumbnail {
  width: 170px;
  margin-right: 30px;
}
.theme-movie-items .movie-item .movie-thumbnail a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-height: 0;
  min-width: 0;
  position: relative;
}
.theme-movie-items .movie-item .movie-thumbnail a img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.theme-movie-items .movie-item .readmore-btn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 15px;
  background-color: #dd003f;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  position: absolute;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.theme-movie-items .movie-item .readmore-btn i {
  margin-left: 5px;
}
.theme-movie-items .movie-item .readmore-btn:hover {
  background-color: #dcf836;
  color: #020d18;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.theme-movie-items .movie-item .movie-content {
  width: -webkit-calc(100% - 200px);
  width: -moz-calc(100% - 200px);
  width: -o-calc(100% - 200px);
  width: calc(100% - 200px);
}
.theme-movie-items .movie-item .movie-content .mv-title a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}
.theme-movie-items .movie-item .movie-content .mv-des {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #405266;
  padding-right: 30px;
}
.theme-movie-items .movie-item .movie-content .mv-des p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 50px;
}
.theme-movie-items .movie-item .movie-content .flex-it span {
  margin-right: 30px;
}
.theme-movie-items .movie-item .movie-content .link-color {
  color: #4280bf;
}
.theme-movie-items .movie-item:hover .movie-content .mv-title a {
  color: #dcf836;
}
.theme-movie-items .movie-item:hover .movie-thumbnail .readmore-btn {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.theme-movie-items .list-group-item .movie-thumbnail a .readmore-btn {
  display: none;
}
.theme-movie-items .grid-group-item {
  width: 25%;
}
@media (max-width: 991px) {
  .theme-movie-items .grid-group-item {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .theme-movie-items .grid-group-item {
    width: 100%;
  }
}
.theme-movie-items .grid-group-item .movie-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.theme-movie-items .grid-group-item .movie-item .movie-thumbnail {
  margin-right: 0;
  margin-bottom: 10px;
}
.theme-movie-items .grid-group-item .movie-item .movie-content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-bottom: 15px;
  text-align: center;
}
.theme-movie-items .grid-group-item .movie-item .movie-content .mv-list-content {
  display: none;
}
.theme-movie-items .grid-group-item .movie-item .mv-title {
  margin-top: 0;
}
.movie-grid-fw .grid-group-item {
  width: 16.66%;
}
@media (max-width: 991px) {
  .movie-grid-fw .grid-group-item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .movie-grid-fw .grid-group-item {
    width: 100%;
  }
}
.movie-grid-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .movie-grid-items {
    margin-left: -10px;
  }
}
.movie-grid-items .movie-grid-it {
  margin-bottom: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  position: relative;
}
.movie-grid-items .movie-grid-it .movie-thumbnail a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.movie-grid-items .movie-grid-it .movie-thumbnail a img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.movie-grid-items .movie-grid-it .movie-thumbnail a:after {
  box-shadow: inset 0px -75px 160px -30px #000000;
  -webkit-box-shadow: inset 0px -75px 160px -30px #000000;
  -moz-box-shadow: inset 0px -75px 160px -30px #000000;
  -o-box-shadow: inset 0px -75px 160px -30px #000000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.movie-grid-items .movie-grid-it .readmore-btn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 15px;
  background-color: #dd003f;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  position: absolute;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .movie-grid-items .movie-grid-it .readmore-btn {
    top: 45%;
    left: 30%;
  }
}
.movie-grid-items .movie-grid-it .readmore-btn i {
  margin-left: 5px;
}
.movie-grid-items .movie-grid-it .readmore-btn:hover {
  background-color: #dcf836;
  color: #020d18;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.movie-grid-items .movie-grid-it .movie-content {
  position: absolute;
  padding-left: 20px;
  padding-bottom: 15px;
  bottom: 0;
}
.movie-grid-items .movie-grid-it .movie-content .mv-title {
  line-height: 18px;
  padding-right: 15px;
}
.movie-grid-items .movie-grid-it .movie-content .mv-title a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.movie-grid-items .movie-grid-it:hover .movie-thumbnail .readmore-btn {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.movie-grid-items .movie-grid-it:hover .movie-thumbnail a img {
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.movie-grid-items .movie-grid-it:hover .movie-content .mv-title a {
  color: #dcf836;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
@media (max-width: 767px) {
  .theme-movie-items .movie-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .theme-movie-items .movie-item .movie-thumbnail {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .theme-movie-items .movie-item .movie-content {
    width: -webkit-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: calc(100% - 0px);
  }
  .theme-movie-items .movie-item .movie-content .flex-it {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1199px) {
  .tab-links li a.active {
    color: #dcf836 !important;
    border-bottom: 3px solid #dcf836 !important;
  }
}
/*movie sidebar*/
.widget_facebook,
.widget_twitter {
  margin-bottom: 30px;
}
.widget_twitter .slick-dots {
  position: inherit !important;
}
.widget_twitter .twitter-it .twitter-tweet {
  width: 330px !important;
}
/*movie filter by generes shortcode*/
.category-filter {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .category-filter {
    display: none;
  }
}
.category-filter button {
  background: none;
  border: none;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.category-filter .active,
.category-filter button:hover {
  color: #dcf836;
}
.category-filter button:before {
  position: 'absolute';
  content: '#';
  left: 0;
}
/*movie filter for mobile version*/
@media (min-width: 768px) {
  .filter-cate-mobile {
    display: none;
  }
}
.filter-cate-mobile button:hover {
  color: #ffffff;
}
.filter-cate-mobile .category-filter {
  margin-bottom: 30px;
}
.filter-cate-mobile .dropbtn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  width: 260px;
  text-align: left;
  background: #071829;
  border: none;
  padding: 10px 10px;
}
.filter-cate-mobile .dropbtn:after {
  position: absolute;
  content: '\f104';
  font-family: "Ionicons";
  color: #ffffff;
  margin-left: 15px;
  right: 10px;
}
.filter-cate-mobile .dropbtn:before {
  content: '';
}
.filter-cate-mobile .dropdown {
  position: relative;
  display: inline-block;
}
.filter-cate-mobile .dropdown-content {
  display: none;
  position: absolute;
  min-width: 260px;
  overflow: auto;
  background-color: #071829;
  z-index: 100;
  list-style: none;
  padding: 10px 0;
}
.filter-cate-mobile .dropdown-content li button {
  background: none;
  border: none;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
}
.filter-cate-mobile .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.filter-cate-mobile .dropdown a:hover {
  background-color: #f1f1f1;
}
.filter-cate-mobile .show {
  display: block;
}
.category-content:not(.full) .movie-grid-it {
  -ms-flex-preferred-size: 170px;
  flex-basis: 170px;
}
.category-content:not(.full) .movie-grid-it .movie-thumbnail img {
  width: 170px;
}
.category-content .movie-grid-it {
  margin: 0 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .category-content .movie-grid-it {
    margin: 15px 0;
    width: 260px;
  }
}
@media (min-width: 768px) {
  .category-content .movie-grid-it .movie-thumbnail img {
    height: auto;
  }
}
.category-content .movie-grid-it .movie-content .mv-title {
  margin-bottom: 0;
}
.movie-tab-fw {
  padding: 0 100px;
}
@media (max-width: 991px) {
  .movie-tab-fw {
    padding: 0;
  }
}
.movie-tab-fw .category-content .movie-grid-it {
  width: auto;
  max-width: 260px;
}
.category-content .rate-average .left-it,
.list-group-item .rate-average .left-it,
.grid-group-item .rate-average .left-it,
.movie-style-1 .rate-average .left-it,
.movie-grid-it .rate-average .left-it,
.movie-list .movie-item .rate-average .left-it {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.category-content .rate-average .left-it span.fa,
.list-group-item .rate-average .left-it span.fa,
.grid-group-item .rate-average .left-it span.fa,
.movie-style-1 .rate-average .left-it span.fa,
.movie-grid-it .rate-average .left-it span.fa,
.movie-list .movie-item .rate-average .left-it span.fa {
  margin-right: 5px;
  font-size: 18px;
  color: #f5b50a;
}
.category-content .rate-average .left-it .rate-num span,
.list-group-item .rate-average .left-it .rate-num span,
.grid-group-item .rate-average .left-it .rate-num span,
.movie-style-1 .rate-average .left-it .rate-num span,
.movie-grid-it .rate-average .left-it .rate-num span,
.movie-list .movie-item .rate-average .left-it .rate-num span {
  font-size: 16px;
}
.category-content .rate-average .left-it .rate-num .sm-text,
.list-group-item .rate-average .left-it .rate-num .sm-text,
.grid-group-item .rate-average .left-it .rate-num .sm-text,
.movie-style-1 .rate-average .left-it .rate-num .sm-text,
.movie-grid-it .rate-average .left-it .rate-num .sm-text,
.movie-list .movie-item .rate-average .left-it .rate-num .sm-text {
  font-size: 12px;
}
.category-content .mv-title,
.list-group-item .mv-title,
.grid-group-item .mv-title,
.movie-style-1 .mv-title,
.movie-grid-it .mv-title,
.movie-list .movie-item .mv-title {
  line-height: 18px;
  padding-right: 15px;
  margin-top: 0;
  margin-bottom: 10px;
}
.category-content .mv-title a,
.list-group-item .mv-title a,
.grid-group-item .mv-title a,
.movie-style-1 .mv-title a,
.movie-grid-it .mv-title a,
.movie-list .movie-item .mv-title a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
#moviesrelated .mv-title {
  margin-bottom: 0;
}
#moviesrelated .movie-content {
  margin-top: -30px;
}
#moviesrelated .rate-average {
  border: none;
  margin: 0;
  height: auto;
  margin-bottom: 10px;
}
#moviesrelated .rate-average .left-it {
  display: flex;
  align-items: center;
  color: #ffffff;
  border-right: 0;
  height: auto;
}
#moviesrelated .rate-average .left-it span.fa {
  margin-right: 5px;
  font-size: 18px;
  color: #f5b50a;
}
#moviesrelated .rate-average .left-it .rate-num span {
  font-size: 16px;
}
#moviesrelated .rate-average .left-it .rate-num .sm-text {
  font-size: 12px;
}
.mv-directors a,
.mv-stars a {
  margin-right: 10px;
}
.mv-directors a:hover,
.mv-stars a:hover {
  color: #dcf836;
}
.category-pagination {
  display: flex;
  margin-top: 10px;
  margin-left: 15px;
}
.category-pagination li {
  padding: 0 5px;
}
.category-pagination li .current,
.category-pagination li a:hover {
  color: #dcf836;
}
.category-pagination li a {
  padding: 5px 5px;
}
.movie-grid-items-fw {
  padding: 0 100px;
}
@media (max-width: 991px) {
  .movie-grid-items-fw {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .movie-grid-items-fw .category-content .movie-grid-items {
    margin-left: -10px;
  }
}
.movie-grid-items-fw .category-content .movie-grid-items .movie-grid-it {
  width: 260px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .movie-grid-items-fw .category-content .movie-grid-items .movie-grid-it {
    max-width: 260px;
    overflow: hidden;
    height: auto;
  }
}
.movie-grid-items-fw .category-content .movie-grid-items .movie-grid-it .movie-content {
  padding-bottom: 20px;
  padding-left: 30px;
}
.movie-grid-items-fw .category-content .movie-grid-items .movie-grid-it .movie-content .mv-title {
  margin-bottom: 0;
}
.movie-grid-items-fw .category-content .movie-grid-items .movie-grid-it .movie-content .mv-title a {
  font-size: 16px;
}
/* Add animation to "page content" */
.category-content.loading {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  height: 100%;
  flex-direction: column;
  margin-left: -10px;
}
.category-content.loading .ajaxloading {
  position: absolute;
  height: 32px;
  width: 32px;
  border: 5px solid;
  border-color: #dcf836;
  border-right-color: transparent !important;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.category-content.loading .movie-grid-items,
.category-content.loading .category-pagination {
  opacity: 0.15;
  width: 100%;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1.0;
  }
  to {
    transform: rotate(360deg);
    opacity: 0.2;
  }
}
/*actor single*/
.actor_single .actor-thumbnail {
  max-height: 480px;
  overflow: hidden;
}
.actor_single .actor-thumbnail img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .actor_single .actor-thumbnail img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .actor_single .actor-thumbnail {
    margin-bottom: 30px;
  }
}
.actor_single .actor-thumbnail .no-image {
  width: 300px;
  height: 450px;
  background-color: #dbdbdb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}
.actor_single .actor-thumbnail .no-image:before {
  position: absolute;
  content: '\f213';
  font-family: "Ionicons";
  color: #b5b5b5;
  font-size: 160px;
  line-height: 450px;
  width: 300px;
  text-align: center;
}
@media (max-width: 767px) {
  .actor_single .actor-thumbnail .no-image {
    width: 290px;
  }
  .actor_single .actor-thumbnail .no-image:before {
    width: 290px;
  }
}
.actor_single .actor-infor {
  margin-bottom: 30px;
}
.actor_single .actor-infor span {
  font-size: 18px;
}
.actor_single .actor-infor .actor-social-links {
  margin-top: 10px;
}
.actor_single .actor-infor .actor-social-links a {
  color: #abb7c4;
  font-size: 22px;
  padding-right: 15px;
}
.actor_single .actor-infor .actor-social-links a:hover {
  color: #dcf836;
}
.actor_single .actor-tab section {
  margin-bottom: 30px;
}
.actor_single .actor-tab #biography {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .actor_single .actor-tab #biography {
    flex-direction: column;
  }
}
.actor_single .actor-tab #biography .bio-description {
  width: 85%;
  margin-right: 60px;
}
@media (max-width: 991px) {
  .actor_single .actor-tab #biography .bio-description {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .actor_single .actor-tab #biography .bio-description {
    width: 100%;
    margin-right: 0;
  }
}
.actor_single .actor-tab #biography .cast-infor {
  width: 15%;
  padding-left: 15px;
}
@media (max-width: 991px) {
  .actor_single .actor-tab #biography .cast-infor {
    width: 25%;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .actor_single .actor-tab #biography .cast-infor {
    width: 100%;
    padding-left: 0;
  }
}
.actor_single .actor-tab #biography .biography {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.actor_single .actor-tab #biography .readmore-bio {
  font-size: 12px;
}
.actor_single .actor-tab #biography .readmore-bio i {
  margin-left: 5px;
  margin-top: 5px;
}
.actor_single .actor-tab #biography .readmore-bio:hover {
  color: #dcf836;
  cursor: pointer;
}
.actor_single .actor-tab #filmography .movie-item {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .actor_single .actor-tab #filmography .movie-item {
    align-items: flex-start;
    flex-direction: column;
  }
}
.actor_single .actor-tab #filmography .movie-item .inner-it {
  display: flex;
}
@media (max-width: 767px) {
  .actor_single .actor-tab #filmography .movie-item .inner-it {
    margin-bottom: 15px;
  }
}
.actor_single .actor-tab #filmography .movie-item .inner-it .movie-thumbnail {
  margin-right: 15px;
  min-width: 60px;
}
.actor_single .actor-tab #filmography .movie-item .inner-it .movie-thumbnail img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.actor_single .actor-tab #filmography .movie-item .inner-it .movie-content .mv-title {
  line-height: 24px;
}
.actor_single .actor-tab #filmography .movie-item .inner-it .movie-content .mv-title a {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #4280bf;
  font-weight: 400;
  text-transform: capitalize;
}
.actor_single .actor-tab #filmography .movie-item .inner-it .movie-content .mv-title a:hover {
  color: #dcf836;
}
.actor_single .actor-tab #filmography .release-date {
  position: relative;
  padding-left: 15px;
}
.actor_single .actor-tab #filmography .release-date:before {
  position: absolute;
  content: '...';
  left: 0;
}
.tax-mv_actor .blockter-breadcrumb {
  display: none;
}
.tax-mv_actor .movie-single {
  margin-top: -345px;
}
.tax-mv_actor .movie-banner {
  max-height: 530px;
  overflow: hidden;
}
/* Outer */
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(2, 13, 24, 0.65);
  overflow: hidden;
  z-index: 9999;
}
/* Inner */
.popup-inner {
  max-width: 700px;
  width: 90%;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background: #071829;
}
.popup-inner p {
  color: #ffffff;
}
/* Close Button */
.popup-close {
  width: 30px;
  height: 30px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: #dd003f;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
}
.popup-close i {
  color: #ffffff;
}
.popup-close:hover {
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
  background: #dcf836;
  text-decoration: none;
}
.popup-close:hover i {
  color: #020d18;
}
@media (min-width: 992px) {
  .sidebar-movie {
    padding-left: 60px;
  }
}
@media (min-width: 992px) {
  .sidebar-movie-iframe {
    padding-left: 40px;
  }
}
@media (min-width: 992px) {
  .movie-tab .sticky-nav {
    margin-left: -50px;
  }
}
.movie-single-content {
  display: inline-block;
  width: 100%;
}
.tabs .tab {
  display: none;
}
.tabs .tab.active {
  display: block;
}
.sticky-sb-movie {
  position: relative;
  top: 0;
}
.logged-in .sticky-poster {
  margin-top: 32px;
}
.season {
  display: flex;
  margin-bottom: 30px;
}
.season__img {
  margin-right: 20px;
  flex-shrink: 0;
}
.season__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
}
.season__detail {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.6;
}
/*Celebrity*/
.celebrity-topbar-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-top: 1px solid #405266;
  border-bottom: 1px solid #405266;
  padding: 5px 0;
  height: 40px;
}
@media (max-width: 767px) {
  .celebrity-topbar-filter {
    height: auto;
    flex-direction: column;
  }
}
.celebrity-topbar-filter .filter-right {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .celebrity-topbar-filter .filter-right {
    flex-direction: column;
  }
  .celebrity-topbar-filter .filter-right .celebrity-sorting {
    text-align: center;
  }
  .celebrity-topbar-filter .filter-right .celebrity-sorting select {
    border: 1px solid #405266;
    margin: 15px 0;
  }
}
.celebrity-topbar-filter .celebrity-sorting {
  display: flex;
  align-items: center;
}
.celebrity-topbar-filter .celebrity-sorting .dk_container .dk_options {
  display: none;
}
.celebrity-topbar-filter .celebrity-sorting .dk_container .dk_toggle.dk_label {
  display: none;
}
.celebrity-topbar-filter .celebrity-result-count strong {
  color: #4280bf;
}
.celebrity-topbar-filter .celebrity-view a {
  font-size: 16px;
  padding: 8px 15px;
  height: 40px;
}
.celebrity-topbar-filter .celebrity-view .ion-grid {
  border-left: 1px solid #405266;
}
.celebrity-topbar-filter .celebrity-view .current,
.celebrity-topbar-filter .celebrity-view a:hover {
  color: #dcf836;
}
/*celebrity grid item*/
.theme-celebrity-items.grid-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.theme-celebrity-items.grid-group .celebrity-grid-item {
  margin-bottom: 30px;
}
.theme-celebrity-items.grid-group .celebrity-grid-item .celebrity-img {
  margin-bottom: 30px;
  display: inline-block;
}
.theme-celebrity-items.grid-group .celebrity-grid-item .celebrity-infor .celebrity-name a {
  font-family: 'Dosis', sans-serif;
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.theme-celebrity-items.grid-group .celebrity-grid-item .celebrity-infor span {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: uppercase;
}
.theme-celebrity-items.grid-group .celebrity-grid-item .celebrity-infor .ceb-country {
  position: relative;
  padding-left: 10px;
}
.theme-celebrity-items.grid-group .celebrity-grid-item .celebrity-infor .ceb-country:before {
  position: absolute;
  content: '-';
  left: 0;
}
.theme-celebrity-items.grid-group .celebrity-grid-item:hover .celebrity-name a {
  color: #dcf836;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.theme-celebrity-items.grid-group .grid-group-item .no-image {
  width: 267px;
  height: 400px;
  background-color: #dbdbdb;
  position: relative;
}
.theme-celebrity-items.grid-group .grid-group-item .no-image:before {
  position: absolute;
  content: '\f213';
  font-family: "Ionicons";
  color: #b5b5b5;
  font-size: 240px;
  line-height: 400px;
  width: 267px;
  text-align: center;
}
.ceb-detail {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
/*celebrity list*/
.celebrity-list-item .theme-celebrity-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.celebrity-list-item .theme-celebrity-items .item {
  display: flex;
  align-items: center;
  background-color: #071829;
  margin-bottom: 30px;
  height: 150px;
}
.celebrity-list-item .theme-celebrity-items .item .celebrity-img {
  width: 100px;
}
.celebrity-list-item .theme-celebrity-items .item .celebrity-name {
  line-height: 22px;
  margin-top: 0;
}
.celebrity-list-item .theme-celebrity-items .item .celebrity-name a {
  font-size: 18px;
  color: #ffffff;
}
.celebrity-list-item .theme-celebrity-items .item span {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: uppercase;
}
.celebrity-list-item .theme-celebrity-items .item .ceb-country {
  position: relative;
  padding-left: 10px;
}
.celebrity-list-item .theme-celebrity-items .item .ceb-country:before {
  position: absolute;
  content: '-';
  left: 0;
}
.celebrity-list-item .theme-celebrity-items .item .no-image {
  width: 100px;
  height: 150px;
  background-color: #dbdbdb;
  position: relative;
  margin-bottom: 0;
}
.celebrity-list-item .theme-celebrity-items .item .no-image:before {
  position: absolute;
  content: '\f213';
  font-family: "Ionicons";
  color: #b5b5b5;
  font-size: 90px;
  line-height: 150px;
  width: 100px;
  text-align: center;
}
.celebrity-list-item .theme-celebrity-items .item:hover .celebrity-infor .celebrity-name a {
  color: #dcf836;
}
.celebrity-list-item .theme-celebrity-items .list-group-item {
  width: 100%;
}
.celebrity-list-item .theme-celebrity-items .list-group-item .celebrity-img {
  width: 100px;
}
.celebrity-list-item .theme-celebrity-items .list-group-item .celebrity-infor {
  width: -webkit-calc(100% - 130px);
  width: -moz-calc(100% - 130px);
  width: -o-calc(100% - 130px);
  width: calc(100% - 130px);
  padding-left: 30px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .celebrity-list-item .theme-celebrity-items .list-group-item .celebrity-infor {
    padding-left: 15px;
  }
}
.celebrity-list-item .theme-celebrity-items .list-group-item .celebrity-infor .ceb-des {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 50px;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  padding-right: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 0;
  text-transform: none;
}
.celebrity-list-item .theme-celebrity-items .grid-group-item {
  width: 265px;
}
.celebrity-list-item .theme-celebrity-items .grid-group-item .no-image {
  width: 100px;
  height: 150px;
}
.celebrity-list-item .theme-celebrity-items .grid-group-item .celebrity-infor {
  width: -webkit-calc(100% - 115px);
  width: -moz-calc(100% - 115px);
  width: -o-calc(100% - 115px);
  width: calc(100% - 115px);
  padding-left: 15px;
  padding-right: 0;
}
.celebrity-list-item .theme-celebrity-items .grid-group-item .celebrity-infor .ceb-des {
  display: none;
}
.consult-dropdown-list {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/drop-icon.png) no-repeat right 15px center;
}
/*style for select*/
.celebrity-sorting span,
.pagination-left span {
  margin-right: 15px;
}
.celebrity-sorting select,
.pagination-left select {
  height: 40px;
  padding: 0 15px;
  background-color: #020d18;
  border: 1px solid #405266;
  color: #ffffff;
  width: 250px;
}
/*celebrity pagination*/
.celebrity-pagination {
  border-top: 1px solid #405266;
  border-bottom: 1px solid #405266;
  display: flex;
  justify-content: space-between;
}
.celebrity-pagination .page-text {
  margin-right: 15px;
}
.celebrity-pagination .current {
  color: #dcf836;
  padding: 0 5px;
}
.celebrity-pagination a {
  padding: 0 5px;
}
.celebrity-pagination a:hover {
  color: #dcf836;
}
.movie-pagination {
  border-top: 1px solid #405266;
  border-bottom: 1px solid #405266;
  height: 40px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.movie-pagination .consult-dropdown-list .dk_options {
  display: none;
}
.movie-pagination .consult-dropdown-list .dk_toggle.dk_label {
  display: none;
}
@media (max-width: 767px) {
  .movie-pagination {
    height: auto;
    flex-direction: column;
  }
  .movie-pagination .pagination-left {
    text-align: center;
  }
  .movie-pagination .pagination-left select {
    border: 1px solid #405266;
    margin: 15px 0;
  }
}
.movie-pagination .pagination-left {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.movie-pagination .pagination-right {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 15px;
}
.movie-pagination .page-text {
  margin-right: 10px;
}
.movie-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}
.movie-pagination .page-numbers li {
  padding: 0 10px;
}
.movie-pagination .page-numbers li a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
}
.movie-pagination .page-numbers li span.current,
.movie-pagination .page-numbers li a:hover {
  color: #dcf836;
}
.movie-pagination .page-numbers li .next,
.movie-pagination .page-numbers li .prev {
  position: relative;
}
.movie-pagination .page-numbers li .next:after {
  position: absolute;
  content: '\f10a';
  font-family: "Ionicons";
  font-size: 16px;
  color: #abb7c4;
}
.movie-pagination .page-numbers li .prev:before {
  position: absolute;
  content: '\f107';
  font-family: "Ionicons";
  font-size: 16px;
  color: #abb7c4;
}
.clear-both {
  clear: both;
}
@media (max-width: 991px) {
  .movie-wrapper {
    margin-bottom: 30px;
  }
}
.widget-area {
  /*search*/
  /*tag*/
  /*recent post*/
}
.widget-area ul,
.widget-area ol {
  list-style: none;
}
@media (min-width: 992px) {
  .widget-area {
    padding-left: 30px;
  }
}
.widget-area .widget {
  margin-bottom: 30px;
}
.widget-area .widget-title {
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #405266;
}
.widget-area .widget_tag_cloud a {
  font-size: 14px !important;
  padding: 5px 10px;
  background-color: #152a3e;
  line-height: 34px !important;
}
.widget-area .widget_tag_cloud a:hover {
  background-color: #152a3e;
}
.widget-area .widget_recent_post_thumbnail .blog-recent-post-thumbnail-sumary {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.widget-area .widget_recent_post_thumbnail .blog-recent-post-thumbnail-sumary span {
  font-family: 'Dosis', sans-serif;
  font-size: 48px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
  width: 60px;
}
.widget-area .widget_recent_post_thumbnail .blog-recent-post-thumbnail-sumary .post-tt {
  max-width: -webkit-calc(100% - 60px);
  max-width: -moz-calc(100% - 60px);
  max-width: -o-calc(100% - 60px);
  max-width: calc(100% - 60px);
}
.widget-area .widget_recent_post_thumbnail .blog-recent-post-thumbnail-sumary .post-tt a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #4280bf;
  font-weight: 700;
  text-transform: none;
}
.widget-area .widget_recent_post_thumbnail .blog-recent-post-thumbnail-sumary:hover .post-tt a {
  color: #dcf836;
}
.widget-area select {
  height: 40px;
  background: none;
  border: 1px solid #405266;
  color: #abb7c4;
  width: 230px;
  padding: 0 10px;
}
/*CELEBRITY SIDEBAR*/
.widget_recent_celebrity .widget_recent_celebrity_item,
.theme-cast-items .widget_recent_celebrity_item,
.widget_recent_celebrity .cast-item,
.theme-cast-items .cast-item {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-thumbnail,
.theme-cast-items .widget_recent_celebrity_item .celebrity-thumbnail,
.widget_recent_celebrity .cast-item .celebrity-thumbnail,
.theme-cast-items .cast-item .celebrity-thumbnail {
  width: 70px;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-thumbnail img,
.theme-cast-items .widget_recent_celebrity_item .celebrity-thumbnail img,
.widget_recent_celebrity .cast-item .celebrity-thumbnail img,
.theme-cast-items .cast-item .celebrity-thumbnail img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-thumbnail .no-image,
.theme-cast-items .widget_recent_celebrity_item .celebrity-thumbnail .no-image,
.widget_recent_celebrity .cast-item .celebrity-thumbnail .no-image,
.theme-cast-items .cast-item .celebrity-thumbnail .no-image {
  width: 70px;
  height: 70px;
  background-color: #dbdbdb;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-thumbnail .no-image:before,
.theme-cast-items .widget_recent_celebrity_item .celebrity-thumbnail .no-image:before,
.widget_recent_celebrity .cast-item .celebrity-thumbnail .no-image:before,
.theme-cast-items .cast-item .celebrity-thumbnail .no-image:before {
  position: absolute;
  content: '\f213';
  font-family: "Ionicons";
  color: #b5b5b5;
  font-size: 36px;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-summary,
.theme-cast-items .widget_recent_celebrity_item .celebrity-summary,
.widget_recent_celebrity .cast-item .celebrity-summary,
.theme-cast-items .cast-item .celebrity-summary {
  padding-left: 15px;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-summary a,
.theme-cast-items .widget_recent_celebrity_item .celebrity-summary a,
.widget_recent_celebrity .cast-item .celebrity-summary a,
.theme-cast-items .cast-item .celebrity-summary a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.widget_recent_celebrity .widget_recent_celebrity_item .celebrity-summary .celebrity-pos,
.theme-cast-items .widget_recent_celebrity_item .celebrity-summary .celebrity-pos,
.widget_recent_celebrity .cast-item .celebrity-summary .celebrity-pos,
.theme-cast-items .cast-item .celebrity-summary .celebrity-pos {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: uppercase;
}
.widget_recent_celebrity .widget_recent_celebrity_item:hover .celebrity-summary a,
.theme-cast-items .widget_recent_celebrity_item:hover .celebrity-summary a,
.widget_recent_celebrity .cast-item:hover .celebrity-summary a,
.theme-cast-items .cast-item:hover .celebrity-summary a {
  color: #dcf836;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
/*404 page*/
.error404 header,
.error404 footer {
  display: none;
}
.error404 .error-page {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url(../blockter/images/error-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.error404 .error-page .error-content {
  margin-top: -50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.error404 .error-page .lg {
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .error404 .error-page .lg {
    margin-bottom: 50px;
  }
}
.error404 .error-page .error-image {
  margin-bottom: 30px;
}
.error404 .error-page h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .error404 .error-page h1 {
    font-size: 42px;
  }
}
.error404 .error-page .page-error-btn {
  padding: 8px 40px;
  background-color: #dd003f;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.error404 .error-page .page-error-btn:hover {
  background-color: #dcf836;
  color: #020d18;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
/*coming soon*/
.coming-soon-page {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url(../blockter/images/error-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .coming-soon-page {
    position: inherit;
  }
  .coming-soon-page .vc_row.wpb_row.vc_row-fluid {
    display: flex;
    flex-direction: column;
  }
  .coming-soon-page .vc_row.wpb_row.vc_row-fluid .vc_col-sm-6 {
    width: 100%;
  }
  .coming-soon-page .vc_row.wpb_row.vc_row-fluid .vc_col-sm-6 .vc_empty_space.responsive-space {
    display: none;
  }
}
.coming-soon-page .coming-soon-des p {
  font-size: 20px;
}
.coming-soon-page .consult-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .coming-soon-page .consult-countdown {
    flex-direction: column;
  }
  .coming-soon-page .consult-countdown .ht-box-cms {
    margin: 15px 0;
  }
}
.coming-soon-page .consult-countdown .ht-box-cms {
  padding: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #405266;
  text-align: center;
}
.coming-soon-page .consult-countdown .ht-box-cms .ht-time {
  font-family: 'Dosis', sans-serif;
  font-size: 60px;
  color: #dcf836;
  font-weight: 500;
  text-transform: none;
}
.coming-soon-page .consult-countdown .ht-box-cms p {
  font-size: 20px;
  font-family: 'Dosis', sans-serif;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1190px) {
  .coming-soon-page .consult-countdown .ht-box-cms {
    padding: 20px;
    margin: 0 10px;
  }
}
.coming-soon-page .vc_btn3-container a {
  font-family: 'Dosis', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.coming-soon-page .vc_btn3-container a:hover {
  background-color: #dcf836 !important;
  color: #020d18 !important;
}
@media (max-width: 767px) {
  .coming-soon-page .left-col,
  .coming-soon-page .vc_custom_heading,
  .coming-soon-page .wpb_single_image {
    text-align: center !important;
  }
}
/* User profile */
.user-info-tab {
  border: 3px solid #071829;
  text-align: center;
  padding: 20px 0;
  background-color: #020d18;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.user-info-tab .avatar {
  display: block;
  margin: 0 auto 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.user-info-tab li.tab-link {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.user-info-tab li.tab-link a {
  color: inherit;
}
.user-info-tab li.tab-link.current,
.user-info-tab li.tab-link:hover {
  color: #dcf836;
  cursor: pointer;
}
.user-pro {
  padding: 30px;
  background-color: #0b1a2a;
}
.user-pro .tab-content {
  overflow: hidden;
  height: 0;
  display: flex;
  flex-direction: column;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}
.user-pro .tab-content.current {
  height: auto;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.form-style-1 {
  border: 3px solid #0f2133;
}
.form-style-1 form {
  margin: 0 25px 30px;
}
.form-style-1 h3 {
  margin: 30px 25px;
}
.form-style-1 label {
  display: block;
}
.form-style-1 input,
.form-style-1 select {
  border: none;
  background-color: #233a50;
  height: 40px;
  color: #abb7c4;
  width: 100%;
  padding: 6px 12px;
  margin-bottom: 25px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.form-style-1 .btn-main {
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  font-weight: bold;
  font-size: 14px;
  -webkit-border-top-right-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -webkit-border-top-left-radius: 50px;
  -moz-border-radius-topright: 50px;
  -moz-border-radius-bottomright: 50px;
  -moz-border-radius-bottomleft: 50px;
  -moz-border-radius-topleft: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 40px;
  width: 135px;
}
/*news*/
.consult-blog-sc {
  display: flex;
  flex-wrap: wrap;
}
.consult-blog-sc .sc-blog-item {
  *zoom: 1;
}
.consult-blog-sc .sc-blog-item:before,
.consult-blog-sc .sc-blog-item:after {
  content: " ";
  display: table;
}
.consult-blog-sc .sc-blog-item:after {
  clear: both;
}
.consult-blog-sc .sc-blog-item .sc-blog-image {
  margin-bottom: 20px;
}
.consult-blog-sc .sc-blog-item .sc-blog-image img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.consult-blog-sc .sc-blog-item .blog-post-content {
  padding: 0;
  background: none;
}
.consult-blog-sc .sc-blog-item .blog-post-content .post-tit {
  line-height: 20px;
}
.consult-blog-sc .sc-blog-item .blog-post-content .posted_date span {
  padding-right: 3px;
}
.consult-blog-sc .sc-blog-item .blog-post-sumary {
  max-height: 50px;
  overflow: hidden;
}
.consult-blog-sc .sc-blog-item:hover .post-tit a {
  color: #dcf836;
}
/*blog style 2*/
.consult-blog-sc.consult-blog-style-2 .blog-post-content .post-tit {
  line-height: 18px;
  margin-bottom: 0;
}
.consult-blog-sc.consult-blog-style-2 .blog-post-content .post-tit a {
  font-size: 14px;
}
.consult-blog-sc.consult-blog-style-2 .blog-post-info li {
  font-size: 12px;
}
.consult-blog-sc.consult-blog-style-2 .sc-blog-item {
  margin-bottom: 0px;
}
/*blog style 3*/
.consult-blog-sc.consult-blog-style-3 .sc-blog-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .consult-blog-sc.consult-blog-style-3 .sc-blog-item {
    flex-direction: column;
  }
}
.consult-blog-sc.consult-blog-style-3 .sc-blog-item .sc-blog-image {
  width: 170px;
  margin-right: 30px;
}
.consult-blog-sc.consult-blog-style-3 .sc-blog-item .blog-post-content {
  max-width: -webkit-calc(100% - 200px);
  max-width: -moz-calc(100% - 200px);
  max-width: -o-calc(100% - 200px);
  max-width: calc(100% - 200px);
}
@media (max-width: 767px) {
  .consult-blog-sc.consult-blog-style-3 .sc-blog-item .blog-post-content {
    max-width: -webkit-calc(100% - 0px);
    max-width: -moz-calc(100% - 0px);
    max-width: -o-calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
/*latest news tabs*/
.latest-news-tabs .vc_tta-tabs-container {
  margin-top: -40px !important;
}
@media (max-width: 767px) {
  .latest-news-tabs .vc_tta-tabs-container {
    margin-top: 0 !important;
  }
}
.latest-news-tabs .vc_tta-tabs-list {
  text-align: right;
}
.latest-news-tabs .blog-news-item {
  padding-right: 60px;
}
.latest-news-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li,
.movie-tab-carousel .vc_tta-tabs-container ul.vc_tta-tabs-list li,
.movie-tab-carousel-fw .vc_tta-tabs-container ul.vc_tta-tabs-list li {
  margin: 0 45px 0 0;
}
.latest-news-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li a,
.movie-tab-carousel .vc_tta-tabs-container ul.vc_tta-tabs-list li a,
.movie-tab-carousel-fw .vc_tta-tabs-container ul.vc_tta-tabs-list li a {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  border: none;
  border-radius: 0;
  padding: 15px 0;
}
.latest-news-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li a:hover,
.movie-tab-carousel .vc_tta-tabs-container ul.vc_tta-tabs-list li a:hover,
.movie-tab-carousel-fw .vc_tta-tabs-container ul.vc_tta-tabs-list li a:hover {
  background: none;
  color: #dcf836;
}
.latest-news-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_active a,
.movie-tab-carousel .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_active a,
.movie-tab-carousel-fw .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_active a {
  background: none;
  color: #dcf836;
}
.latest-news-tabs .vc_tta-panels,
.movie-tab-carousel .vc_tta-panels,
.movie-tab-carousel-fw .vc_tta-panels {
  border: none !important;
  background-color: #020d18 !important;
}
.latest-news-tabs .vc_tta-panel-body,
.movie-tab-carousel .vc_tta-panel-body,
.movie-tab-carousel-fw .vc_tta-panel-body {
  background-color: #020d18 !important;
  padding: 10px 0 !important;
  background-image: none !important;
  border: none !important;
}
.latest-news-tabs .vc_tta-panel-heading,
.movie-tab-carousel .vc_tta-panel-heading,
.movie-tab-carousel-fw .vc_tta-panel-heading {
  background-color: #020d18 !important;
  border: none !important;
  background-image: none !important;
}
.latest-news-tabs .vc_tta.vc_general .vc_tta-panel-title > a,
.movie-tab-carousel .vc_tta.vc_general .vc_tta-panel-title > a,
.movie-tab-carousel-fw .vc_tta.vc_general .vc_tta-panel-title > a {
  font-size: 14px;
  color: #ffffff !important;
  text-transform: uppercase;
  padding: 14px 0;
}
.latest-news-tabs .vc_active .vc_tta-panel-heading .vc_tta-panel-title > a,
.movie-tab-carousel .vc_active .vc_tta-panel-heading .vc_tta-panel-title > a,
.movie-tab-carousel-fw .vc_active .vc_tta-panel-heading .vc_tta-panel-title > a {
  color: #dcf836 !important;
}
.heading-sec {
  text-transform: uppercase;
}
.btn-text-link {
  margin-top: 10px;
}
.btn-text-link a {
  position: relative;
  text-transform: uppercase;
  margin-right: 15px;
}
.btn-text-link a:hover {
  color: #dcf836;
}
.btn-text-link a:after {
  position: absolute;
  content: "\f3d3";
  font-family: "Ionicons";
  margin-left: 10px;
}
/*responsive*/
@media (max-width: 991px) {
  .vc_col-sm-4,
  .vc_col-sm-8,
  .vc_col-sm-3,
  .vc_col-sm-9 {
    width: 100%;
  }
}
/*facebook shortcode*/
.theme-facebook-item .fb-title,
.theme-twitter-item .fb-title,
.theme-cast-items .fb-title,
.theme-facebook-item .tw-title,
.theme-twitter-item .tw-title,
.theme-cast-items .tw-title,
.theme-facebook-item .cast-title,
.theme-twitter-item .cast-title,
.theme-cast-items .cast-title {
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #405266;
  font-size: 18px;
}
.theme-twitter-carousel .tw-title {
  position: relative;
}
.theme-twitter-carousel .slick-dots {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 12px;
}
.theme-twitter-carousel .slick-dots li button:before {
  content: '';
}
.theme-twitter-carousel .slick-dots li {
  background: #ffffff;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.theme-twitter-carousel .slick-dots li.slick-active {
  background: #dcf836;
}
.theme-twitter-item .twitter-tweet.twitter-tweet-rendered {
  width: 360px !important;
  max-width: 360px;
}
/*movie shortcode*/
.theme-movie-items .movie-per-4 {
  width: 170px;
}
.theme-movie-items .movie-per-6 {
  width: 170px;
}
.movie-style-1 {
  display: flex;
  justify-content: flex-start;
  margin-left: -10px;
  flex-wrap: wrap;
}
.movie-style-1 .movie-grid-it {
  margin: 0 10px 30px 10px;
}
.movie-style-1 .movie-grid-it .movie-thumbnail {
  margin-bottom: 15px;
}
.movie-style-1 .movie-grid-it .movie-content {
  position: inherit;
  padding: 0;
}
/*movie carousel shortcode*/
.movie-carousel-style .slick-dots,
.movie-carousel-style-fw .slick-dots {
  text-align: right;
  position: inherit;
  bottom: 0;
  right: 15px;
  width: 50%;
  float: right;
}
@media (max-width: 767px) {
  .movie-carousel-style .slick-dots,
  .movie-carousel-style-fw .slick-dots {
    width: 100%;
    right: 30px;
  }
}
.movie-carousel-style .slick-dots li button:before,
.movie-carousel-style-fw .slick-dots li button:before {
  content: '';
}
.movie-carousel-style .slick-dots li,
.movie-carousel-style-fw .slick-dots li {
  background: #ffffff;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.movie-carousel-style .slick-dots li.slick-active,
.movie-carousel-style-fw .slick-dots li.slick-active {
  background: #dcf836;
}
.movie-carousel-style .movie-grid-it {
  max-width: 170px;
  margin: 0 15px;
}
.movie-tab-carousel-fw {
  padding: 0 100px;
}
@media (max-width: 767px) {
  .movie-tab-carousel-fw {
    padding: 0;
  }
}
.movie-tab-carousel-fw .movie-carousel-style-fw {
  padding: 0;
}
.movie-carousel-style-fw {
  padding: 0 100px;
}
@media (max-width: 767px) {
  .movie-carousel-style-fw {
    padding: 0;
  }
}
.movie-carousel-style-fw .movie-per-6 {
  width: 260px;
  margin: 0 12px;
  margin-bottom: 30px;
}
.movie-carousel-style-fw .movie-per-6 .movie-content {
  padding-bottom: 20px;
  padding-left: 20px;
}
.movie-carousel-style-fw .movie-per-6 .movie-content .mv-title {
  padding-right: 30px;
  margin-bottom: 0;
}
.movie-carousel-style-fw .movie-per-6 .movie-content .mv-title a {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.movie-carousel-style-fw .movie-per-6 .rate-average .left-it {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.movie-carousel-style-fw .movie-per-6 .rate-average .left-it span.fa {
  margin-right: 5px;
  font-size: 18px;
  color: #f5b50a;
}
.movie-carousel-style-fw .movie-per-6 .rate-average .left-it .rate-num span {
  font-size: 18px;
}
.movie-carousel-style-fw .movie-per-6 .rate-average .left-it .rate-num .sm-text {
  font-size: 12px;
}
/*movie trailer*/
.movie-trailer-items .slick-current {
  background-color: #1c3d5d;
}
.movie-trailer-items .vd-title {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 50px;
}
.movie-trailer-items .trailer-item {
  display: flex;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .movie-trailer-items .trailer-item {
    flex-direction: column;
  }
}
.movie-trailer-items .trailer-item .video-ft {
  width: 65%;
  height: 435px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .movie-trailer-items .trailer-item .video-ft {
    width: 100%;
    height: auto;
  }
}
.movie-trailer-items .trailer-item .video-ft iframe {
  width: 100%;
  height: 435px;
}
.movie-trailer-items .trailer-item .thumb-ft {
  width: 35%;
  overflow: hidden;
  background-color: #0b1a2a;
  padding: 30px 0;
  height: 435px;
  position: relative;
}
@media (max-width: 991px) {
  .movie-trailer-items .trailer-item .thumb-ft {
    width: 100%;
    margin-top: -10px;
  }
}
.movie-trailer-items .trailer-item .thumb-ft .slick-arrow {
  position: absolute;
}
.movie-trailer-items .trailer-item .thumb-ft .slick-prev {
  top: 15px;
  left: 45%;
}
.movie-trailer-items .trailer-item .thumb-ft .slick-prev:before {
  content: '\f126';
  font-family: "Ionicons";
  font-size: 24px;
}
.movie-trailer-items .trailer-item .thumb-ft .slick-next {
  top: 95%;
  right: 50%;
}
.movie-trailer-items .trailer-item .thumb-ft .slick-next::before {
  content: '\f123';
  font-family: "Ionicons";
  font-size: 24px;
}
.movie-trailer-items .trailer-item .thumb-ft .vd-it {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  cursor: pointer;
}
.movie-trailer-items .trailer-item .thumb-ft .vd-it a {
  display: inline-block;
  width: 100px;
  height: 60px;
  margin-right: 15px;
  overflow: hidden;
}
.movie-trailer-items .trailer-item .thumb-ft .vd-it .vd-title {
  max-width: -webkit-calc(100% - 115px);
  max-width: -moz-calc(100% - 115px);
  max-width: -o-calc(100% - 115px);
  max-width: calc(100% - 115px);
}
.movie-trailer-fw {
  padding: 0 100px;
}
@media (max-width: 991px) {
  .movie-trailer-fw {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .trailer-item-horizontal {
    padding: 0 15px;
  }
}
.trailer-item-horizontal .video-ft iframe {
  width: 100%;
  height: 435px;
}
.trailer-item-horizontal .thumb-ft .slick-next::before {
  content: '\f125';
  font-family: "Ionicons";
  font-size: 24px;
}
.trailer-item-horizontal .thumb-ft .slick-next {
  right: 30px;
}
.trailer-item-horizontal .thumb-ft .slick-prev:before {
  content: '\f124';
  font-family: "Ionicons";
  font-size: 24px;
}
.trailer-item-horizontal .thumb-ft .slick-prev {
  left: 20px;
}
.trailer-item-horizontal .slider-nav {
  background-color: #0b1a2a;
  padding: 0 60px;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .trailer-item-horizontal .slider-nav {
    height: auto;
  }
}
.trailer-item-horizontal .slider-nav .vd-it {
  padding: 15px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .trailer-item-horizontal .slider-nav .vd-it {
    max-width: 100%;
    height: auto;
  }
}
.trailer-item-horizontal .slider-nav .vd-it .vd-title {
  margin-top: 10px;
}
.movie-slider-items.movie-slider-style-1 .movie-grid-items {
  margin-left: 20px;
}
@media (max-width: 991px) {
  .movie-slider-items.movie-slider-style-1 .movie-grid-items {
    margin-left: 30px;
  }
}
.movie-slider-items.movie-slider-style-1 .movie-grid-it .movie-thumbnail {
  max-width: 267px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.movie-slider-items.movie-slider-style-1 .movie-grid-it .movie-content {
  padding-left: 40px;
  padding-bottom: 25px;
}
.movie-slider-items.movie-slider-style-1 .movie-grid-it .movie-content .mv-title a {
  font-size: 18px;
  padding-right: 30px;
  -webkit-line-clamp: 2;
}
.movie-slider-items.movie-slider-style-1 .slick-dots {
  text-align: right;
  float: right;
  right: 30px;
}
.movie-slider-items.movie-slider-style-1 .slick-dots li button:before {
  content: '';
}
.movie-slider-items.movie-slider-style-1 .slick-dots li {
  background: #ffffff;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.movie-slider-items.movie-slider-style-1 .slick-dots li.slick-active {
  background: #dcf836;
}
@media (max-width: 767px) {
  .movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-thumbnail,
  .movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-thumbnail {
    padding: 0 15px;
  }
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-thumbnail img,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-thumbnail img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content,
  .movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content {
    padding: 0 15px;
  }
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .mv-title,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .mv-title {
  padding-right: 200px;
  margin-bottom: 30px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .mv-title a,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .mv-title a {
  font-family: 'Dosis', sans-serif;
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 68px;
}
@media (max-width: 991px) {
  .movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .mv-title a,
  .movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .mv-title a {
    font-size: 44px;
    line-height: 46px;
  }
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .flex-child-items,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .flex-child-items {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .flex-child-items,
  .movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .flex-child-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .flex-child-items .flex-child-it,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .flex-child-items .flex-child-it {
  margin-right: 15px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .flex-child-items span,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .flex-child-items span {
  font-size: 16px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .readmore-btn,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .readmore-btn {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  background-color: #dd003f;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .readmore-btn i,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .readmore-btn i {
  margin-left: 5px;
}
.movie-slider-items.movie-slider-style-2 .movie-grid-it-style-2 .movie-content .readmore-btn:hover,
.movie-slider-items.movie-slider-style-3 .movie-grid-it-style-2 .movie-content .readmore-btn:hover {
  background-color: #dcf836;
  color: #020d18;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.movie-slider-items.movie-slider-style-3 .share-buttons {
  border-bottom: 1px solid #405266;
  padding-bottom: 30px;
}
.movie-slider-items .movie-genres {
  margin-bottom: 10px;
}
.movie-slider-items .movie-genres span {
  font-family: 'Dosis', sans-serif;
  font-size: 12px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #dd003f;
}
.movie-slider-items .movie-genres .action {
  background-color: #f5b50a;
}
.movie-slider-items .movie-genres .adventure {
  background-color: #ec5a1a;
}
.movie-slider-items .movie-genres .horror {
  background-color: #1692bb;
}
.movie-slider-items .movie-genres .comedy {
  background-color: #a6bb16;
}
.movie-slider-items .rate-average .left-it {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.movie-slider-items .rate-average .left-it span.fa {
  margin-right: 5px;
  font-size: 18px;
  color: #f5b50a;
}
.movie-slider-items .rate-average .left-it .rate-num span {
  font-size: 16px;
}
.movie-slider-items .rate-average .left-it .rate-num .sm-text {
  font-size: 12px;
}
.movie-slider-items .slick-prev:before {
  content: '\f124';
  font-family: "Ionicons";
  font-size: 40px;
}
.movie-slider-items .slick-prev {
  left: -80px;
}
@media (max-width: 991px) {
  .movie-slider-items .slick-prev {
    left: -25px;
  }
}
.movie-slider-items .slick-next {
  right: -80px;
}
@media (max-width: 991px) {
  .movie-slider-items .slick-next {
    right: -25px;
  }
}
.movie-slider-items .slick-next::before {
  content: '\f125';
  font-family: "Ionicons";
  font-size: 40px;
}
@media (max-width: 767px) {
  .movie-slider-items .slick-next,
  .movie-slider-items .slick-prev {
    display: none;
  }
}
.movie-slider-items .slick-arrow {
  opacity: 0;
}
.movie-slider-items:hover .slick-arrow {
  opacity: 1;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .movie-slider-items.movie-slider-style-2 .movie-grid-items,
  .movie-slider-items.movie-slider-style-3 .movie-grid-items {
    max-width: 1000px;
    margin: 0 auto;
  }
  .movie-slider-items.movie-slider-style-2 .movie-grid-items .share-buttons,
  .movie-slider-items.movie-slider-style-3 .movie-grid-items .share-buttons {
    flex-wrap: wrap;
  }
  .movie-slider-items.movie-slider-style-2 .movie-grid-items .share-buttons div,
  .movie-slider-items.movie-slider-style-3 .movie-grid-items .share-buttons div {
    margin-bottom: 15px;
  }
}
@media (min-width: 1000px) and (max-width: 1310px) {
  .movie-tab-fw .category-content .movie-grid-items {
    justify-content: space-between;
  }
}
.view-all-btn {
  margin-bottom: 0px !important;
}
@media (min-width: 992px) {
  .view-all-btn {
    padding-top: 15px;
    text-align: right;
  }
}
.view-all-btn a {
  position: relative;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 15px;
  color: #abb7c4 !important;
}
.view-all-btn a:after {
  position: absolute;
  content: '\f3d1';
  font-family: "Ionicons";
  font-size: 16px;
  right: 0;
  color: #abb7c4;
}
@media (min-width: 992px) {
  .layout-page-fw {
    padding: 0 100px;
  }
}
@media (max-width: 991px) {
  .ipad-width-title {
    display: flex;
    align-items: center;
  }
  .ipad-width-title .view-all-btn {
    text-align: right;
  }
  .ipad-width-box {
    max-width: 390px;
    overflow: hidden;
  }
}
/* II.1. PLUGINS */
.sticky,
.bypostauthor {
  box-sizing: border-box;
}
.entry-content img {
  margin: 0 0 1.5em 0;
}
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  text-align: center;
  margin-bottom: 1.5em;
}
.wp-caption img {
  border: 0 none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
}
.wp-caption p.wp-caption-text {
  margin: 0;
}
.wp-smiley {
  max-height: 1em;
  margin: 0 !important;
}
.gallery dl {
  margin: 0;
}
.gallery-caption {
  margin: 0;
  padding-right: 10px;
  color: #abb7c4;
}
blockquote.left {
  float: left;
  margin-left: 0;
  margin-right: 20px;
  text-align: right;
  width: 33%;
}
blockquote.right {
  float: right;
  margin-left: 20px;
  margin-right: 0;
  text-align: left;
  width: 33%;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
.owl-controls {
  text-align: center;
}
.owl-controls .owl-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #AAAAAA;
  margin: 2px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.owl-controls .owl-dot.active {
  background-color: #000000;
}
/* II.2. NPROGRESS */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #000;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #000, 0 0 5px #000;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: solid 4px transparent;
  border-top-color: #000;
  border-left-color: #000;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: "Ionicons";
  src: url("fonts/ionicons.eot");
  src: url("fonts/ionicons.eot") format("embedded-opentype"), url("fonts/ionicons.ttf") format("truetype"), url("fonts/ionicons.woff") format("woff"), url("fonts/ionicons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.ion,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ion-alert:before {
  content: "\f101";
}
.ion-alert-circled:before {
  content: "\f100";
}
.ion-android-add:before {
  content: "\f2c7";
}
.ion-android-add-circle:before {
  content: "\f359";
}
.ion-android-alarm-clock:before {
  content: "\f35a";
}
.ion-android-alert:before {
  content: "\f35b";
}
.ion-android-apps:before {
  content: "\f35c";
}
.ion-android-archive:before {
  content: "\f2c9";
}
.ion-android-arrow-back:before {
  content: "\f2ca";
}
.ion-android-arrow-down:before {
  content: "\f35d";
}
.ion-android-arrow-dropdown:before {
  content: "\f35f";
}
.ion-android-arrow-dropdown-circle:before {
  content: "\f35e";
}
.ion-android-arrow-dropleft:before {
  content: "\f361";
}
.ion-android-arrow-dropleft-circle:before {
  content: "\f360";
}
.ion-android-arrow-dropright:before {
  content: "\f363";
}
.ion-android-arrow-dropright-circle:before {
  content: "\f362";
}
.ion-android-arrow-dropup:before {
  content: "\f365";
}
.ion-android-arrow-dropup-circle:before {
  content: "\f364";
}
.ion-android-arrow-forward:before {
  content: "\f30f";
}
.ion-android-arrow-up:before {
  content: "\f366";
}
.ion-android-attach:before {
  content: "\f367";
}
.ion-android-bar:before {
  content: "\f368";
}
.ion-android-bicycle:before {
  content: "\f369";
}
.ion-android-boat:before {
  content: "\f36a";
}
.ion-android-bookmark:before {
  content: "\f36b";
}
.ion-android-bulb:before {
  content: "\f36c";
}
.ion-android-bus:before {
  content: "\f36d";
}
.ion-android-calendar:before {
  content: "\f2d1";
}
.ion-android-call:before {
  content: "\f2d2";
}
.ion-android-camera:before {
  content: "\f2d3";
}
.ion-android-cancel:before {
  content: "\f36e";
}
.ion-android-car:before {
  content: "\f36f";
}
.ion-android-cart:before {
  content: "\f370";
}
.ion-android-chat:before {
  content: "\f2d4";
}
.ion-android-checkbox:before {
  content: "\f374";
}
.ion-android-checkbox-blank:before {
  content: "\f371";
}
.ion-android-checkbox-outline:before {
  content: "\f373";
}
.ion-android-checkbox-outline-blank:before {
  content: "\f372";
}
.ion-android-checkmark-circle:before {
  content: "\f375";
}
.ion-android-clipboard:before {
  content: "\f376";
}
.ion-android-close:before {
  content: "\f2d7";
}
.ion-android-cloud:before {
  content: "\f37a";
}
.ion-android-cloud-circle:before {
  content: "\f377";
}
.ion-android-cloud-done:before {
  content: "\f378";
}
.ion-android-cloud-outline:before {
  content: "\f379";
}
.ion-android-color-palette:before {
  content: "\f37b";
}
.ion-android-compass:before {
  content: "\f37c";
}
.ion-android-contact:before {
  content: "\f2d8";
}
.ion-android-contacts:before {
  content: "\f2d9";
}
.ion-android-contract:before {
  content: "\f37d";
}
.ion-android-create:before {
  content: "\f37e";
}
.ion-android-delete:before {
  content: "\f37f";
}
.ion-android-desktop:before {
  content: "\f380";
}
.ion-android-document:before {
  content: "\f381";
}
.ion-android-done:before {
  content: "\f383";
}
.ion-android-done-all:before {
  content: "\f382";
}
.ion-android-download:before {
  content: "\f2dd";
}
.ion-android-drafts:before {
  content: "\f384";
}
.ion-android-exit:before {
  content: "\f385";
}
.ion-android-expand:before {
  content: "\f386";
}
.ion-android-favorite:before {
  content: "\f388";
}
.ion-android-favorite-outline:before {
  content: "\f387";
}
.ion-android-film:before {
  content: "\f389";
}
.ion-android-folder:before {
  content: "\f2e0";
}
.ion-android-folder-open:before {
  content: "\f38a";
}
.ion-android-funnel:before {
  content: "\f38b";
}
.ion-android-globe:before {
  content: "\f38c";
}
.ion-android-hand:before {
  content: "\f2e3";
}
.ion-android-hangout:before {
  content: "\f38d";
}
.ion-android-happy:before {
  content: "\f38e";
}
.ion-android-home:before {
  content: "\f38f";
}
.ion-android-image:before {
  content: "\f2e4";
}
.ion-android-laptop:before {
  content: "\f390";
}
.ion-android-list:before {
  content: "\f391";
}
.ion-android-locate:before {
  content: "\f2e9";
}
.ion-android-lock:before {
  content: "\f392";
}
.ion-android-mail:before {
  content: "\f2eb";
}
.ion-android-map:before {
  content: "\f393";
}
.ion-android-menu:before {
  content: "\f394";
}
.ion-android-microphone:before {
  content: "\f2ec";
}
.ion-android-microphone-off:before {
  content: "\f395";
}
.ion-android-more-horizontal:before {
  content: "\f396";
}
.ion-android-more-vertical:before {
  content: "\f397";
}
.ion-android-navigate:before {
  content: "\f398";
}
.ion-android-notifications:before {
  content: "\f39b";
}
.ion-android-notifications-none:before {
  content: "\f399";
}
.ion-android-notifications-off:before {
  content: "\f39a";
}
.ion-android-open:before {
  content: "\f39c";
}
.ion-android-options:before {
  content: "\f39d";
}
.ion-android-people:before {
  content: "\f39e";
}
.ion-android-person:before {
  content: "\f3a0";
}
.ion-android-person-add:before {
  content: "\f39f";
}
.ion-android-phone-landscape:before {
  content: "\f3a1";
}
.ion-android-phone-portrait:before {
  content: "\f3a2";
}
.ion-android-pin:before {
  content: "\f3a3";
}
.ion-android-plane:before {
  content: "\f3a4";
}
.ion-android-playstore:before {
  content: "\f2f0";
}
.ion-android-print:before {
  content: "\f3a5";
}
.ion-android-radio-button-off:before {
  content: "\f3a6";
}
.ion-android-radio-button-on:before {
  content: "\f3a7";
}
.ion-android-refresh:before {
  content: "\f3a8";
}
.ion-android-remove:before {
  content: "\f2f4";
}
.ion-android-remove-circle:before {
  content: "\f3a9";
}
.ion-android-restaurant:before {
  content: "\f3aa";
}
.ion-android-sad:before {
  content: "\f3ab";
}
.ion-android-search:before {
  content: "\f2f5";
}
.ion-android-send:before {
  content: "\f2f6";
}
.ion-android-settings:before {
  content: "\f2f7";
}
.ion-android-share:before {
  content: "\f2f8";
}
.ion-android-share-alt:before {
  content: "\f3ac";
}
.ion-android-star:before {
  content: "\f2fc";
}
.ion-android-star-half:before {
  content: "\f3ad";
}
.ion-android-star-outline:before {
  content: "\f3ae";
}
.ion-android-stopwatch:before {
  content: "\f2fd";
}
.ion-android-subway:before {
  content: "\f3af";
}
.ion-android-sunny:before {
  content: "\f3b0";
}
.ion-android-sync:before {
  content: "\f3b1";
}
.ion-android-textsms:before {
  content: "\f3b2";
}
.ion-android-time:before {
  content: "\f3b3";
}
.ion-android-train:before {
  content: "\f3b4";
}
.ion-android-unlock:before {
  content: "\f3b5";
}
.ion-android-upload:before {
  content: "\f3b6";
}
.ion-android-volume-down:before {
  content: "\f3b7";
}
.ion-android-volume-mute:before {
  content: "\f3b8";
}
.ion-android-volume-off:before {
  content: "\f3b9";
}
.ion-android-volume-up:before {
  content: "\f3ba";
}
.ion-android-walk:before {
  content: "\f3bb";
}
.ion-android-warning:before {
  content: "\f3bc";
}
.ion-android-watch:before {
  content: "\f3bd";
}
.ion-android-wifi:before {
  content: "\f305";
}
.ion-aperture:before {
  content: "\f313";
}
.ion-archive:before {
  content: "\f102";
}
.ion-arrow-down-a:before {
  content: "\f103";
}
.ion-arrow-down-b:before {
  content: "\f104";
}
.ion-arrow-down-c:before {
  content: "\f105";
}
.ion-arrow-expand:before {
  content: "\f25e";
}
.ion-arrow-graph-down-left:before {
  content: "\f25f";
}
.ion-arrow-graph-down-right:before {
  content: "\f260";
}
.ion-arrow-graph-up-left:before {
  content: "\f261";
}
.ion-arrow-graph-up-right:before {
  content: "\f262";
}
.ion-arrow-left-a:before {
  content: "\f106";
}
.ion-arrow-left-b:before {
  content: "\f107";
}
.ion-arrow-left-c:before {
  content: "\f108";
}
.ion-arrow-move:before {
  content: "\f263";
}
.ion-arrow-resize:before {
  content: "\f264";
}
.ion-arrow-return-left:before {
  content: "\f265";
}
.ion-arrow-return-right:before {
  content: "\f266";
}
.ion-arrow-right-a:before {
  content: "\f109";
}
.ion-arrow-right-b:before {
  content: "\f10a";
}
.ion-arrow-right-c:before {
  content: "\f10b";
}
.ion-arrow-shrink:before {
  content: "\f267";
}
.ion-arrow-swap:before {
  content: "\f268";
}
.ion-arrow-up-a:before {
  content: "\f10c";
}
.ion-arrow-up-b:before {
  content: "\f10d";
}
.ion-arrow-up-c:before {
  content: "\f10e";
}
.ion-asterisk:before {
  content: "\f314";
}
.ion-at:before {
  content: "\f10f";
}
.ion-backspace:before {
  content: "\f3bf";
}
.ion-backspace-outline:before {
  content: "\f3be";
}
.ion-bag:before {
  content: "\f110";
}
.ion-battery-charging:before {
  content: "\f111";
}
.ion-battery-empty:before {
  content: "\f112";
}
.ion-battery-full:before {
  content: "\f113";
}
.ion-battery-half:before {
  content: "\f114";
}
.ion-battery-low:before {
  content: "\f115";
}
.ion-beaker:before {
  content: "\f269";
}
.ion-beer:before {
  content: "\f26a";
}
.ion-bluetooth:before {
  content: "\f116";
}
.ion-bonfire:before {
  content: "\f315";
}
.ion-bookmark:before {
  content: "\f26b";
}
.ion-bowtie:before {
  content: "\f3c0";
}
.ion-briefcase:before {
  content: "\f26c";
}
.ion-bug:before {
  content: "\f2be";
}
.ion-calculator:before {
  content: "\f26d";
}
.ion-calendar:before {
  content: "\f117";
}
.ion-camera:before {
  content: "\f118";
}
.ion-card:before {
  content: "\f119";
}
.ion-cash:before {
  content: "\f316";
}
.ion-chatbox:before {
  content: "\f11b";
}
.ion-chatbox-working:before {
  content: "\f11a";
}
.ion-chatboxes:before {
  content: "\f11c";
}
.ion-chatbubble:before {
  content: "\f11e";
}
.ion-chatbubble-working:before {
  content: "\f11d";
}
.ion-chatbubbles:before {
  content: "\f11f";
}
.ion-checkmark:before {
  content: "\f122";
}
.ion-checkmark-circled:before {
  content: "\f120";
}
.ion-checkmark-round:before {
  content: "\f121";
}
.ion-chevron-down:before {
  content: "\f123";
}
.ion-chevron-left:before {
  content: "\f124";
}
.ion-chevron-right:before {
  content: "\f125";
}
.ion-chevron-up:before {
  content: "\f126";
}
.ion-clipboard:before {
  content: "\f127";
}
.ion-clock:before {
  content: "\f26e";
}
.ion-close:before {
  content: "\f12a";
}
.ion-close-circled:before {
  content: "\f128";
}
.ion-close-round:before {
  content: "\f129";
}
.ion-closed-captioning:before {
  content: "\f317";
}
.ion-cloud:before {
  content: "\f12b";
}
.ion-code:before {
  content: "\f271";
}
.ion-code-download:before {
  content: "\f26f";
}
.ion-code-working:before {
  content: "\f270";
}
.ion-coffee:before {
  content: "\f272";
}
.ion-compass:before {
  content: "\f273";
}
.ion-compose:before {
  content: "\f12c";
}
.ion-connection-bars:before {
  content: "\f274";
}
.ion-contrast:before {
  content: "\f275";
}
.ion-crop:before {
  content: "\f3c1";
}
.ion-cube:before {
  content: "\f318";
}
.ion-disc:before {
  content: "\f12d";
}
.ion-document:before {
  content: "\f12f";
}
.ion-document-text:before {
  content: "\f12e";
}
.ion-drag:before {
  content: "\f130";
}
.ion-earth:before {
  content: "\f276";
}
.ion-easel:before {
  content: "\f3c2";
}
.ion-edit:before {
  content: "\f2bf";
}
.ion-egg:before {
  content: "\f277";
}
.ion-eject:before {
  content: "\f131";
}
.ion-email:before {
  content: "\f132";
}
.ion-email-unread:before {
  content: "\f3c3";
}
.ion-erlenmeyer-flask:before {
  content: "\f3c5";
}
.ion-erlenmeyer-flask-bubbles:before {
  content: "\f3c4";
}
.ion-eye:before {
  content: "\f133";
}
.ion-eye-disabled:before {
  content: "\f306";
}
.ion-female:before {
  content: "\f278";
}
.ion-filing:before {
  content: "\f134";
}
.ion-film-marker:before {
  content: "\f135";
}
.ion-fireball:before {
  content: "\f319";
}
.ion-flag:before {
  content: "\f279";
}
.ion-flame:before {
  content: "\f31a";
}
.ion-flash:before {
  content: "\f137";
}
.ion-flash-off:before {
  content: "\f136";
}
.ion-folder:before {
  content: "\f139";
}
.ion-fork:before {
  content: "\f27a";
}
.ion-fork-repo:before {
  content: "\f2c0";
}
.ion-forward:before {
  content: "\f13a";
}
.ion-funnel:before {
  content: "\f31b";
}
.ion-gear-a:before {
  content: "\f13d";
}
.ion-gear-b:before {
  content: "\f13e";
}
.ion-grid:before {
  content: "\f13f";
}
.ion-hammer:before {
  content: "\f27b";
}
.ion-happy:before {
  content: "\f31c";
}
.ion-happy-outline:before {
  content: "\f3c6";
}
.ion-headphone:before {
  content: "\f140";
}
.ion-heart:before {
  content: "\f141";
}
.ion-heart-broken:before {
  content: "\f31d";
}
.ion-help:before {
  content: "\f143";
}
.ion-help-buoy:before {
  content: "\f27c";
}
.ion-help-circled:before {
  content: "\f142";
}
.ion-home:before {
  content: "\f144";
}
.ion-icecream:before {
  content: "\f27d";
}
.ion-image:before {
  content: "\f147";
}
.ion-images:before {
  content: "\f148";
}
.ion-information:before {
  content: "\f14a";
}
.ion-information-circled:before {
  content: "\f149";
}
.ion-ionic:before {
  content: "\f14b";
}
.ion-ios-alarm:before {
  content: "\f3c8";
}
.ion-ios-alarm-outline:before {
  content: "\f3c7";
}
.ion-ios-albums:before {
  content: "\f3ca";
}
.ion-ios-albums-outline:before {
  content: "\f3c9";
}
.ion-ios-americanfootball:before {
  content: "\f3cc";
}
.ion-ios-americanfootball-outline:before {
  content: "\f3cb";
}
.ion-ios-analytics:before {
  content: "\f3ce";
}
.ion-ios-analytics-outline:before {
  content: "\f3cd";
}
.ion-ios-arrow-back:before {
  content: "\f3cf";
}
.ion-ios-arrow-down:before {
  content: "\f3d0";
}
.ion-ios-arrow-forward:before {
  content: "\f3d1";
}
.ion-ios-arrow-left:before {
  content: "\f3d2";
}
.ion-ios-arrow-right:before {
  content: "\f3d3";
}
.ion-ios-arrow-thin-down:before {
  content: "\f3d4";
}
.ion-ios-arrow-thin-left:before {
  content: "\f3d5";
}
.ion-ios-arrow-thin-right:before {
  content: "\f3d6";
}
.ion-ios-arrow-thin-up:before {
  content: "\f3d7";
}
.ion-ios-arrow-up:before {
  content: "\f3d8";
}
.ion-ios-at:before {
  content: "\f3da";
}
.ion-ios-at-outline:before {
  content: "\f3d9";
}
.ion-ios-barcode:before {
  content: "\f3dc";
}
.ion-ios-barcode-outline:before {
  content: "\f3db";
}
.ion-ios-baseball:before {
  content: "\f3de";
}
.ion-ios-baseball-outline:before {
  content: "\f3dd";
}
.ion-ios-basketball:before {
  content: "\f3e0";
}
.ion-ios-basketball-outline:before {
  content: "\f3df";
}
.ion-ios-bell:before {
  content: "\f3e2";
}
.ion-ios-bell-outline:before {
  content: "\f3e1";
}
.ion-ios-body:before {
  content: "\f3e4";
}
.ion-ios-body-outline:before {
  content: "\f3e3";
}
.ion-ios-bolt:before {
  content: "\f3e6";
}
.ion-ios-bolt-outline:before {
  content: "\f3e5";
}
.ion-ios-book:before {
  content: "\f3e8";
}
.ion-ios-book-outline:before {
  content: "\f3e7";
}
.ion-ios-bookmarks:before {
  content: "\f3ea";
}
.ion-ios-bookmarks-outline:before {
  content: "\f3e9";
}
.ion-ios-box:before {
  content: "\f3ec";
}
.ion-ios-box-outline:before {
  content: "\f3eb";
}
.ion-ios-briefcase:before {
  content: "\f3ee";
}
.ion-ios-briefcase-outline:before {
  content: "\f3ed";
}
.ion-ios-browsers:before {
  content: "\f3f0";
}
.ion-ios-browsers-outline:before {
  content: "\f3ef";
}
.ion-ios-calculator:before {
  content: "\f3f2";
}
.ion-ios-calculator-outline:before {
  content: "\f3f1";
}
.ion-ios-calendar:before {
  content: "\f3f4";
}
.ion-ios-calendar-outline:before {
  content: "\f3f3";
}
.ion-ios-camera:before {
  content: "\f3f6";
}
.ion-ios-camera-outline:before {
  content: "\f3f5";
}
.ion-ios-cart:before {
  content: "\f3f8";
}
.ion-ios-cart-outline:before {
  content: "\f3f7";
}
.ion-ios-chatboxes:before {
  content: "\f3fa";
}
.ion-ios-chatboxes-outline:before {
  content: "\f3f9";
}
.ion-ios-chatbubble:before {
  content: "\f3fc";
}
.ion-ios-chatbubble-outline:before {
  content: "\f3fb";
}
.ion-ios-checkmark:before {
  content: "\f3ff";
}
.ion-ios-checkmark-empty:before {
  content: "\f3fd";
}
.ion-ios-checkmark-outline:before {
  content: "\f3fe";
}
.ion-ios-circle-filled:before {
  content: "\f400";
}
.ion-ios-circle-outline:before {
  content: "\f401";
}
.ion-ios-clock:before {
  content: "\f403";
}
.ion-ios-clock-outline:before {
  content: "\f402";
}
.ion-ios-close:before {
  content: "\f406";
}
.ion-ios-close-empty:before {
  content: "\f404";
}
.ion-ios-close-outline:before {
  content: "\f405";
}
.ion-ios-cloud:before {
  content: "\f40c";
}
.ion-ios-cloud-download:before {
  content: "\f408";
}
.ion-ios-cloud-download-outline:before {
  content: "\f407";
}
.ion-ios-cloud-outline:before {
  content: "\f409";
}
.ion-ios-cloud-upload:before {
  content: "\f40b";
}
.ion-ios-cloud-upload-outline:before {
  content: "\f40a";
}
.ion-ios-cloudy:before {
  content: "\f410";
}
.ion-ios-cloudy-night:before {
  content: "\f40e";
}
.ion-ios-cloudy-night-outline:before {
  content: "\f40d";
}
.ion-ios-cloudy-outline:before {
  content: "\f40f";
}
.ion-ios-cog:before {
  content: "\f412";
}
.ion-ios-cog-outline:before {
  content: "\f411";
}
.ion-ios-color-filter:before {
  content: "\f414";
}
.ion-ios-color-filter-outline:before {
  content: "\f413";
}
.ion-ios-color-wand:before {
  content: "\f416";
}
.ion-ios-color-wand-outline:before {
  content: "\f415";
}
.ion-ios-compose:before {
  content: "\f418";
}
.ion-ios-compose-outline:before {
  content: "\f417";
}
.ion-ios-contact:before {
  content: "\f41a";
}
.ion-ios-contact-outline:before {
  content: "\f419";
}
.ion-ios-copy:before {
  content: "\f41c";
}
.ion-ios-copy-outline:before {
  content: "\f41b";
}
.ion-ios-crop:before {
  content: "\f41e";
}
.ion-ios-crop-strong:before {
  content: "\f41d";
}
.ion-ios-download:before {
  content: "\f420";
}
.ion-ios-download-outline:before {
  content: "\f41f";
}
.ion-ios-drag:before {
  content: "\f421";
}
.ion-ios-email:before {
  content: "\f423";
}
.ion-ios-email-outline:before {
  content: "\f422";
}
.ion-ios-eye:before {
  content: "\f425";
}
.ion-ios-eye-outline:before {
  content: "\f424";
}
.ion-ios-fastforward:before {
  content: "\f427";
}
.ion-ios-fastforward-outline:before {
  content: "\f426";
}
.ion-ios-filing:before {
  content: "\f429";
}
.ion-ios-filing-outline:before {
  content: "\f428";
}
.ion-ios-film:before {
  content: "\f42b";
}
.ion-ios-film-outline:before {
  content: "\f42a";
}
.ion-ios-flag:before {
  content: "\f42d";
}
.ion-ios-flag-outline:before {
  content: "\f42c";
}
.ion-ios-flame:before {
  content: "\f42f";
}
.ion-ios-flame-outline:before {
  content: "\f42e";
}
.ion-ios-flask:before {
  content: "\f431";
}
.ion-ios-flask-outline:before {
  content: "\f430";
}
.ion-ios-flower:before {
  content: "\f433";
}
.ion-ios-flower-outline:before {
  content: "\f432";
}
.ion-ios-folder:before {
  content: "\f435";
}
.ion-ios-folder-outline:before {
  content: "\f434";
}
.ion-ios-football:before {
  content: "\f437";
}
.ion-ios-football-outline:before {
  content: "\f436";
}
.ion-ios-game-controller-a:before {
  content: "\f439";
}
.ion-ios-game-controller-a-outline:before {
  content: "\f438";
}
.ion-ios-game-controller-b:before {
  content: "\f43b";
}
.ion-ios-game-controller-b-outline:before {
  content: "\f43a";
}
.ion-ios-gear:before {
  content: "\f43d";
}
.ion-ios-gear-outline:before {
  content: "\f43c";
}
.ion-ios-glasses:before {
  content: "\f43f";
}
.ion-ios-glasses-outline:before {
  content: "\f43e";
}
.ion-ios-grid-view:before {
  content: "\f441";
}
.ion-ios-grid-view-outline:before {
  content: "\f440";
}
.ion-ios-heart:before {
  content: "\f443";
}
.ion-ios-heart-outline:before {
  content: "\f442";
}
.ion-ios-help:before {
  content: "\f446";
}
.ion-ios-help-empty:before {
  content: "\f444";
}
.ion-ios-help-outline:before {
  content: "\f445";
}
.ion-ios-home:before {
  content: "\f448";
}
.ion-ios-home-outline:before {
  content: "\f447";
}
.ion-ios-infinite:before {
  content: "\f44a";
}
.ion-ios-infinite-outline:before {
  content: "\f449";
}
.ion-ios-information:before {
  content: "\f44d";
}
.ion-ios-information-empty:before {
  content: "\f44b";
}
.ion-ios-information-outline:before {
  content: "\f44c";
}
.ion-ios-ionic-outline:before {
  content: "\f44e";
}
.ion-ios-keypad:before {
  content: "\f450";
}
.ion-ios-keypad-outline:before {
  content: "\f44f";
}
.ion-ios-lightbulb:before {
  content: "\f452";
}
.ion-ios-lightbulb-outline:before {
  content: "\f451";
}
.ion-ios-list:before {
  content: "\f454";
}
.ion-ios-list-outline:before {
  content: "\f453";
}
.ion-ios-location:before {
  content: "\f456";
}
.ion-ios-location-outline:before {
  content: "\f455";
}
.ion-ios-locked:before {
  content: "\f458";
}
.ion-ios-locked-outline:before {
  content: "\f457";
}
.ion-ios-loop:before {
  content: "\f45a";
}
.ion-ios-loop-strong:before {
  content: "\f459";
}
.ion-ios-medical:before {
  content: "\f45c";
}
.ion-ios-medical-outline:before {
  content: "\f45b";
}
.ion-ios-medkit:before {
  content: "\f45e";
}
.ion-ios-medkit-outline:before {
  content: "\f45d";
}
.ion-ios-mic:before {
  content: "\f461";
}
.ion-ios-mic-off:before {
  content: "\f45f";
}
.ion-ios-mic-outline:before {
  content: "\f460";
}
.ion-ios-minus:before {
  content: "\f464";
}
.ion-ios-minus-empty:before {
  content: "\f462";
}
.ion-ios-minus-outline:before {
  content: "\f463";
}
.ion-ios-monitor:before {
  content: "\f466";
}
.ion-ios-monitor-outline:before {
  content: "\f465";
}
.ion-ios-moon:before {
  content: "\f468";
}
.ion-ios-moon-outline:before {
  content: "\f467";
}
.ion-ios-more:before {
  content: "\f46a";
}
.ion-ios-more-outline:before {
  content: "\f469";
}
.ion-ios-musical-note:before {
  content: "\f46b";
}
.ion-ios-musical-notes:before {
  content: "\f46c";
}
.ion-ios-navigate:before {
  content: "\f46e";
}
.ion-ios-navigate-outline:before {
  content: "\f46d";
}
.ion-ios-nutrition:before {
  content: "\f470";
}
.ion-ios-nutrition-outline:before {
  content: "\f46f";
}
.ion-ios-paper:before {
  content: "\f472";
}
.ion-ios-paper-outline:before {
  content: "\f471";
}
.ion-ios-paperplane:before {
  content: "\f474";
}
.ion-ios-paperplane-outline:before {
  content: "\f473";
}
.ion-ios-partlysunny:before {
  content: "\f476";
}
.ion-ios-partlysunny-outline:before {
  content: "\f475";
}
.ion-ios-pause:before {
  content: "\f478";
}
.ion-ios-pause-outline:before {
  content: "\f477";
}
.ion-ios-paw:before {
  content: "\f47a";
}
.ion-ios-paw-outline:before {
  content: "\f479";
}
.ion-ios-people:before {
  content: "\f47c";
}
.ion-ios-people-outline:before {
  content: "\f47b";
}
.ion-ios-person:before {
  content: "\f47e";
}
.ion-ios-person-outline:before {
  content: "\f47d";
}
.ion-ios-personadd:before {
  content: "\f480";
}
.ion-ios-personadd-outline:before {
  content: "\f47f";
}
.ion-ios-photos:before {
  content: "\f482";
}
.ion-ios-photos-outline:before {
  content: "\f481";
}
.ion-ios-pie:before {
  content: "\f484";
}
.ion-ios-pie-outline:before {
  content: "\f483";
}
.ion-ios-pint:before {
  content: "\f486";
}
.ion-ios-pint-outline:before {
  content: "\f485";
}
.ion-ios-play:before {
  content: "\f488";
}
.ion-ios-play-outline:before {
  content: "\f487";
}
.ion-ios-plus:before {
  content: "\f48b";
}
.ion-ios-plus-empty:before {
  content: "\f489";
}
.ion-ios-plus-outline:before {
  content: "\f48a";
}
.ion-ios-pricetag:before {
  content: "\f48d";
}
.ion-ios-pricetag-outline:before {
  content: "\f48c";
}
.ion-ios-pricetags:before {
  content: "\f48f";
}
.ion-ios-pricetags-outline:before {
  content: "\f48e";
}
.ion-ios-printer:before {
  content: "\f491";
}
.ion-ios-printer-outline:before {
  content: "\f490";
}
.ion-ios-pulse:before {
  content: "\f493";
}
.ion-ios-pulse-strong:before {
  content: "\f492";
}
.ion-ios-rainy:before {
  content: "\f495";
}
.ion-ios-rainy-outline:before {
  content: "\f494";
}
.ion-ios-recording:before {
  content: "\f497";
}
.ion-ios-recording-outline:before {
  content: "\f496";
}
.ion-ios-redo:before {
  content: "\f499";
}
.ion-ios-redo-outline:before {
  content: "\f498";
}
.ion-ios-refresh:before {
  content: "\f49c";
}
.ion-ios-refresh-empty:before {
  content: "\f49a";
}
.ion-ios-refresh-outline:before {
  content: "\f49b";
}
.ion-ios-reload:before {
  content: "\f49d";
}
.ion-ios-reverse-camera:before {
  content: "\f49f";
}
.ion-ios-reverse-camera-outline:before {
  content: "\f49e";
}
.ion-ios-rewind:before {
  content: "\f4a1";
}
.ion-ios-rewind-outline:before {
  content: "\f4a0";
}
.ion-ios-rose:before {
  content: "\f4a3";
}
.ion-ios-rose-outline:before {
  content: "\f4a2";
}
.ion-ios-search:before {
  content: "\f4a5";
}
.ion-ios-search-strong:before {
  content: "\f4a4";
}
.ion-ios-settings:before {
  content: "\f4a7";
}
.ion-ios-settings-strong:before {
  content: "\f4a6";
}
.ion-ios-shuffle:before {
  content: "\f4a9";
}
.ion-ios-shuffle-strong:before {
  content: "\f4a8";
}
.ion-ios-skipbackward:before {
  content: "\f4ab";
}
.ion-ios-skipbackward-outline:before {
  content: "\f4aa";
}
.ion-ios-skipforward:before {
  content: "\f4ad";
}
.ion-ios-skipforward-outline:before {
  content: "\f4ac";
}
.ion-ios-snowy:before {
  content: "\f4ae";
}
.ion-ios-speedometer:before {
  content: "\f4b0";
}
.ion-ios-speedometer-outline:before {
  content: "\f4af";
}
.ion-ios-star:before {
  content: "\f4b3";
}
.ion-ios-star-half:before {
  content: "\f4b1";
}
.ion-ios-star-outline:before {
  content: "\f4b2";
}
.ion-ios-stopwatch:before {
  content: "\f4b5";
}
.ion-ios-stopwatch-outline:before {
  content: "\f4b4";
}
.ion-ios-sunny:before {
  content: "\f4b7";
}
.ion-ios-sunny-outline:before {
  content: "\f4b6";
}
.ion-ios-telephone:before {
  content: "\f4b9";
}
.ion-ios-telephone-outline:before {
  content: "\f4b8";
}
.ion-ios-tennisball:before {
  content: "\f4bb";
}
.ion-ios-tennisball-outline:before {
  content: "\f4ba";
}
.ion-ios-thunderstorm:before {
  content: "\f4bd";
}
.ion-ios-thunderstorm-outline:before {
  content: "\f4bc";
}
.ion-ios-time:before {
  content: "\f4bf";
}
.ion-ios-time-outline:before {
  content: "\f4be";
}
.ion-ios-timer:before {
  content: "\f4c1";
}
.ion-ios-timer-outline:before {
  content: "\f4c0";
}
.ion-ios-toggle:before {
  content: "\f4c3";
}
.ion-ios-toggle-outline:before {
  content: "\f4c2";
}
.ion-ios-trash:before {
  content: "\f4c5";
}
.ion-ios-trash-outline:before {
  content: "\f4c4";
}
.ion-ios-undo:before {
  content: "\f4c7";
}
.ion-ios-undo-outline:before {
  content: "\f4c6";
}
.ion-ios-unlocked:before {
  content: "\f4c9";
}
.ion-ios-unlocked-outline:before {
  content: "\f4c8";
}
.ion-ios-upload:before {
  content: "\f4cb";
}
.ion-ios-upload-outline:before {
  content: "\f4ca";
}
.ion-ios-videocam:before {
  content: "\f4cd";
}
.ion-ios-videocam-outline:before {
  content: "\f4cc";
}
.ion-ios-volume-high:before {
  content: "\f4ce";
}
.ion-ios-volume-low:before {
  content: "\f4cf";
}
.ion-ios-wineglass:before {
  content: "\f4d1";
}
.ion-ios-wineglass-outline:before {
  content: "\f4d0";
}
.ion-ios-world:before {
  content: "\f4d3";
}
.ion-ios-world-outline:before {
  content: "\f4d2";
}
.ion-ipad:before {
  content: "\f1f9";
}
.ion-iphone:before {
  content: "\f1fa";
}
.ion-ipod:before {
  content: "\f1fb";
}
.ion-jet:before {
  content: "\f295";
}
.ion-key:before {
  content: "\f296";
}
.ion-knife:before {
  content: "\f297";
}
.ion-laptop:before {
  content: "\f1fc";
}
.ion-leaf:before {
  content: "\f1fd";
}
.ion-levels:before {
  content: "\f298";
}
.ion-lightbulb:before {
  content: "\f299";
}
.ion-link:before {
  content: "\f1fe";
}
.ion-load-a:before {
  content: "\f29a";
}
.ion-load-b:before {
  content: "\f29b";
}
.ion-load-c:before {
  content: "\f29c";
}
.ion-load-d:before {
  content: "\f29d";
}
.ion-location:before {
  content: "\f1ff";
}
.ion-lock-combination:before {
  content: "\f4d4";
}
.ion-locked:before {
  content: "\f200";
}
.ion-log-in:before {
  content: "\f29e";
}
.ion-log-out:before {
  content: "\f29f";
}
.ion-loop:before {
  content: "\f201";
}
.ion-magnet:before {
  content: "\f2a0";
}
.ion-male:before {
  content: "\f2a1";
}
.ion-man:before {
  content: "\f202";
}
.ion-map:before {
  content: "\f203";
}
.ion-medkit:before {
  content: "\f2a2";
}
.ion-merge:before {
  content: "\f33f";
}
.ion-mic-a:before {
  content: "\f204";
}
.ion-mic-b:before {
  content: "\f205";
}
.ion-mic-c:before {
  content: "\f206";
}
.ion-minus:before {
  content: "\f209";
}
.ion-minus-circled:before {
  content: "\f207";
}
.ion-minus-round:before {
  content: "\f208";
}
.ion-model-s:before {
  content: "\f2c1";
}
.ion-monitor:before {
  content: "\f20a";
}
.ion-more:before {
  content: "\f20b";
}
.ion-mouse:before {
  content: "\f340";
}
.ion-music-note:before {
  content: "\f20c";
}
.ion-navicon:before {
  content: "\f20e";
}
.ion-navicon-round:before {
  content: "\f20d";
}
.ion-navigate:before {
  content: "\f2a3";
}
.ion-network:before {
  content: "\f341";
}
.ion-no-smoking:before {
  content: "\f2c2";
}
.ion-nuclear:before {
  content: "\f2a4";
}
.ion-outlet:before {
  content: "\f342";
}
.ion-paintbrush:before {
  content: "\f4d5";
}
.ion-paintbucket:before {
  content: "\f4d6";
}
.ion-paper-airplane:before {
  content: "\f2c3";
}
.ion-paperclip:before {
  content: "\f20f";
}
.ion-pause:before {
  content: "\f210";
}
.ion-person:before {
  content: "\f213";
}
.ion-person-add:before {
  content: "\f211";
}
.ion-person-stalker:before {
  content: "\f212";
}
.ion-pie-graph:before {
  content: "\f2a5";
}
.ion-pin:before {
  content: "\f2a6";
}
.ion-pinpoint:before {
  content: "\f2a7";
}
.ion-pizza:before {
  content: "\f2a8";
}
.ion-plane:before {
  content: "\f214";
}
.ion-planet:before {
  content: "\f343";
}
.ion-play:before {
  content: "\f215";
}
.ion-playstation:before {
  content: "\f30a";
}
.ion-plus:before {
  content: "\f218";
}
.ion-plus-circled:before {
  content: "\f216";
}
.ion-plus-round:before {
  content: "\f217";
}
.ion-podium:before {
  content: "\f344";
}
.ion-pound:before {
  content: "\f219";
}
.ion-power:before {
  content: "\f2a9";
}
.ion-pricetag:before {
  content: "\f2aa";
}
.ion-pricetags:before {
  content: "\f2ab";
}
.ion-printer:before {
  content: "\f21a";
}
.ion-pull-request:before {
  content: "\f345";
}
.ion-qr-scanner:before {
  content: "\f346";
}
.ion-quote:before {
  content: "\f347";
}
.ion-radio-waves:before {
  content: "\f2ac";
}
.ion-record:before {
  content: "\f21b";
}
.ion-refresh:before {
  content: "\f21c";
}
.ion-reply:before {
  content: "\f21e";
}
.ion-reply-all:before {
  content: "\f21d";
}
.ion-ribbon-a:before {
  content: "\f348";
}
.ion-ribbon-b:before {
  content: "\f349";
}
.ion-sad:before {
  content: "\f34a";
}
.ion-sad-outline:before {
  content: "\f4d7";
}
.ion-scissors:before {
  content: "\f34b";
}
.ion-search:before {
  content: "\f21f";
}
.ion-settings:before {
  content: "\f2ad";
}
.ion-share:before {
  content: "\f220";
}
.ion-shuffle:before {
  content: "\f221";
}
.ion-skip-backward:before {
  content: "\f222";
}
.ion-skip-forward:before {
  content: "\f223";
}
.ion-social-android:before {
  content: "\f225";
}
.ion-social-android-outline:before {
  content: "\f224";
}
.ion-social-angular:before {
  content: "\f4d9";
}
.ion-social-angular-outline:before {
  content: "\f4d8";
}
.ion-social-apple:before {
  content: "\f227";
}
.ion-social-apple-outline:before {
  content: "\f226";
}
.ion-social-bitcoin:before {
  content: "\f2af";
}
.ion-social-bitcoin-outline:before {
  content: "\f2ae";
}
.ion-social-buffer:before {
  content: "\f229";
}
.ion-social-buffer-outline:before {
  content: "\f228";
}
.ion-social-chrome:before {
  content: "\f4db";
}
.ion-social-chrome-outline:before {
  content: "\f4da";
}
.ion-social-codepen:before {
  content: "\f4dd";
}
.ion-social-codepen-outline:before {
  content: "\f4dc";
}
.ion-social-css3:before {
  content: "\f4df";
}
.ion-social-css3-outline:before {
  content: "\f4de";
}
.ion-social-designernews:before {
  content: "\f22b";
}
.ion-social-designernews-outline:before {
  content: "\f22a";
}
.ion-social-dribbble:before {
  content: "\f22d";
}
.ion-social-dribbble-outline:before {
  content: "\f22c";
}
.ion-social-dropbox:before {
  content: "\f22f";
}
.ion-social-dropbox-outline:before {
  content: "\f22e";
}
.ion-social-euro:before {
  content: "\f4e1";
}
.ion-social-euro-outline:before {
  content: "\f4e0";
}
.ion-social-facebook:before {
  content: "\f231";
}
.ion-social-facebook-outline:before {
  content: "\f230";
}
.ion-social-foursquare:before {
  content: "\f34d";
}
.ion-social-foursquare-outline:before {
  content: "\f34c";
}
.ion-social-freebsd-devil:before {
  content: "\f2c4";
}
.ion-social-github:before {
  content: "\f233";
}
.ion-social-github-outline:before {
  content: "\f232";
}
.ion-social-google:before {
  content: "\f34f";
}
.ion-social-google-outline:before {
  content: "\f34e";
}
.ion-social-googleplus:before {
  content: "\f235";
}
.ion-social-googleplus-outline:before {
  content: "\f234";
}
.ion-social-hackernews:before {
  content: "\f237";
}
.ion-social-hackernews-outline:before {
  content: "\f236";
}
.ion-social-html5:before {
  content: "\f4e3";
}
.ion-social-html5-outline:before {
  content: "\f4e2";
}
.ion-social-instagram:before {
  content: "\f351";
}
.ion-social-instagram-outline:before {
  content: "\f350";
}
.ion-social-javascript:before {
  content: "\f4e5";
}
.ion-social-javascript-outline:before {
  content: "\f4e4";
}
.ion-social-linkedin:before {
  content: "\f239";
}
.ion-social-linkedin-outline:before {
  content: "\f238";
}
.ion-social-markdown:before {
  content: "\f4e6";
}
.ion-social-nodejs:before {
  content: "\f4e7";
}
.ion-social-octocat:before {
  content: "\f4e8";
}
.ion-social-pinterest:before {
  content: "\f2b1";
}
.ion-social-pinterest-outline:before {
  content: "\f2b0";
}
.ion-social-python:before {
  content: "\f4e9";
}
.ion-social-reddit:before {
  content: "\f23b";
}
.ion-social-reddit-outline:before {
  content: "\f23a";
}
.ion-social-rss:before {
  content: "\f23d";
}
.ion-social-rss-outline:before {
  content: "\f23c";
}
.ion-social-sass:before {
  content: "\f4ea";
}
.ion-social-skype:before {
  content: "\f23f";
}
.ion-social-skype-outline:before {
  content: "\f23e";
}
.ion-social-snapchat:before {
  content: "\f4ec";
}
.ion-social-snapchat-outline:before {
  content: "\f4eb";
}
.ion-social-tumblr:before {
  content: "\f241";
}
.ion-social-tumblr-outline:before {
  content: "\f240";
}
.ion-social-tux:before {
  content: "\f2c5";
}
.ion-social-twitch:before {
  content: "\f4ee";
}
.ion-social-twitch-outline:before {
  content: "\f4ed";
}
.ion-social-twitter:before {
  content: "\f243";
}
.ion-social-twitter-outline:before {
  content: "\f242";
}
.ion-social-usd:before {
  content: "\f353";
}
.ion-social-usd-outline:before {
  content: "\f352";
}
.ion-social-vimeo:before {
  content: "\f245";
}
.ion-social-vimeo-outline:before {
  content: "\f244";
}
.ion-social-whatsapp:before {
  content: "\f4f0";
}
.ion-social-whatsapp-outline:before {
  content: "\f4ef";
}
.ion-social-windows:before {
  content: "\f247";
}
.ion-social-windows-outline:before {
  content: "\f246";
}
.ion-social-wordpress:before {
  content: "\f249";
}
.ion-social-wordpress-outline:before {
  content: "\f248";
}
.ion-social-yahoo:before {
  content: "\f24b";
}
.ion-social-yahoo-outline:before {
  content: "\f24a";
}
.ion-social-yen:before {
  content: "\f4f2";
}
.ion-social-yen-outline:before {
  content: "\f4f1";
}
.ion-social-youtube:before {
  content: "\f24d";
}
.ion-social-youtube-outline:before {
  content: "\f24c";
}
.ion-soup-can:before {
  content: "\f4f4";
}
.ion-soup-can-outline:before {
  content: "\f4f3";
}
.ion-speakerphone:before {
  content: "\f2b2";
}
.ion-speedometer:before {
  content: "\f2b3";
}
.ion-spoon:before {
  content: "\f2b4";
}
.ion-star:before {
  content: "\f24e";
}
.ion-stats-bars:before {
  content: "\f2b5";
}
.ion-steam:before {
  content: "\f30b";
}
.ion-stop:before {
  content: "\f24f";
}
.ion-thermometer:before {
  content: "\f2b6";
}
.ion-thumbsdown:before {
  content: "\f250";
}
.ion-thumbsup:before {
  content: "\f251";
}
.ion-toggle:before {
  content: "\f355";
}
.ion-toggle-filled:before {
  content: "\f354";
}
.ion-transgender:before {
  content: "\f4f5";
}
.ion-trash-a:before {
  content: "\f252";
}
.ion-trash-b:before {
  content: "\f253";
}
.ion-trophy:before {
  content: "\f356";
}
.ion-tshirt:before {
  content: "\f4f7";
}
.ion-tshirt-outline:before {
  content: "\f4f6";
}
.ion-umbrella:before {
  content: "\f2b7";
}
.ion-university:before {
  content: "\f357";
}
.ion-unlocked:before {
  content: "\f254";
}
.ion-upload:before {
  content: "\f255";
}
.ion-usb:before {
  content: "\f2b8";
}
.ion-videocamera:before {
  content: "\f256";
}
.ion-volume-high:before {
  content: "\f257";
}
.ion-volume-low:before {
  content: "\f258";
}
.ion-volume-medium:before {
  content: "\f259";
}
.ion-volume-mute:before {
  content: "\f25a";
}
.ion-wand:before {
  content: "\f358";
}
.ion-waterdrop:before {
  content: "\f25b";
}
.ion-wifi:before {
  content: "\f25c";
}
.ion-wineglass:before {
  content: "\f2b9";
}
.ion-woman:before {
  content: "\f25d";
}
.ion-wrench:before {
  content: "\f2ba";
}
.ion-xbox:before {
  content: "\f30c";
}
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot');
  src: url('fonts/fontawesome-webfont.eot') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff2') format('woff2'), url('fonts/fontawesome-webfont.woff') format('woff'), url('fonts/fontawesome-webfont.ttf') format('truetype'), url('fonts/fontawesome-webfont.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  font-style: inherit;
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa:before {
  font-family: FontAwesome!important;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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;
}
/*consult icon*/
@font-face {
  font-family: consult;
  src: url(fonts/consult.eot?z634xf);
  src: url(fonts/consult.eot?z634xf#iefix) format('embedded-opentype'), url(fonts/consult.ttf?z634xf) format('truetype'), url(fonts/consult.woff?z634xf) format('woff'), url(fonts/consult.svg?z634xf#consult) format('svg');
  font-weight: 400;
  font-style: normal;
}
[class*=" cs-icon-"],
[class^=cs-icon-] {
  font-family: consult!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cs-icon-airplane:before {
  content: "\e900";
}
.cs-icon-chart:before {
  content: "\e901";
}
.cs-icon-des:before {
  content: "\e902";
}
.cs-icon-light:before {
  content: "\e903";
}
.cs-icon-medal:before {
  content: "\e904";
}
.cs-icon-pig:before {
  content: "\e905";
}
.cs-icon-portrait:before {
  content: "\e906";
}
.cs-icon-print:before {
  content: "\e907";
}
.cs-icon-ship:before {
  content: "\e908";
}
.cs-icon-support:before {
  content: "\e909";
}
.cs-icon-user:before {
  content: "\e90a";
}
.cs-icon-world:before {
  content: "\e90b";
}
.cs-icon-play-btn:before {
  content: "\e936";
}
.cs-icon-3d_rotation:before {
  content: "\e84d";
}
.cs-icon-ac_unit:before {
  content: "\eb3b";
}
.cs-icon-alarm:before {
  content: "\e855";
}
.cs-icon-access_alarms:before {
  content: "\e191";
}
.cs-icon-schedule:before {
  content: "\e8b5";
}
.cs-icon-accessibility:before {
  content: "\e84e";
}
.cs-icon-accessible:before {
  content: "\e914";
}
.cs-icon-account_balance:before {
  content: "\e84f";
}
.cs-icon-account_balance_wallet:before {
  content: "\e850";
}
.cs-icon-account_box:before {
  content: "\e851";
}
.cs-icon-account_circle:before {
  content: "\e853";
}
.cs-icon-adb:before {
  content: "\e60e";
}
.cs-icon-add:before {
  content: "\e145";
}
.cs-icon-add_a_photo:before {
  content: "\e439";
}
.cs-icon-alarm_add:before {
  content: "\e856";
}
.cs-icon-add_alert:before {
  content: "\e003";
}
.cs-icon-add_box:before {
  content: "\e146";
}
.cs-icon-add_circle:before {
  content: "\e147";
}
.cs-icon-control_point:before {
  content: "\e3ba";
}
.cs-icon-add_location:before {
  content: "\e567";
}
.cs-icon-add_shopping_cart:before {
  content: "\e854";
}
.cs-icon-queue:before {
  content: "\e03c";
}
.cs-icon-add_to_queue:before {
  content: "\e05c";
}
.cs-icon-adjust:before {
  content: "\e39e";
}
.cs-icon-airline_seat_flat:before {
  content: "\e630";
}
.cs-icon-airline_seat_flat_angled:before {
  content: "\e631";
}
.cs-icon-airline_seat_individual_suite:before {
  content: "\e632";
}
.cs-icon-airline_seat_legroom_extra:before {
  content: "\e633";
}
.cs-icon-airline_seat_legroom_normal:before {
  content: "\e634";
}
.cs-icon-airline_seat_legroom_reduced:before {
  content: "\e635";
}
.cs-icon-airline_seat_recline_extra:before {
  content: "\e636";
}
.cs-icon-airline_seat_recline_normal:before {
  content: "\e637";
}
.cs-icon-flight:before {
  content: "\e539";
}
.cs-icon-airplanemode_inactive:before {
  content: "\e194";
}
.cs-icon-airplay:before {
  content: "\e055";
}
.cs-icon-airport_shuttle:before {
  content: "\eb3c";
}
.cs-icon-alarm_off:before {
  content: "\e857";
}
.cs-icon-alarm_on:before {
  content: "\e858";
}
.cs-icon-album:before {
  content: "\e019";
}
.cs-icon-all_inclusive:before {
  content: "\eb3d";
}
.cs-icon-all_out:before {
  content: "\e90c";
}
.cs-icon-android:before {
  content: "\e859";
}
.cs-icon-announcement:before {
  content: "\e85a";
}
.cs-icon-apps:before {
  content: "\e5c3";
}
.cs-icon-archive:before {
  content: "\e149";
}
.cs-icon-arrow_back:before {
  content: "\e5c4";
}
.cs-icon-arrow_downward:before {
  content: "\e5db";
}
.cs-icon-arrow_drop_down:before {
  content: "\e5c5";
}
.cs-icon-arrow_drop_down_circle:before {
  content: "\e5c6";
}
.cs-icon-arrow_drop_up:before {
  content: "\e5c7";
}
.cs-icon-arrow_forward:before {
  content: "\e5c8";
}
.cs-icon-arrow_upward:before {
  content: "\e5d8";
}
.cs-icon-art_track:before {
  content: "\e060";
}
.cs-icon-aspect_ratio:before {
  content: "\e85b";
}
.cs-icon-poll:before {
  content: "\e801";
}
.cs-icon-assignment:before {
  content: "\e85d";
}
.cs-icon-assignment_ind:before {
  content: "\e85e";
}
.cs-icon-assignment_late:before {
  content: "\e85f";
}
.cs-icon-assignment_return:before {
  content: "\e860";
}
.cs-icon-assignment_returned:before {
  content: "\e861";
}
.cs-icon-assignment_turned_in:before {
  content: "\e862";
}
.cs-icon-assistant:before {
  content: "\e39f";
}
.cs-icon-flag:before {
  content: "\e153";
}
.cs-icon-attach_file:before {
  content: "\e226";
}
.cs-icon-attach_money:before {
  content: "\e227";
}
.cs-icon-attachment:before {
  content: "\e2bc";
}
.cs-icon-audiotrack:before {
  content: "\e3a1";
}
.cs-icon-autorenew:before {
  content: "\e863";
}
.cs-icon-av_timer:before {
  content: "\e01b";
}
.cs-icon-backspace:before {
  content: "\e14a";
}
.cs-icon-cloud_upload:before {
  content: "\e2c3";
}
.cs-icon-battery_alert:before {
  content: "\e19c";
}
.cs-icon-battery_charging_full:before {
  content: "\e1a3";
}
.cs-icon-battery_std:before {
  content: "\e1a5";
}
.cs-icon-battery_unknown:before {
  content: "\e1a6";
}
.cs-icon-beach_access:before {
  content: "\eb3e";
}
.cs-icon-beenhere:before {
  content: "\e52d";
}
.cs-icon-block:before {
  content: "\e14b";
}
.cs-icon-bluetooth:before {
  content: "\e1a7";
}
.cs-icon-bluetooth_searching:before {
  content: "\e1aa";
}
.cs-icon-bluetooth_connected:before {
  content: "\e1a8";
}
.cs-icon-bluetooth_disabled:before {
  content: "\e1a9";
}
.cs-icon-blur_circular:before {
  content: "\e3a2";
}
.cs-icon-blur_linear:before {
  content: "\e3a3";
}
.cs-icon-blur_off:before {
  content: "\e3a4";
}
.cs-icon-blur_on:before {
  content: "\e3a5";
}
.cs-icon-class:before {
  content: "\e86e";
}
.cs-icon-turned_in:before {
  content: "\e8e6";
}
.cs-icon-turned_in_not:before {
  content: "\e8e7";
}
.cs-icon-border_all:before {
  content: "\e228";
}
.cs-icon-border_bottom:before {
  content: "\e229";
}
.cs-icon-border_clear:before {
  content: "\e22a";
}
.cs-icon-border_color:before {
  content: "\e22b";
}
.cs-icon-border_horizontal:before {
  content: "\e22c";
}
.cs-icon-border_inner:before {
  content: "\e22d";
}
.cs-icon-border_left:before {
  content: "\e22e";
}
.cs-icon-border_outer:before {
  content: "\e22f";
}
.cs-icon-border_right:before {
  content: "\e230";
}
.cs-icon-border_style:before {
  content: "\e231";
}
.cs-icon-border_top:before {
  content: "\e232";
}
.cs-icon-border_vertical:before {
  content: "\e233";
}
.cs-icon-branding_watermark:before {
  content: "\e06b";
}
.cs-icon-brightness_1:before {
  content: "\e3a6";
}
.cs-icon-brightness_2:before {
  content: "\e3a7";
}
.cs-icon-brightness_3:before {
  content: "\e3a8";
}
.cs-icon-brightness_4:before {
  content: "\e3a9";
}
.cs-icon-brightness_low:before {
  content: "\e1ad";
}
.cs-icon-brightness_medium:before {
  content: "\e1ae";
}
.cs-icon-brightness_high:before {
  content: "\e1ac";
}
.cs-icon-brightness_auto:before {
  content: "\e1ab";
}
.cs-icon-broken_image:before {
  content: "\e3ad";
}
.cs-icon-brush:before {
  content: "\e3ae";
}
.cs-icon-bubble_chart:before {
  content: "\e6dd";
}
.cs-icon-bug_report:before {
  content: "\e868";
}
.cs-icon-build:before {
  content: "\e869";
}
.cs-icon-burst_mode:before {
  content: "\e43c";
}
.cs-icon-domain:before {
  content: "\e7ee";
}
.cs-icon-business_center:before {
  content: "\eb3f";
}
.cs-icon-cached:before {
  content: "\e86a";
}
.cs-icon-cake:before {
  content: "\e7e9";
}
.cs-icon-phone:before {
  content: "\e0cd";
}
.cs-icon-call_end:before {
  content: "\e0b1";
}
.cs-icon-call_made:before {
  content: "\e0b2";
}
.cs-icon-merge_type:before {
  content: "\e252";
}
.cs-icon-call_missed:before {
  content: "\e0b4";
}
.cs-icon-call_missed_outgoing:before {
  content: "\e0e4";
}
.cs-icon-call_received:before {
  content: "\e0b5";
}
.cs-icon-call_split:before {
  content: "\e0b6";
}
.cs-icon-call_to_action:before {
  content: "\e06c";
}
.cs-icon-camera:before {
  content: "\e3af";
}
.cs-icon-photo_camera:before {
  content: "\e412";
}
.cs-icon-camera_enhance:before {
  content: "\e8fc";
}
.cs-icon-camera_front:before {
  content: "\e3b1";
}
.cs-icon-camera_rear:before {
  content: "\e3b2";
}
.cs-icon-camera_roll:before {
  content: "\e3b3";
}
.cs-icon-cancel:before {
  content: "\e5c9";
}
.cs-icon-redeem:before {
  content: "\e8b1";
}
.cs-icon-card_membership:before {
  content: "\e8f7";
}
.cs-icon-card_travel:before {
  content: "\e8f8";
}
.cs-icon-casino:before {
  content: "\eb40";
}
.cs-icon-cast:before {
  content: "\e307";
}
.cs-icon-cast_connected:before {
  content: "\e308";
}
.cs-icon-center_focus_strong:before {
  content: "\e3b4";
}
.cs-icon-center_focus_weak:before {
  content: "\e3b5";
}
.cs-icon-change_history:before {
  content: "\e86b";
}
.cs-icon-chat:before {
  content: "\e0b7";
}
.cs-icon-chat_bubble:before {
  content: "\e0ca";
}
.cs-icon-chat_bubble_outline:before {
  content: "\e0cb";
}
.cs-icon-check:before {
  content: "\e5ca";
}
.cs-icon-check_box:before {
  content: "\e834";
}
.cs-icon-check_box_outline_blank:before {
  content: "\e835";
}
.cs-icon-check_circle:before {
  content: "\e86c";
}
.cs-icon-navigate_before:before {
  content: "\e408";
}
.cs-icon-navigate_next:before {
  content: "\e409";
}
.cs-icon-child_care:before {
  content: "\eb41";
}
.cs-icon-child_friendly:before {
  content: "\eb42";
}
.cs-icon-chrome_reader_mode:before {
  content: "\e86d";
}
.cs-icon-close:before {
  content: "\e5cd";
}
.cs-icon-clear_all:before {
  content: "\e0b8";
}
.cs-icon-closed_caption:before {
  content: "\e01c";
}
.cs-icon-wb_cloudy:before {
  content: "\e42d";
}
.cs-icon-cloud_circle:before {
  content: "\e2be";
}
.cs-icon-cloud_done:before {
  content: "\e2bf";
}
.cs-icon-cloud_download:before {
  content: "\e2c0";
}
.cs-icon-cloud_off:before {
  content: "\e2c1";
}
.cs-icon-cloud_queue:before {
  content: "\e2c2";
}
.cs-icon-code:before {
  content: "\e86f";
}
.cs-icon-photo_library:before {
  content: "\e413";
}
.cs-icon-collections_bookmark:before {
  content: "\e431";
}
.cs-icon-palette:before {
  content: "\e40a";
}
.cs-icon-colorize:before {
  content: "\e3b8";
}
.cs-icon-comment:before {
  content: "\e0b9";
}
.cs-icon-compare:before {
  content: "\e3b9";
}
.cs-icon-compare_arrows:before {
  content: "\e915";
}
.cs-icon-laptop:before {
  content: "\e31e";
}
.cs-icon-confirmation_number:before {
  content: "\e638";
}
.cs-icon-contact_mail:before {
  content: "\e0d0";
}
.cs-icon-contact_phone:before {
  content: "\e0cf";
}
.cs-icon-contacts:before {
  content: "\e0ba";
}
.cs-icon-content_copy:before {
  content: "\e14d";
}
.cs-icon-content_cut:before {
  content: "\e14e";
}
.cs-icon-content_paste:before {
  content: "\e14f";
}
.cs-icon-control_point_duplicate:before {
  content: "\e3bb";
}
.cs-icon-copyright:before {
  content: "\e90d";
}
.cs-icon-mode_edit:before {
  content: "\e254";
}
.cs-icon-create_new_folder:before {
  content: "\e2cc";
}
.cs-icon-payment:before {
  content: "\e8a1";
}
.cs-icon-crop:before {
  content: "\e3be";
}
.cs-icon-crop_16_9:before {
  content: "\e3bc";
}
.cs-icon-crop_3_2:before {
  content: "\e3bd";
}
.cs-icon-crop_landscape:before {
  content: "\e3c3";
}
.cs-icon-crop_7_5:before {
  content: "\e3c0";
}
.cs-icon-crop_din:before {
  content: "\e3c1";
}
.cs-icon-crop_free:before {
  content: "\e3c2";
}
.cs-icon-crop_original:before {
  content: "\e3c4";
}
.cs-icon-crop_portrait:before {
  content: "\e3c5";
}
.cs-icon-crop_rotate:before {
  content: "\e437";
}
.cs-icon-crop_square:before {
  content: "\e3c6";
}
.cs-icon-dashboard:before {
  content: "\e871";
}
.cs-icon-data_usage:before {
  content: "\e1af";
}
.cs-icon-date_range:before {
  content: "\e916";
}
.cs-icon-dehaze:before {
  content: "\e3c7";
}
.cs-icon-delete:before {
  content: "\e872";
}
.cs-icon-delete_forever:before {
  content: "\e92b";
}
.cs-icon-delete_sweep:before {
  content: "\e16c";
}
.cs-icon-description:before {
  content: "\e873";
}
.cs-icon-desktop_mac:before {
  content: "\e30b";
}
.cs-icon-desktop_windows:before {
  content: "\e30c";
}
.cs-icon-details:before {
  content: "\e3c8";
}
.cs-icon-developer_board:before {
  content: "\e30d";
}
.cs-icon-developer_mode:before {
  content: "\e1b0";
}
.cs-icon-device_hub:before {
  content: "\e335";
}
.cs-icon-phonelink:before {
  content: "\e326";
}
.cs-icon-devices_other:before {
  content: "\e337";
}
.cs-icon-dialer_sip:before {
  content: "\e0bb";
}
.cs-icon-dialpad:before {
  content: "\e0bc";
}
.cs-icon-directions:before {
  content: "\e52e";
}
.cs-icon-directions_bike:before {
  content: "\e52f";
}
.cs-icon-directions_boat:before {
  content: "\e532";
}
.cs-icon-directions_bus:before {
  content: "\e530";
}
.cs-icon-directions_car:before {
  content: "\e531";
}
.cs-icon-directions_railway:before {
  content: "\e534";
}
.cs-icon-directions_run:before {
  content: "\e566";
}
.cs-icon-directions_transit:before {
  content: "\e535";
}
.cs-icon-directions_walk:before {
  content: "\e536";
}
.cs-icon-disc_full:before {
  content: "\e610";
}
.cs-icon-dns:before {
  content: "\e875";
}
.cs-icon-not_interested:before {
  content: "\e033";
}
.cs-icon-do_not_disturb_alt:before {
  content: "\e611";
}
.cs-icon-do_not_disturb_off:before {
  content: "\e643";
}
.cs-icon-remove_circle:before {
  content: "\e15c";
}
.cs-icon-dock:before {
  content: "\e30e";
}
.cs-icon-done:before {
  content: "\e876";
}
.cs-icon-done_all:before {
  content: "\e877";
}
.cs-icon-donut_large:before {
  content: "\e917";
}
.cs-icon-donut_small:before {
  content: "\e918";
}
.cs-icon-drafts:before {
  content: "\e151";
}
.cs-icon-drag_handle:before {
  content: "\e25d";
}
.cs-icon-time_to_leave:before {
  content: "\e62c";
}
.cs-icon-dvr:before {
  content: "\e1b2";
}
.cs-icon-edit_location:before {
  content: "\e568";
}
.cs-icon-eject:before {
  content: "\e8fb";
}
.cs-icon-markunread:before {
  content: "\e159";
}
.cs-icon-enhanced_encryption:before {
  content: "\e63f";
}
.cs-icon-equalizer:before {
  content: "\e01d";
}
.cs-icon-error:before {
  content: "\e000";
}
.cs-icon-error_outline:before {
  content: "\e001";
}
.cs-icon-euro_symbol:before {
  content: "\e926";
}
.cs-icon-ev_station:before {
  content: "\e56d";
}
.cs-icon-insert_invitation:before {
  content: "\e24f";
}
.cs-icon-event_available:before {
  content: "\e614";
}
.cs-icon-event_busy:before {
  content: "\e615";
}
.cs-icon-event_note:before {
  content: "\e616";
}
.cs-icon-event_seat:before {
  content: "\e90e";
}
.cs-icon-exit_to_app:before {
  content: "\e879";
}
.cs-icon-expand_less:before {
  content: "\e5ce";
}
.cs-icon-expand_more:before {
  content: "\e5cf";
}
.cs-icon-explicit:before {
  content: "\e01e";
}
.cs-icon-explore:before {
  content: "\e87a";
}
.cs-icon-exposure:before {
  content: "\e3ca";
}
.cs-icon-exposure_neg_1:before {
  content: "\e3cb";
}
.cs-icon-exposure_neg_2:before {
  content: "\e3cc";
}
.cs-icon-exposure_plus_1:before {
  content: "\e3cd";
}
.cs-icon-exposure_plus_2:before {
  content: "\e3ce";
}
.cs-icon-exposure_zero:before {
  content: "\e3cf";
}
.cs-icon-extension:before {
  content: "\e87b";
}
.cs-icon-face:before {
  content: "\e87c";
}
.cs-icon-fast_forward:before {
  content: "\e01f";
}
.cs-icon-fast_rewind:before {
  content: "\e020";
}
.cs-icon-favorite:before {
  content: "\e87d";
}
.cs-icon-favorite_border:before {
  content: "\e87e";
}
.cs-icon-featured_play_list:before {
  content: "\e06d";
}
.cs-icon-featured_video:before {
  content: "\e06e";
}
.cs-icon-sms_failed:before {
  content: "\e626";
}
.cs-icon-fiber_dvr:before {
  content: "\e05d";
}
.cs-icon-fiber_manual_record:before {
  content: "\e061";
}
.cs-icon-fiber_new:before {
  content: "\e05e";
}
.cs-icon-fiber_pin:before {
  content: "\e06a";
}
.cs-icon-fiber_smart_record:before {
  content: "\e062";
}
.cs-icon-get_app:before {
  content: "\e884";
}
.cs-icon-file_upload:before {
  content: "\e2c6";
}
.cs-icon-filter:before {
  content: "\e3d3";
}
.cs-icon-filter_1:before {
  content: "\e3d0";
}
.cs-icon-filter_2:before {
  content: "\e3d1";
}
.cs-icon-filter_3:before {
  content: "\e3d2";
}
.cs-icon-filter_4:before {
  content: "\e3d4";
}
.cs-icon-filter_5:before {
  content: "\e3d5";
}
.cs-icon-filter_6:before {
  content: "\e3d6";
}
.cs-icon-filter_7:before {
  content: "\e3d7";
}
.cs-icon-filter_8:before {
  content: "\e3d8";
}
.cs-icon-filter_9:before {
  content: "\e3d9";
}
.cs-icon-filter_9_plus:before {
  content: "\e3da";
}
.cs-icon-filter_b_and_w:before {
  content: "\e3db";
}
.cs-icon-filter_center_focus:before {
  content: "\e3dc";
}
.cs-icon-filter_drama:before {
  content: "\e3dd";
}
.cs-icon-filter_frames:before {
  content: "\e3de";
}
.cs-icon-terrain:before {
  content: "\e564";
}
.cs-icon-filter_list:before {
  content: "\e152";
}
.cs-icon-filter_none:before {
  content: "\e3e0";
}
.cs-icon-filter_tilt_shift:before {
  content: "\e3e2";
}
.cs-icon-filter_vintage:before {
  content: "\e3e3";
}
.cs-icon-find_in_page:before {
  content: "\e880";
}
.cs-icon-find_replace:before {
  content: "\e881";
}
.cs-icon-fingerprint:before {
  content: "\e90f";
}
.cs-icon-first_page:before {
  content: "\e5dc";
}
.cs-icon-fitness_center:before {
  content: "\eb43";
}
.cs-icon-flare:before {
  content: "\e3e4";
}
.cs-icon-flash_auto:before {
  content: "\e3e5";
}
.cs-icon-flash_off:before {
  content: "\e3e6";
}
.cs-icon-flash_on:before {
  content: "\e3e7";
}
.cs-icon-flight_land:before {
  content: "\e910";
}
.cs-icon-flight_takeoff:before {
  content: "\e911";
}
.cs-icon-flip:before {
  content: "\e3e8";
}
.cs-icon-flip_to_back:before {
  content: "\e882";
}
.cs-icon-flip_to_front:before {
  content: "\e883";
}
.cs-icon-folder:before {
  content: "\e2c7";
}
.cs-icon-folder_open:before {
  content: "\e2c8";
}
.cs-icon-folder_shared:before {
  content: "\e2c9";
}
.cs-icon-folder_special:before {
  content: "\e617";
}
.cs-icon-font_download:before {
  content: "\e167";
}
.cs-icon-format_align_center:before {
  content: "\e234";
}
.cs-icon-format_align_justify:before {
  content: "\e235";
}
.cs-icon-format_align_left:before {
  content: "\e236";
}
.cs-icon-format_align_right:before {
  content: "\e237";
}
.cs-icon-format_bold:before {
  content: "\e238";
}
.cs-icon-format_clear:before {
  content: "\e239";
}
.cs-icon-format_color_fill:before {
  content: "\e23a";
}
.cs-icon-format_color_reset:before {
  content: "\e23b";
}
.cs-icon-format_color_text:before {
  content: "\e23c";
}
.cs-icon-format_indent_decrease:before {
  content: "\e23d";
}
.cs-icon-format_indent_increase:before {
  content: "\e23e";
}
.cs-icon-format_italic:before {
  content: "\e23f";
}
.cs-icon-format_line_spacing:before {
  content: "\e240";
}
.cs-icon-format_list_bulleted:before {
  content: "\e241";
}
.cs-icon-format_list_numbered:before {
  content: "\e242";
}
.cs-icon-format_paint:before {
  content: "\e243";
}
.cs-icon-format_quote:before {
  content: "\e244";
}
.cs-icon-format_shapes:before {
  content: "\e25e";
}
.cs-icon-format_size:before {
  content: "\e245";
}
.cs-icon-format_strikethrough:before {
  content: "\e246";
}
.cs-icon-format_textdirection_l_to_r:before {
  content: "\e247";
}
.cs-icon-format_textdirection_r_to_l:before {
  content: "\e248";
}
.cs-icon-format_underlined:before {
  content: "\e249";
}
.cs-icon-question_answer:before {
  content: "\e8af";
}
.cs-icon-forward:before {
  content: "\e154";
}
.cs-icon-forward_10:before {
  content: "\e056";
}
.cs-icon-forward_30:before {
  content: "\e057";
}
.cs-icon-forward_5:before {
  content: "\e058";
}
.cs-icon-free_breakfast:before {
  content: "\eb44";
}
.cs-icon-fullscreen:before {
  content: "\e5d0";
}
.cs-icon-fullscreen_exit:before {
  content: "\e5d1";
}
.cs-icon-functions:before {
  content: "\e24a";
}
.cs-icon-g_translate:before {
  content: "\e927";
}
.cs-icon-games:before {
  content: "\e021";
}
.cs-icon-gavel:before {
  content: "\e912";
}
.cs-icon-gesture:before {
  content: "\e155";
}
.cs-icon-gif:before {
  content: "\e913";
}
.cs-icon-goat:before {
  content: "\e919";
}
.cs-icon-golf_course:before {
  content: "\eb45";
}
.cs-icon-my_location:before {
  content: "\e55c";
}
.cs-icon-location_searching:before {
  content: "\e1b7";
}
.cs-icon-location_disabled:before {
  content: "\e1b6";
}
.cs-icon-star:before {
  content: "\e838";
}
.cs-icon-gradient:before {
  content: "\e3e9";
}
.cs-icon-grain:before {
  content: "\e3ea";
}
.cs-icon-graphic_eq:before {
  content: "\e1b8";
}
.cs-icon-grid_off:before {
  content: "\e3eb";
}
.cs-icon-grid_on:before {
  content: "\e3ec";
}
.cs-icon-people:before {
  content: "\e7fb";
}
.cs-icon-group_add:before {
  content: "\e7f0";
}
.cs-icon-group_work:before {
  content: "\e886";
}
.cs-icon-hd:before {
  content: "\e052";
}
.cs-icon-hdr_off:before {
  content: "\e3ed";
}
.cs-icon-hdr_on:before {
  content: "\e3ee";
}
.cs-icon-hdr_strong:before {
  content: "\e3f1";
}
.cs-icon-hdr_weak:before {
  content: "\e3f2";
}
.cs-icon-headset:before {
  content: "\e310";
}
.cs-icon-headset_mic:before {
  content: "\e311";
}
.cs-icon-healing:before {
  content: "\e3f3";
}
.cs-icon-hearing:before {
  content: "\e023";
}
.cs-icon-help:before {
  content: "\e887";
}
.cs-icon-help_outline:before {
  content: "\e8fd";
}
.cs-icon-high_quality:before {
  content: "\e024";
}
.cs-icon-highlight:before {
  content: "\e25f";
}
.cs-icon-highlight_off:before {
  content: "\e888";
}
.cs-icon-restore:before {
  content: "\e8b3";
}
.cs-icon-home:before {
  content: "\e88a";
}
.cs-icon-hot_tub:before {
  content: "\eb46";
}
.cs-icon-local_hotel:before {
  content: "\e549";
}
.cs-icon-hourglass_empty:before {
  content: "\e88b";
}
.cs-icon-hourglass_full:before {
  content: "\e88c";
}
.cs-icon-http:before {
  content: "\e91a";
}
.cs-icon-lock:before {
  content: "\e897";
}
.cs-icon-photo:before {
  content: "\e410";
}
.cs-icon-image_aspect_ratio:before {
  content: "\e3f5";
}
.cs-icon-import_contacts:before {
  content: "\e0e0";
}
.cs-icon-import_export:before {
  content: "\e0c3";
}
.cs-icon-important_devices:before {
  content: "\e91b";
}
.cs-icon-inbox:before {
  content: "\e156";
}
.cs-icon-indeterminate_check_box:before {
  content: "\e91c";
}
.cs-icon-info:before {
  content: "\e88e";
}
.cs-icon-info_outline:before {
  content: "\e88f";
}
.cs-icon-input:before {
  content: "\e890";
}
.cs-icon-insert_comment:before {
  content: "\e24c";
}
.cs-icon-insert_drive_file:before {
  content: "\e24d";
}
.cs-icon-tag_faces:before {
  content: "\e420";
}
.cs-icon-link:before {
  content: "\e157";
}
.cs-icon-invert_colors:before {
  content: "\e891";
}
.cs-icon-invert_colors_off:before {
  content: "\e0c4";
}
.cs-icon-iso:before {
  content: "\e3f6";
}
.cs-icon-keyboard:before {
  content: "\e312";
}
.cs-icon-keyboard_arrow_down:before {
  content: "\e313";
}
.cs-icon-keyboard_arrow_left:before {
  content: "\e314";
}
.cs-icon-keyboard_arrow_right:before {
  content: "\e315";
}
.cs-icon-keyboard_arrow_up:before {
  content: "\e316";
}
.cs-icon-keyboard_backspace:before {
  content: "\e317";
}
.cs-icon-keyboard_capslock:before {
  content: "\e318";
}
.cs-icon-keyboard_hide:before {
  content: "\e31a";
}
.cs-icon-keyboard_return:before {
  content: "\e31b";
}
.cs-icon-keyboard_tab:before {
  content: "\e31c";
}
.cs-icon-keyboard_voice:before {
  content: "\e31d";
}
.cs-icon-kitchen:before {
  content: "\eb47";
}
.cs-icon-label:before {
  content: "\e892";
}
.cs-icon-label_outline:before {
  content: "\e893";
}
.cs-icon-language:before {
  content: "\e894";
}
.cs-icon-laptop_chromebook:before {
  content: "\e31f";
}
.cs-icon-laptop_mac:before {
  content: "\e320";
}
.cs-icon-laptop_windows:before {
  content: "\e321";
}
.cs-icon-last_page:before {
  content: "\e5dd";
}
.cs-icon-open_in_new:before {
  content: "\e89e";
}
.cs-icon-layers:before {
  content: "\e53b";
}
.cs-icon-layers_clear:before {
  content: "\e53c";
}
.cs-icon-leak_add:before {
  content: "\e3f8";
}
.cs-icon-leak_remove:before {
  content: "\e3f9";
}
.cs-icon-lens:before {
  content: "\e3fa";
}
.cs-icon-library_books:before {
  content: "\e02f";
}
.cs-icon-library_music:before {
  content: "\e030";
}
.cs-icon-lightbulb_outline:before {
  content: "\e91d";
}
.cs-icon-line_style:before {
  content: "\e91e";
}
.cs-icon-line_weight:before {
  content: "\e91f";
}
.cs-icon-linear_scale:before {
  content: "\e260";
}
.cs-icon-linked_camera:before {
  content: "\e438";
}
.cs-icon-list:before {
  content: "\e896";
}
.cs-icon-live_help:before {
  content: "\e0c6";
}
.cs-icon-live_tv:before {
  content: "\e639";
}
.cs-icon-local_play:before {
  content: "\e553";
}
.cs-icon-local_airport:before {
  content: "\e53d";
}
.cs-icon-local_atm:before {
  content: "\e53e";
}
.cs-icon-local_bar:before {
  content: "\e540";
}
.cs-icon-local_cafe:before {
  content: "\e541";
}
.cs-icon-local_car_wash:before {
  content: "\e542";
}
.cs-icon-local_convenience_store:before {
  content: "\e543";
}
.cs-icon-restaurant_menu:before {
  content: "\e561";
}
.cs-icon-local_drink:before {
  content: "\e544";
}
.cs-icon-local_florist:before {
  content: "\e545";
}
.cs-icon-local_gas_station:before {
  content: "\e546";
}
.cs-icon-shopping_cart:before {
  content: "\e8cc";
}
.cs-icon-local_hospital:before {
  content: "\e548";
}
.cs-icon-local_laundry_service:before {
  content: "\e54a";
}
.cs-icon-local_library:before {
  content: "\e54b";
}
.cs-icon-local_mall:before {
  content: "\e54c";
}
.cs-icon-theaters:before {
  content: "\e8da";
}
.cs-icon-local_offer:before {
  content: "\e54e";
}
.cs-icon-local_parking:before {
  content: "\e54f";
}
.cs-icon-local_pharmacy:before {
  content: "\e550";
}
.cs-icon-local_pizza:before {
  content: "\e552";
}
.cs-icon-print2:before {
  content: "\e8ad";
}
.cs-icon-local_shipping:before {
  content: "\e558";
}
.cs-icon-local_taxi:before {
  content: "\e559";
}
.cs-icon-location_city:before {
  content: "\e7f1";
}
.cs-icon-location_off:before {
  content: "\e0c7";
}
.cs-icon-room:before {
  content: "\e8b4";
}
.cs-icon-lock_open:before {
  content: "\e898";
}
.cs-icon-lock_outline:before {
  content: "\e899";
}
.cs-icon-looks:before {
  content: "\e3fc";
}
.cs-icon-looks_3:before {
  content: "\e3fb";
}
.cs-icon-looks_4:before {
  content: "\e3fd";
}
.cs-icon-looks_5:before {
  content: "\e3fe";
}
.cs-icon-looks_6:before {
  content: "\e3ff";
}
.cs-icon-looks_one:before {
  content: "\e400";
}
.cs-icon-looks_two:before {
  content: "\e401";
}
.cs-icon-sync:before {
  content: "\e627";
}
.cs-icon-loupe:before {
  content: "\e402";
}
.cs-icon-low_priority:before {
  content: "\e16d";
}
.cs-icon-loyalty:before {
  content: "\e89a";
}
.cs-icon-mail_outline:before {
  content: "\e0e1";
}
.cs-icon-map:before {
  content: "\e55b";
}
.cs-icon-markunread_mailbox:before {
  content: "\e89b";
}
.cs-icon-memory:before {
  content: "\e322";
}
.cs-icon-menu:before {
  content: "\e5d2";
}
.cs-icon-message:before {
  content: "\e0c9";
}
.cs-icon-mic:before {
  content: "\e029";
}
.cs-icon-mic_none:before {
  content: "\e02a";
}
.cs-icon-mic_off:before {
  content: "\e02b";
}
.cs-icon-mms:before {
  content: "\e618";
}
.cs-icon-mode_comment:before {
  content: "\e253";
}
.cs-icon-monetization_on:before {
  content: "\e263";
}
.cs-icon-money_off:before {
  content: "\e25c";
}
.cs-icon-monochrome_photos:before {
  content: "\e403";
}
.cs-icon-mood_bad:before {
  content: "\e7f3";
}
.cs-icon-more:before {
  content: "\e619";
}
.cs-icon-more_horiz:before {
  content: "\e5d3";
}
.cs-icon-more_vert:before {
  content: "\e5d4";
}
.cs-icon-motorcycle:before {
  content: "\e920";
}
.cs-icon-mouse:before {
  content: "\e323";
}
.cs-icon-move_to_inbox:before {
  content: "\e168";
}
.cs-icon-movie_creation:before {
  content: "\e404";
}
.cs-icon-movie_filter:before {
  content: "\e43a";
}
.cs-icon-multiline_chart:before {
  content: "\e6df";
}
.cs-icon-music_note:before {
  content: "\e405";
}
.cs-icon-music_video:before {
  content: "\e063";
}
.cs-icon-nature:before {
  content: "\e406";
}
.cs-icon-nature_people:before {
  content: "\e407";
}
.cs-icon-navigation:before {
  content: "\e55d";
}
.cs-icon-near_me:before {
  content: "\e569";
}
.cs-icon-network_cell:before {
  content: "\e1b9";
}
.cs-icon-network_check:before {
  content: "\e640";
}
.cs-icon-network_locked:before {
  content: "\e61a";
}
.cs-icon-network_wifi:before {
  content: "\e1ba";
}
.cs-icon-new_releases:before {
  content: "\e031";
}
.cs-icon-next_week:before {
  content: "\e16a";
}
.cs-icon-nfc:before {
  content: "\e1bb";
}
.cs-icon-no_encryption:before {
  content: "\e641";
}
.cs-icon-signal_cellular_no_sim:before {
  content: "\e1ce";
}
.cs-icon-note:before {
  content: "\e06f";
}
.cs-icon-note_add:before {
  content: "\e89c";
}
.cs-icon-notifications:before {
  content: "\e7f4";
}
.cs-icon-notifications_active:before {
  content: "\e7f7";
}
.cs-icon-notifications_none:before {
  content: "\e7f5";
}
.cs-icon-notifications_off:before {
  content: "\e7f6";
}
.cs-icon-notifications_paused:before {
  content: "\e7f8";
}
.cs-icon-offline_pin:before {
  content: "\e921";
}
.cs-icon-ondemand_video:before {
  content: "\e63a";
}
.cs-icon-opacity:before {
  content: "\e922";
}
.cs-icon-open_in_browser:before {
  content: "\e89d";
}
.cs-icon-open_with:before {
  content: "\e89f";
}
.cs-icon-pages:before {
  content: "\e7f9";
}
.cs-icon-pageview:before {
  content: "\e8a0";
}
.cs-icon-pan_tool:before {
  content: "\e925";
}
.cs-icon-panorama:before {
  content: "\e40b";
}
.cs-icon-radio_button_unchecked:before {
  content: "\e836";
}
.cs-icon-panorama_horizontal:before {
  content: "\e40d";
}
.cs-icon-panorama_vertical:before {
  content: "\e40e";
}
.cs-icon-panorama_wide_angle:before {
  content: "\e40f";
}
.cs-icon-party_mode:before {
  content: "\e7fa";
}
.cs-icon-pause:before {
  content: "\e034";
}
.cs-icon-pause_circle_filled:before {
  content: "\e035";
}
.cs-icon-pause_circle_outline:before {
  content: "\e036";
}
.cs-icon-people_outline:before {
  content: "\e7fc";
}
.cs-icon-perm_camera_mic:before {
  content: "\e8a2";
}
.cs-icon-perm_contact_calendar:before {
  content: "\e8a3";
}
.cs-icon-perm_data_setting:before {
  content: "\e8a4";
}
.cs-icon-perm_device_information:before {
  content: "\e8a5";
}
.cs-icon-person_outline:before {
  content: "\e7ff";
}
.cs-icon-perm_media:before {
  content: "\e8a7";
}
.cs-icon-perm_phone_msg:before {
  content: "\e8a8";
}
.cs-icon-perm_scan_wifi:before {
  content: "\e8a9";
}
.cs-icon-person:before {
  content: "\e7fd";
}
.cs-icon-person_add:before {
  content: "\e7fe";
}
.cs-icon-person_pin:before {
  content: "\e55a";
}
.cs-icon-person_pin_circle:before {
  content: "\e56a";
}
.cs-icon-personal_video:before {
  content: "\e63b";
}
.cs-icon-pets:before {
  content: "\e923";
}
.cs-icon-phone_android:before {
  content: "\e324";
}
.cs-icon-phone_bluetooth_speaker:before {
  content: "\e61b";
}
.cs-icon-phone_forwarded:before {
  content: "\e61c";
}
.cs-icon-phone_in_talk:before {
  content: "\e61d";
}
.cs-icon-phone_iphone:before {
  content: "\e325";
}
.cs-icon-phone_locked:before {
  content: "\e61e";
}
.cs-icon-phone_missed:before {
  content: "\e61f";
}
.cs-icon-phone_paused:before {
  content: "\e620";
}
.cs-icon-phonelink_erase:before {
  content: "\e0db";
}
.cs-icon-phonelink_lock:before {
  content: "\e0dc";
}
.cs-icon-phonelink_off:before {
  content: "\e327";
}
.cs-icon-phonelink_ring:before {
  content: "\e0dd";
}
.cs-icon-phonelink_setup:before {
  content: "\e0de";
}
.cs-icon-photo_album:before {
  content: "\e411";
}
.cs-icon-photo_filter:before {
  content: "\e43b";
}
.cs-icon-photo_size_select_actual:before {
  content: "\e432";
}
.cs-icon-photo_size_select_large:before {
  content: "\e433";
}
.cs-icon-photo_size_select_small:before {
  content: "\e434";
}
.cs-icon-picture_as_pdf:before {
  content: "\e415";
}
.cs-icon-picture_in_picture:before {
  content: "\e8aa";
}
.cs-icon-picture_in_picture_alt:before {
  content: "\e924";
}
.cs-icon-pie_chart:before {
  content: "\e6c4";
}
.cs-icon-pie_chart_outlined:before {
  content: "\e6c5";
}
.cs-icon-pin_drop:before {
  content: "\e55e";
}
.cs-icon-play_arrow:before {
  content: "\e037";
}
.cs-icon-play_circle_filled:before {
  content: "\e038";
}
.cs-icon-play_circle_outline:before {
  content: "\e039";
}
.cs-icon-play_for_work:before {
  content: "\e928";
}
.cs-icon-playlist_add:before {
  content: "\e03b";
}
.cs-icon-playlist_add_check:before {
  content: "\e065";
}
.cs-icon-playlist_play:before {
  content: "\e05f";
}
.cs-icon-plus_one:before {
  content: "\e800";
}
.cs-icon-polymer:before {
  content: "\e8ab";
}
.cs-icon-pool:before {
  content: "\eb48";
}
.cs-icon-portable_wifi_off:before {
  content: "\e0ce";
}
.cs-icon-portrait2:before {
  content: "\e416";
}
.cs-icon-power:before {
  content: "\e63c";
}
.cs-icon-power_input:before {
  content: "\e336";
}
.cs-icon-power_settings_new:before {
  content: "\e8ac";
}
.cs-icon-pregnant_woman:before {
  content: "\e929";
}
.cs-icon-present_to_all:before {
  content: "\e0df";
}
.cs-icon-priority_high:before {
  content: "\e645";
}
.cs-icon-public:before {
  content: "\e80b";
}
.cs-icon-publish:before {
  content: "\e255";
}
.cs-icon-queue_music:before {
  content: "\e03d";
}
.cs-icon-queue_play_next:before {
  content: "\e066";
}
.cs-icon-radio:before {
  content: "\e03e";
}
.cs-icon-radio_button_checked:before {
  content: "\e837";
}
.cs-icon-rate_review:before {
  content: "\e560";
}
.cs-icon-receipt:before {
  content: "\e8b0";
}
.cs-icon-recent_actors:before {
  content: "\e03f";
}
.cs-icon-record_voice_over:before {
  content: "\e92a";
}
.cs-icon-redo:before {
  content: "\e15a";
}
.cs-icon-refresh:before {
  content: "\e5d5";
}
.cs-icon-remove:before {
  content: "\e15b";
}
.cs-icon-remove_circle_outline:before {
  content: "\e15d";
}
.cs-icon-remove_from_queue:before {
  content: "\e067";
}
.cs-icon-visibility:before {
  content: "\e8f4";
}
.cs-icon-remove_shopping_cart:before {
  content: "\e92c";
}
.cs-icon-reorder:before {
  content: "\e8fe";
}
.cs-icon-repeat:before {
  content: "\e040";
}
.cs-icon-repeat_one:before {
  content: "\e041";
}
.cs-icon-replay:before {
  content: "\e042";
}
.cs-icon-replay_10:before {
  content: "\e059";
}
.cs-icon-replay_30:before {
  content: "\e05a";
}
.cs-icon-replay_5:before {
  content: "\e05b";
}
.cs-icon-reply:before {
  content: "\e15e";
}
.cs-icon-reply_all:before {
  content: "\e15f";
}
.cs-icon-report:before {
  content: "\e160";
}
.cs-icon-warning:before {
  content: "\e002";
}
.cs-icon-restaurant:before {
  content: "\e56c";
}
.cs-icon-restore_page:before {
  content: "\e92d";
}
.cs-icon-ring_volume:before {
  content: "\e0d1";
}
.cs-icon-room_service:before {
  content: "\eb49";
}
.cs-icon-rotate_90_degrees_ccw:before {
  content: "\e418";
}
.cs-icon-rotate_left:before {
  content: "\e419";
}
.cs-icon-rotate_right:before {
  content: "\e41a";
}
.cs-icon-rounded_corner:before {
  content: "\e92e";
}
.cs-icon-router:before {
  content: "\e328";
}
.cs-icon-rowing:before {
  content: "\e92f";
}
.cs-icon-rss_feed:before {
  content: "\e0e5";
}
.cs-icon-rv_hookup:before {
  content: "\e642";
}
.cs-icon-satellite:before {
  content: "\e562";
}
.cs-icon-save:before {
  content: "\e161";
}
.cs-icon-scanner:before {
  content: "\e329";
}
.cs-icon-school:before {
  content: "\e80c";
}
.cs-icon-screen_lock_landscape:before {
  content: "\e1be";
}
.cs-icon-screen_lock_portrait:before {
  content: "\e1bf";
}
.cs-icon-screen_lock_rotation:before {
  content: "\e1c0";
}
.cs-icon-screen_rotation:before {
  content: "\e1c1";
}
.cs-icon-screen_share:before {
  content: "\e0e2";
}
.cs-icon-sd_storage:before {
  content: "\e1c2";
}
.cs-icon-search:before {
  content: "\e8b6";
}
.cs-icon-security:before {
  content: "\e32a";
}
.cs-icon-select_all:before {
  content: "\e162";
}
.cs-icon-send:before {
  content: "\e163";
}
.cs-icon-sentiment_dissatisfied:before {
  content: "\e811";
}
.cs-icon-sentiment_neutral:before {
  content: "\e812";
}
.cs-icon-sentiment_satisfied:before {
  content: "\e813";
}
.cs-icon-sentiment_very_dissatisfied:before {
  content: "\e814";
}
.cs-icon-sentiment_very_satisfied:before {
  content: "\e815";
}
.cs-icon-settings:before {
  content: "\e8b8";
}
.cs-icon-settings_applications:before {
  content: "\e8b9";
}
.cs-icon-settings_backup_restore:before {
  content: "\e8ba";
}
.cs-icon-settings_bluetooth:before {
  content: "\e8bb";
}
.cs-icon-settings_brightness:before {
  content: "\e8bd";
}
.cs-icon-settings_cell:before {
  content: "\e8bc";
}
.cs-icon-settings_ethernet:before {
  content: "\e8be";
}
.cs-icon-settings_input_antenna:before {
  content: "\e8bf";
}
.cs-icon-settings_input_composite:before {
  content: "\e8c1";
}
.cs-icon-settings_input_hdmi:before {
  content: "\e8c2";
}
.cs-icon-settings_input_svideo:before {
  content: "\e8c3";
}
.cs-icon-settings_overscan:before {
  content: "\e8c4";
}
.cs-icon-settings_phone:before {
  content: "\e8c5";
}
.cs-icon-settings_power:before {
  content: "\e8c6";
}
.cs-icon-settings_remote:before {
  content: "\e8c7";
}
.cs-icon-settings_system_daydream:before {
  content: "\e1c3";
}
.cs-icon-settings_voice:before {
  content: "\e8c8";
}
.cs-icon-share:before {
  content: "\e80d";
}
.cs-icon-shop:before {
  content: "\e8c9";
}
.cs-icon-shop_two:before {
  content: "\e8ca";
}
.cs-icon-shopping_basket:before {
  content: "\e8cb";
}
.cs-icon-short_text:before {
  content: "\e261";
}
.cs-icon-show_chart:before {
  content: "\e6e1";
}
.cs-icon-shuffle:before {
  content: "\e043";
}
.cs-icon-signal_cellular_4_bar:before {
  content: "\e1c8";
}
.cs-icon-signal_cellular_connected_no_internet_4_bar:before {
  content: "\e1cd";
}
.cs-icon-signal_cellular_null:before {
  content: "\e1cf";
}
.cs-icon-signal_cellular_off:before {
  content: "\e1d0";
}
.cs-icon-signal_wifi_4_bar:before {
  content: "\e1d8";
}
.cs-icon-signal_wifi_4_bar_lock:before {
  content: "\e1d9";
}
.cs-icon-signal_wifi_off:before {
  content: "\e1da";
}
.cs-icon-sim_card:before {
  content: "\e32b";
}
.cs-icon-sim_card_alert:before {
  content: "\e624";
}
.cs-icon-skip_next:before {
  content: "\e044";
}
.cs-icon-skip_previous:before {
  content: "\e045";
}
.cs-icon-slideshow:before {
  content: "\e41b";
}
.cs-icon-slow_motion_video:before {
  content: "\e068";
}
.cs-icon-stay_primary_portrait:before {
  content: "\e0d6";
}
.cs-icon-smoke_free:before {
  content: "\eb4a";
}
.cs-icon-smoking_rooms:before {
  content: "\eb4b";
}
.cs-icon-textsms:before {
  content: "\e0d8";
}
.cs-icon-snooze:before {
  content: "\e046";
}
.cs-icon-sort:before {
  content: "\e164";
}
.cs-icon-sort_by_alpha:before {
  content: "\e053";
}
.cs-icon-spa:before {
  content: "\eb4c";
}
.cs-icon-space_bar:before {
  content: "\e256";
}
.cs-icon-speaker:before {
  content: "\e32d";
}
.cs-icon-speaker_group:before {
  content: "\e32e";
}
.cs-icon-speaker_notes:before {
  content: "\e8cd";
}
.cs-icon-speaker_notes_off:before {
  content: "\e930";
}
.cs-icon-speaker_phone:before {
  content: "\e0d2";
}
.cs-icon-spellcheck:before {
  content: "\e8ce";
}
.cs-icon-star_border:before {
  content: "\e83a";
}
.cs-icon-star_half:before {
  content: "\e839";
}
.cs-icon-stars:before {
  content: "\e8d0";
}
.cs-icon-stay_primary_landscape:before {
  content: "\e0d5";
}
.cs-icon-stop:before {
  content: "\e047";
}
.cs-icon-stop_screen_share:before {
  content: "\e0e3";
}
.cs-icon-storage:before {
  content: "\e1db";
}
.cs-icon-store_mall_directory:before {
  content: "\e563";
}
.cs-icon-straighten:before {
  content: "\e41c";
}
.cs-icon-streetview:before {
  content: "\e56e";
}
.cs-icon-strikethrough_s:before {
  content: "\e257";
}
.cs-icon-style:before {
  content: "\e41d";
}
.cs-icon-subdirectory_arrow_left:before {
  content: "\e5d9";
}
.cs-icon-subdirectory_arrow_right:before {
  content: "\e5da";
}
.cs-icon-subject:before {
  content: "\e8d2";
}
.cs-icon-subscriptions:before {
  content: "\e064";
}
.cs-icon-subtitles:before {
  content: "\e048";
}
.cs-icon-subway:before {
  content: "\e56f";
}
.cs-icon-supervisor_account:before {
  content: "\e8d3";
}
.cs-icon-surround_sound:before {
  content: "\e049";
}
.cs-icon-swap_calls:before {
  content: "\e0d7";
}
.cs-icon-swap_horiz:before {
  content: "\e8d4";
}
.cs-icon-swap_vert:before {
  content: "\e8d5";
}
.cs-icon-swap_vertical_circle:before {
  content: "\e8d6";
}
.cs-icon-switch_camera:before {
  content: "\e41e";
}
.cs-icon-switch_video:before {
  content: "\e41f";
}
.cs-icon-sync_disabled:before {
  content: "\e628";
}
.cs-icon-sync_problem:before {
  content: "\e629";
}
.cs-icon-system_update:before {
  content: "\e62a";
}
.cs-icon-system_update_alt:before {
  content: "\e8d7";
}
.cs-icon-tab:before {
  content: "\e8d8";
}
.cs-icon-tab_unselected:before {
  content: "\e8d9";
}
.cs-icon-tablet:before {
  content: "\e32f";
}
.cs-icon-tablet_android:before {
  content: "\e330";
}
.cs-icon-tablet_mac:before {
  content: "\e331";
}
.cs-icon-tap_and_play:before {
  content: "\e62b";
}
.cs-icon-text_fields:before {
  content: "\e262";
}
.cs-icon-text_format:before {
  content: "\e165";
}
.cs-icon-texture:before {
  content: "\e421";
}
.cs-icon-thumb_down:before {
  content: "\e8db";
}
.cs-icon-thumb_up:before {
  content: "\e8dc";
}
.cs-icon-thumbs_up_down:before {
  content: "\e8dd";
}
.cs-icon-timelapse:before {
  content: "\e422";
}
.cs-icon-timeline:before {
  content: "\e931";
}
.cs-icon-timer:before {
  content: "\e425";
}
.cs-icon-timer_10:before {
  content: "\e423";
}
.cs-icon-timer_3:before {
  content: "\e424";
}
.cs-icon-timer_off:before {
  content: "\e426";
}
.cs-icon-title:before {
  content: "\e264";
}
.cs-icon-toc:before {
  content: "\e8de";
}
.cs-icon-today:before {
  content: "\e8df";
}
.cs-icon-toll:before {
  content: "\e8e0";
}
.cs-icon-tonality:before {
  content: "\e427";
}
.cs-icon-touch_app:before {
  content: "\e932";
}
.cs-icon-toys:before {
  content: "\e332";
}
.cs-icon-track_changes:before {
  content: "\e8e1";
}
.cs-icon-traffic:before {
  content: "\e565";
}
.cs-icon-train:before {
  content: "\e570";
}
.cs-icon-tram:before {
  content: "\e571";
}
.cs-icon-transfer_within_a_station:before {
  content: "\e572";
}
.cs-icon-transform:before {
  content: "\e428";
}
.cs-icon-translate:before {
  content: "\e8e2";
}
.cs-icon-trending_down:before {
  content: "\e8e3";
}
.cs-icon-trending_flat:before {
  content: "\e8e4";
}
.cs-icon-trending_up:before {
  content: "\e8e5";
}
.cs-icon-tune:before {
  content: "\e429";
}
.cs-icon-tv:before {
  content: "\e333";
}
.cs-icon-unarchive:before {
  content: "\e169";
}
.cs-icon-undo:before {
  content: "\e166";
}
.cs-icon-unfold_less:before {
  content: "\e5d6";
}
.cs-icon-unfold_more:before {
  content: "\e5d7";
}
.cs-icon-update:before {
  content: "\e933";
}
.cs-icon-usb:before {
  content: "\e1e0";
}
.cs-icon-verified_user:before {
  content: "\e8e8";
}
.cs-icon-vertical_align_bottom:before {
  content: "\e258";
}
.cs-icon-vertical_align_center:before {
  content: "\e259";
}
.cs-icon-vertical_align_top:before {
  content: "\e25a";
}
.cs-icon-vibration:before {
  content: "\e62d";
}
.cs-icon-video_call:before {
  content: "\e070";
}
.cs-icon-video_label:before {
  content: "\e071";
}
.cs-icon-video_library:before {
  content: "\e04a";
}
.cs-icon-videocam:before {
  content: "\e04b";
}
.cs-icon-videocam_off:before {
  content: "\e04c";
}
.cs-icon-videogame_asset:before {
  content: "\e338";
}
.cs-icon-view_agenda:before {
  content: "\e8e9";
}
.cs-icon-view_array:before {
  content: "\e8ea";
}
.cs-icon-view_carousel:before {
  content: "\e8eb";
}
.cs-icon-view_column:before {
  content: "\e8ec";
}
.cs-icon-view_comfy:before {
  content: "\e42a";
}
.cs-icon-view_compact:before {
  content: "\e42b";
}
.cs-icon-view_day:before {
  content: "\e8ed";
}
.cs-icon-view_headline:before {
  content: "\e8ee";
}
.cs-icon-view_list:before {
  content: "\e8ef";
}
.cs-icon-view_module:before {
  content: "\e8f0";
}
.cs-icon-view_quilt:before {
  content: "\e8f1";
}
.cs-icon-view_stream:before {
  content: "\e8f2";
}
.cs-icon-view_week:before {
  content: "\e8f3";
}
.cs-icon-vignette:before {
  content: "\e435";
}
.cs-icon-visibility_off:before {
  content: "\e8f5";
}
.cs-icon-voice_chat:before {
  content: "\e62e";
}
.cs-icon-voicemail:before {
  content: "\e0d9";
}
.cs-icon-volume_down:before {
  content: "\e04d";
}
.cs-icon-volume_mute:before {
  content: "\e04e";
}
.cs-icon-volume_off:before {
  content: "\e04f";
}
.cs-icon-volume_up:before {
  content: "\e050";
}
.cs-icon-vpn_key:before {
  content: "\e0da";
}
.cs-icon-vpn_lock:before {
  content: "\e62f";
}
.cs-icon-wallpaper:before {
  content: "\e1bc";
}
.cs-icon-watch:before {
  content: "\e334";
}
.cs-icon-watch_later:before {
  content: "\e934";
}
.cs-icon-wb_auto:before {
  content: "\e42c";
}
.cs-icon-wb_incandescent:before {
  content: "\e42e";
}
.cs-icon-wb_iridescent:before {
  content: "\e436";
}
.cs-icon-wb_sunny:before {
  content: "\e430";
}
.cs-icon-wc:before {
  content: "\e63d";
}
.cs-icon-web:before {
  content: "\e051";
}
.cs-icon-web_asset:before {
  content: "\e069";
}
.cs-icon-weekend:before {
  content: "\e16b";
}
.cs-icon-whatshot:before {
  content: "\e80e";
}
.cs-icon-widgets:before {
  content: "\e1bd";
}
.cs-icon-wifi:before {
  content: "\e63e";
}
.cs-icon-wifi_lock:before {
  content: "\e1e1";
}
.cs-icon-wifi_tethering:before {
  content: "\e1e2";
}
.cs-icon-work:before {
  content: "\e8f9";
}
.cs-icon-wrap_text:before {
  content: "\e25b";
}
.cs-icon-youtube_searched_for:before {
  content: "\e8fa";
}
.cs-icon-zoom_in:before {
  content: "\e8ff";
}
.cs-icon-zoom_out:before {
  content: "\e935";
}
.cs-icon-zoom_out_map:before {
  content: "\e56b";
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  padding: 0 !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-skin iframe {
  margin: 0;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url(../blockter/images/fancybox/fancybox_sprite.png);
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(../blockter/images/fancybox/fancybox_loading.gif) center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(../blockter/images/fancybox/blank.gif);
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto;
}
.fancybox-lock body {
  overflow: hidden !important;
}
.fancybox-lock-test {
  overflow-y: hidden !important;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url(../blockter/images/fancybox/fancybox_sprite@2x.png);
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url(../blockter/images/fancybox/fancybox_loading@2x.gif);
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-loading .slick-list {
  background: #fff url(../blockter/images/ajax-loader.gif) center center no-repeat;
}
@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  src: url(fonts/slick.eot);
  src: url(fonts/slick.eot?#iefix) format('embedded-opentype'), url(fonts/slick.woff) format('woff'), url(fonts/slick.ttf) format('truetype'), url(fonts/slick.svg#slick) format('svg');
}
.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: 0 0;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}
.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: 'â†';
}
[dir=rtl] .slick-prev:before {
  content: 'â†’';
}
.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: 'â†’';
}
[dir=rtl] .slick-next:before {
  content: 'â†';
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}
.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: 0;
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: 'â€¢';
  text-align: center;
  opacity: .25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000;
}
/*# sourceMappingURL=slick-theme.min.css.map */
/* II.3. CUSTOM */
/* III. PARTIALS
***********************/
/* III.1. PAGE */
.content-area {
  float: left;
  margin: 0 -30% 0 0;
  width: 100%;
}
.site-main {
  margin: 0 30% 0 0;
}
.site-content .widget-area {
  float: right;
  overflow: hidden;
  width: 30%;
}
.site-footer {
  clear: both;
  width: 100%;
}
.blog .page_content {
  padding: 100px 0;
}
/* III.2. HEADER */
/*Header breadcrumb*/
.blockter-breadcrumb {
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #071829;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  /*page title*/
  /*end of page title*/
  /*breadcrumbs*/
}
.blockter-breadcrumb .page-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
  font-family: 'Dosis', sans-serif;
  position: relative;
  padding-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
}
.blockter-breadcrumb .bread {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .blockter-breadcrumb .bread {
    margin-top: 60px;
  }
}
.blockter-breadcrumb .breadcrumbs .separator {
  opacity: 0;
}
.blockter-breadcrumb .breadcrumbs span {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #020d18;
  font-weight: 300;
  text-transform: uppercase;
}
.blockter-breadcrumb .breadcrumbs span:hover {
  color: #dcf836;
}
.blockter-breadcrumb .breadcrumbs span a {
  position: relative;
  padding: 0 10px;
}
.blockter-breadcrumb .breadcrumbs span a:after {
  position: absolute;
  content: '\f105';
  font-family: "FontAwesome";
  color: #abb7c4;
  margin-left: 10px;
}
.blockter-breadcrumb .breadcrumbs .last-item {
  position: relative;
  z-index: 10;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #abb7c4;
  font-weight: 400;
  text-transform: uppercase;
}
.blockter-breadcrumb .breadcrumbs .last-item:hover {
  color: #abb7c4;
}
.blockter-breadcrumb .breadcrumbs .last-item i {
  font-style: normal !important;
  color: #020d18;
}
.blockter-breadcrumb .theme-header-text {
  display: none;
}
.header-layout-1 .blockter-breadcrumb .bread {
  margin-top: 130px;
}
/*end of breadcrumb*/
/*top search*/
.header-search-form {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  border: 4px solid #020d18;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.header-search-form::after {
  position: absolute;
  content: '\f4a5';
  font-family: "Ionicons";
  color: #ffffff;
  font-size: 32px;
  top: 8px;
  right: 15px;
}
.header-search-form .search-movies {
  width: 200px;
  border-right: 1px solid #020d18;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  background-color: #233a50 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(images/drop-icon.png) no-repeat right 15px center;
}
@media (max-width: 767px) {
  .header-search-form .search-movies {
    width: 140px;
  }
}
.header-search-form .header-search-form-input {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
}
.header-search-form input::placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
}
.header-search-form select,
.header-search-form input {
  padding: 0 15px;
  border: none;
  background-color: #233a50;
  height: 46px;
}
/*Header menu*/
header {
  /*common style*/
  /*logo*/
  /*style for sub menu*/
}
header.header-layout-2 .menu-flex-box,
header.header-layout-3 .menu-flex-box {
  padding: 0 80px;
}
@media (max-width: 767px) {
  header.header-layout-2 .menu-flex-box,
  header.header-layout-3 .menu-flex-box {
    padding: 0 15px;
  }
}
header ul {
  list-style: none !important;
}
header ul li a {
  font-size: 14px;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #abb7c4;
}
header .ht-logo {
  z-index: 999;
}
header .ht-logo a img {
  width: inherit;
  margin-top: -10px;
  max-width: 240px;
}
header .theme-menu-box {
  position: absolute;
  width: 100%;
  z-index: 999;
  height: 105px;
}
header .theme-menu-box .menu-flex-box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  height: 105px;
}
@media (min-width: 992px) {
  header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    margin-left: 50px;
  }
}
@media (max-width: 991px) {
  header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu {
    flex-direction: column;
    z-index: 999;
    margin-top: 25px;
  }
}
header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu .primary-menu-right {
  display: flex;
  align-items: center;
  z-index: 999;
}
header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu .primary-menu-right .login-btn a,
header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu .primary-menu-right .logout-btn a {
  padding: 10px 15px;
  background-color: #dd003f;
  color: #ffffff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu .primary-menu-right .login-btn a,
  header .theme-menu-box .menu-flex-box .theme-wrap-primary-menu .primary-menu-right .logout-btn a {
    width: 130px;
    padding: 0;
    text-align: center;
  }
}
header .avatar-image img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (max-width: 991px) {
  header .avatar-image img {
    margin-top: 5px;
    margin-bottom: 15px;
  }
}
header .avatar-image a {
  display: inline-block;
  line-height: 105px;
}
@media (max-width: 991px) {
  header {
    height: auto;
  }
  header .theme-menu-box,
  header .menu-flex-box {
    height: 75px;
  }
  header .menu-collapser {
    height: 75px;
    display: flex !important;
    display: -webkit-flex !important;
    align-items: center;
    -webkit-align-items: center;
  }
  header .collapse-button {
    position: absolute;
    right: 80px;
    float: right;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
  }
  header .collapse-button:before {
    padding: 5px 8px;
    border: 1px solid #ffffff;
    line-height: 25px !important;
  }
  header .theme-wrap-primary-menu {
    background: #ffffff;
    position: absolute;
    overflow: hidden;
    width: 100%;
    display: none;
  }
  header .theme-wrap-primary-menu.collapsed {
    display: block;
    top: 100%;
    right: 0;
    padding: 15px 25px 25px 30px;
    text-align: left;
    background-color: #071829;
  }
  header .theme-wrap-primary-menu.collapsed .menu-item-has-mega-menu {
    position: relative;
  }
  header .theme-wrap-primary-menu.collapsed .menu-item-has-icon a:before {
    margin-right: 7px;
  }
  header .theme-wrap-primary-menu.collapsed a {
    padding: 0;
  }
  header .theme-primary-menu {
    float: left;
    width: 100%;
  }
  header .theme-primary-menu .sub-toggle {
    width: 15px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
  }
  header .theme-primary-menu .sub-toggle.expanded:before {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  header .theme-primary-menu .sub-toggle:before {
    content: "\f3d3";
    font-family: "Ionicons";
    position: absolute;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    line-height: 40px;
  }
  header .theme-primary-menu .has-submenu {
    position: relative;
  }
  header .theme-primary-menu .sub-menu {
    background-color: #0c2238;
    padding: 10px 20px;
  }
  header .theme-primary-menu li {
    list-style: none;
  }
  header .theme-primary-menu li a {
    text-transform: uppercase;
    line-height: 40px;
    padding: 0 10px;
    display: block;
    z-index: 2;
    position: relative;
    color: #ffffff;
  }
  header .theme-primary-menu .current_page_item > a,
  header .theme-primary-menu .current-menu-ancestor > a,
  header .theme-primary-menu .current-menu-parent > a {
    color: #dcf836;
  }
  header .primary-menu-right {
    width: 100%;
  }
  header .primary-menu-right .menu-primary-menu-right-container {
    width: 100%;
  }
  header .primary-menu-right .menu-primary-menu-right-container .signup-btn a {
    padding: 0px !important;
    border-bottom: 0;
    text-align: center;
  }
  header .ht-logo {
    height: 75px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
}
@media (max-width: 767px) {
  header .collapse-button {
    right: 15px;
    display: -webkit-flex !important;
    align-items: center;
    -webkit-align-items: center;
    height: 75px;
  }
}
@media (min-width: 992px) {
  header .theme-primary-menu > li {
    line-height: 105px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    /*set active menu*/
  }
  header .theme-primary-menu > li:hover > a {
    color: #dcf836;
  }
  header .theme-primary-menu > li.current_page_item > a,
  header .theme-primary-menu > li.current-menu-ancestor > a,
  header .theme-primary-menu > li.current-menu-parent > a {
    color: #dcf836;
  }
  header .theme-primary-menu > li > a {
    padding: 0 15px;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 3;
    font-family: 'Dosis', sans-serif;
    font-size: 14px;
    color: #abb7c4;
  }
  header .theme-primary-menu .sub-menu .menu-item-has-children:hover a {
    color: #020d18 !important;
  }
  header .theme-primary-menu .menu-item-has-icon .fa:before {
    margin-right: 7px;
  }
  header .theme-primary-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
  }
  header .theme-primary-menu .menu-item-has-children > a:after {
    content: '\f107';
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 7px;
    line-height: 0;
  }
  header .theme-primary-menu .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  header .theme-primary-menu .menu-item-has-children li ul {
    left: 100% !important;
    top: 0;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu {
    text-align: left;
    visibility: hidden;
    opacity: 0;
    margin-left: -15px;
    position: absolute;
    z-index: 999;
    line-height: 24px;
    background: #fff;
    min-width: 180px;
    padding: 15px;
    left: 0;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
    border-top: 2px solid #dcf836;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu li {
    width: 100%;
    position: relative;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu li:last-of-type {
    border-bottom: 0;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu li.menu-item-has-children > a:after {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 7px;
    line-height: 0;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu li.menu-item-has-children:hover > a {
    color: #dcf836;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu li ul.sub-menu {
    left: 180px !important;
    top: -17px;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    color: #020d18;
  }
  header .theme-primary-menu > li:not(.menu-item-has-mega-menu) .sub-menu a:hover {
    background-color: #f5f5f5;
  }
}
header .ht-stick-wrapper {
  position: absolute;
  width: 100%;
  z-index: 999;
  background: none;
}
header .ht-stick-wrapper.ht-menu-stick .menu-stick {
  background: #071829;
  margin-top: 0;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  height: 75px;
}
header .ht-stick-wrapper.ht-menu-stick .menu-stick .menu-flex-box {
  height: 75px;
}
header .ht-stick-wrapper.ht-menu-stick .theme-wrap-menu-flex {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  height: 75px;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  header .ht-stick-wrapper.ht-menu-stick .theme-wrap-menu-flex .collapse-button:before {
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  header .ht-stick-wrapper.ht-menu-stick .theme-wrap-menu-flex {
    box-shadow: none;
  }
}
header .ht-stick-wrapper.ht-menu-stick .ht-logo {
  height: 75px;
  text-align: left;
  display: flex;
  align-items: center;
}
header .ht-stick-wrapper.ht-menu-stick .ht-logo img {
  max-height: 100%;
}
header .ht-stick-wrapper.ht-menu-stick .theme-primary-menu > li {
  line-height: 75px;
}
header .ht-stick-wrapper.ht-menu-stick .collapse-button:before {
  line-height: 75px;
}
/*end of cart item*/
/*HEADER LAYOUT 1*/
@media (min-width: 992px) {
  .header-layout-1 .theme-wrap-menu-flex .theme-wrap-primary-menu {
    width: 70%;
  }
}
/*HEADER LAYOUT 2*/
/*HEADER LAYOUT 3*/
.header-layout-3 .theme-wrap-menu-flex {
  border-bottom: 1px solid #abb7c4;
}
/*FORM */
.overlay,
.overlay-signup {
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: inherit;
  visibility: hidden;
  -moz-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
.overlay.openform,
.overlay-signup.openform {
  visibility: visible;
  z-index: 9999;
  -moz-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
.wrapper {
  position: relative;
}
.wrapper .close,
.wrapper .close-signup {
  font-size: 18px;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -15px;
  margin-right: -15px;
  width: 30px;
  height: 30px;
  background-color: #dd003f;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.wrapper .form-title {
  position: absolute;
  font-family: 'Dosis', sans-serif;
  font-size: 36px;
  color: #020d18;
  font-weight: 700;
  text-transform: uppercase;
  width: 430px;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .wrapper .form-title {
    width: 320px;
  }
}
.wrapper #loginform,
.wrapper #wp_signup_form {
  width: 430px;
  padding: 100px 50px 50px 50px;
  border: 1px solid #e1e1e1;
  height: auto;
  background-color: #ffffff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .wrapper #loginform,
  .wrapper #wp_signup_form {
    padding: 90px 30px 20px 30px;
    width: 320px;
  }
}
.wrapper #loginform p,
.wrapper #wp_signup_form p {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
@media (max-width: 767px) {
  .wrapper #loginform p,
  .wrapper #wp_signup_form p {
    margin: 5px 0;
  }
}
.wrapper #loginform p label,
.wrapper #wp_signup_form p label {
  width: 100%;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #222222;
  font-weight: 700;
  text-transform: uppercase;
}
.wrapper #loginform p input,
.wrapper #wp_signup_form p input {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #222222;
  font-weight: 700;
  text-transform: none;
  margin-top: 10px;
  height: 42px;
  border: 1px solid #e1e1e1;
  padding: 0 15px;
}
.wrapper #loginform p .button.button-primary,
.wrapper #wp_signup_form p .button.button-primary {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  background-color: #dd003f;
  height: 42px;
  width: 100%;
  cursor: pointer;
}
.wrapper #loginform .term-checkbox,
.wrapper #wp_signup_form .term-checkbox {
  display: flex;
  flex-direction: row;
}
.wrapper #loginform .login-remember label,
.wrapper #wp_signup_form .login-remember label {
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  height: 42px;
}
.wrapper #loginform .login-remember input,
.wrapper #wp_signup_form .login-remember input {
  margin-right: 10px;
  margin-top: 0;
}
.wrapper.expand-form #loginform {
  padding-bottom: 130px;
}
.wrapper.expand-form .signup-link {
  bottom: 220px;
}
.wrapper .apsl-login-networks {
  position: absolute;
  bottom: 30px;
  width: 430px;
  text-align: center;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .wrapper .apsl-login-networks {
    width: 320px;
    padding: 0 30px;
  }
}
.wrapper .apsl-login-networks .social-networks {
  display: flex;
  justify-content: space-between;
}
.wrapper .apsl-login-networks .social-networks .apsl-icon-block {
  display: flex;
  width: 150px;
  padding-right: 0;
}
@media (max-width: 767px) {
  .wrapper .apsl-login-networks .social-networks .apsl-icon-block {
    width: 125px;
  }
}
.wrapper .apsl-login-networks .social-networks .apsl-icon-block .apsl-login-text {
  display: block;
  visibility: hidden;
  position: relative;
}
.wrapper .apsl-login-networks .social-networks .apsl-icon-block .apsl-login-text:after {
  position: absolute;
  left: 0;
  visibility: visible;
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}
.wrapper .apsl-login-networks .social-networks .apsl-icon-block .apsl-long-login-text {
  display: none;
}
.wrapper .apsl-login-networks .social-networks .icon-facebook .apsl-login-text:after {
  content: 'facebook';
}
.wrapper .apsl-login-networks .social-networks .icon-twitter .apsl-login-text:after {
  content: 'twitter';
}
.wrapper .apsl-login-networks span.apsl-login-new-text {
  color: #020d18;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}
.wrapper .signup-link {
  position: absolute;
  bottom: 140px;
  right: 50px;
}
@media (max-width: 767px) {
  .wrapper .signup-link {
    bottom: 205px;
    right: 30px;
  }
}
.wrapper .signup-link .signup-btn a {
  text-decoration: underline;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
}
.disableform {
  display: none;
}
.error {
  display: none;
  margin-left: 10px;
}
.error_show {
  color: red;
  margin-left: 10px;
}
input.invalid {
  border: 1px solid red !important;
}
input.valid {
  border: 1px solid #020d18 !important;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #020d18;
  /* change if the mask should have another color then white */
  z-index: 99999;
  text-align: center;
  /* makes sure it stays on top */
}
#preloader img {
  margin-top: 100px;
}
@media (max-width: 767px) {
  #preloader img {
    margin-bottom: 50px;
  }
}
#status {
  position: relative;
  width: 70px;
  height: 70px;
  top: 35%;
  margin: 0 auto;
  right: 35px;
}
#status span {
  position: absolute;
  border-radius: 999px;
}
#status span:nth-child(1) {
  border: 5px solid #dcf836;
  border-top: 5px solid transparent;
  width: 70px;
  height: 70px;
  animation: spin1 2s infinite linear;
}
#status span:nth-child(2) {
  border: 5px solid #dd003f;
  border-top: 5px solid transparent;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  animation: spin2 1s infinite linear;
  margin-left: 35px;
}
@keyframes spin1 {
  0% {
    transform: rotate(360deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.75;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
    opacity: 0.75;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.75;
  }
}
/*auto complete search ajax*/
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  padding: 15px;
  background-color: #233a50;
  border: 3px solid #071829;
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  box-sizing: border-box;
  width: 100%;
}
.autocomplete-suggestion {
  position: relative;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #abb7c4;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
}
.autocomplete-suggestion b {
  color: #dcf836;
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
}
.autocomplete-suggestion.selected {
  background: #071829;
}
/* III.2.1 HEADER - Navigation */
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #428bca;
}
a:visited {
  color: #2a6496;
}
a:hover,
a:focus,
a:active {
  color: #dcf836;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul {
  left: 100%;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul {
  left: auto;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu */
.menu-toggle {
  display: none;
}
@media screen and (max-width: 600px) {
  .main-navigation {
    background: #222222;
    position: absolute;
    top: 0;
  }
  .admin-bar .main-navigation {
    top: 40px;
  }
  .menu-toggle {
    float: right;
    margin-right: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
    color: white;
    position: relative;
    background: transparent;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
  }
  .menu-toggle a:hover,
  .menu-toggle a:focus {
    background: #4d4d4d;
  }
  .menu-toggle .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .menu-toggle .icon-bar {
    background: #fff;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin-bottom: 5px;
    margin-top: 5px;
  }
  .menu {
    margin-top: 40px;
  }
  .main-navigation.toggled .nav-menu {
    display: block;
  }
  .main-navigation ul {
    display: none;
    padding-left: 0;
  }
  .main-navigation ul ul li:hover > ul {
    left: 0;
  }
  .main-navigation li {
    float: none;
  }
  .main-navigation li a {
    padding: 1.3em 2em;
  }
  .main-navigation li li a {
    padding-left: 4em;
  }
  .main-navigation li li li a {
    padding-left: 6em;
  }
  .main-navigation li:hover > a,
  .main-navigation li > a:focus {
    background: #313131;
    background: #303030;
  }
  .main-navigation ul ul,
  .main-navigation ul ul ul {
    position: relative;
    top: inherit;
    left: 0;
    display: block;
    float: none;
    border-top: none;
    box-shadow: none;
  }
  .main-navigation ul ul a {
    width: 100%;
  }
  .main-navigation ul a:hover,
  .main-navigation ul ul a:hover,
  .main-navigation ul a:focus,
  .main-navigation ul ul a:focus {
    background: #4d4d4d;
  }
  .main-navigation .current_page_ancestor {
    background: inherit;
  }
  .main-navigation ul ul .current_page_parent {
    color: inherit;
    background: inherit;
  }
  .main-navigation .current_page_item > a,
  .main-navigation .current_page_item > a:hover,
  .main-navigation .current_page_item li:hover,
  .main-navigation .current_page_item > a:focus,
  .main-navigation .current_page_item li:focus,
  .main-navigation .current_page_parent .current_page_item > a {
    color: #fff;
    color: #ffffff;
    background: #4d4d4d;
  }
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/* III.3. FOOTER */
.theme-footer {
  display: flex;
  flex-direction: column;
  margin-top: -10px;
}
.theme-footer .theme-footer-widget {
  padding: 80px 0;
}
.theme-footer .theme-footer-widget .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .theme-footer .theme-footer-widget .row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.theme-footer .theme-footer-widget .row .footer-widget-it .widget {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 240px;
}
@media (max-width: 991px) {
  .theme-footer .theme-footer-widget .row .footer-widget-it {
    width: 100%;
    padding-left: 15px;
  }
}
.theme-footer .theme-footer-widget .row .widget_mailchimp.footer-widget-it {
  width: 25%;
}
@media (max-width: 991px) {
  .theme-footer .theme-footer-widget .row .widget_mailchimp.footer-widget-it {
    width: 100%;
    padding-right: 30px;
  }
}
.theme-footer .theme-footer-widget .row .widget_nav_menu ul li a {
  color: #abb7c4;
}
.theme-footer .theme-footer-widget .row .widget_nav_menu ul li a:hover {
  color: #dcf836;
}
.theme-footer .coppy-right {
  border-top: 2px solid #1e2c3b;
  padding: 20px 0;
}
.theme-footer .coppy-right .flex-ft-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.theme-footer .coppy-right .flex-ft-item span {
  color: #abb7c4;
}
.theme-footer .coppy-right .flex-ft-item a:hover {
  color: #dcf836;
}
@media (max-width: 991px) {
  .theme-footer .coppy-right .flex-ft-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.theme-footer .coppy-right .scroll-to-top {
  color: #abb7c4;
}
.theme-footer .coppy-right .scroll-to-top:hover span {
  color: #dcf836;
}
.theme-footer .footer-widget-title {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ffffff;
}
/*descripttion and logo*/
.ft-des a {
  font-size: 18px;
  color: #ffffff;
}
.ft-logo {
  margin-bottom: 30px;
  margin-top: -30px;
}
.ft-list {
  list-style: none;
}
.ft-list li a {
  color: #abb7c4;
}
.ft-list li a:hover {
  color: #dcf836;
}
/*mailchimp widget*/
.widget_mailchimp .footer-email-label {
  position: relative;
  margin-bottom: 30px;
}
.widget_mailchimp .footer-email-label:before {
  position: absolute;
  content: '\f422';
  color: #abb7c4;
  font-family: "Ionicons";
  font-size: 16px;
  line-height: 22px;
  right: 15px;
  top: 0;
}
.widget_mailchimp .footer-email-label input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: none;
  border: 1px solid #405266;
  padding: 0 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
  margin-top: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.widget_mailchimp .footer-email-label input:focus {
  border-color: #dcf836;
}
.widget_mailchimp .footer-email-label input::-webkit-input-placeholder {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #abb7c4;
  font-weight: 300;
  text-transform: none;
}
.widget_mailchimp .footer-email-submit {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #dd003f;
  font-weight: 700;
  text-transform: uppercase;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}
.widget_mailchimp .footer-email-submit:after {
  position: absolute;
  content: '\f125';
  font-family: "Ionicons";
  color: #dd003f;
  margin-left: 10px;
  font-size: 12px;
  bottom: 2px;
}
.widget_mailchimp .footer-email-submit:hover {
  color: #dcf836;
}
.widget_mailchimp .footer-email-submit:hover:after {
  color: #dcf836;
}
/* III.4. SIDEBAR */
/* III.5. POST */
article {
  display: block;
}
/*# sourceMappingURL=style.css.map */