@charset "UTF-8";
/**
Theme Name: Gazzanet
 * Table of Contents:
 *
 * 1.0 - Base
 *   1.1 - Reset Styling
 *   1.2 - General Style
 *   1.3 - Form Style
 *   1.4 - Wordpress Base
 *   1.5 - Typography
 * 2.0 - Grid
 *   2.1 - Grid Base
 *   2.2 - Grid Layout
 *   2.3 - Theme Layout 
 *   2.4 - Adsense
 * 3.0 - Header
 *   3.1 - Collapsible Menu
 *   3.2 - Search header
 *   3.3 - Menu
 *   3.4 - Sub Menu
 *   3.5 - Megamenu & Horizontal Menu
 *   3.6 - Vertical Menu
 *   3.7 - Slidebar
 *   3.8 - Top Header
 * 4.0 - Login, Register, and Subscribe
 * 5.0 - Slider
 *   5.1 - Main Slider
 *   5.2 - General Slider
 *	 5.3 - Featured Grid
 * 6.0 - Sidebar
 * 	 6.1 - Default Widget
 *   6.2 - Custom Widget
 * 7.0 - Content
 *   7.1 - Visual Composer
 *     7.1.1 - Content elements margins
 *     7.1.2 - Buttons
 *     7.1.3 - Single image
 *     7.1.4 - Facebook
 *     7.1.5 - Google plus
 *     7.1.6 - Pinterest
 *     7.1.7 - Video
 *     7.1.8 - Google maps
 *     7.1.9 - Tabs
 *   7.2 - Post Block
 *   7.3 - Single Post
 *   7.4 - Comment
 *   7.5 - Pagination
 *   7.6 - Archive
 *   7.7 - 404 Page
 *   7.8 - Users Page
 *   7.9 - Contact Page
 *   7.10 - Review
 * 8.0 - Footer
 * 9.0 - Fix image container
 * 10.0 - Weather
 * 11.0 - Adv
 * 12.0 - Magnific Popup
 * 13.0 - Responsive
 * -----------------------------------------------------------------------------
 */
/**
* 1.0 Base
* -----------------------------------------------------------------------------
*/
/**
 * 1.1 Reset Styling
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* line 24, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, img {
  display: block;
}

/* line 28, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
ol, ul {
  list-style: none;
}

/* line 31, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
blockquote, q {
  quotes: none;
}

/* line 34, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 39, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 43, ../scss/contents/1.0-base/_1.1-reset-styling.scss */
* {
  outline: none;
  padding: 0;
  margin: 0;
}

/**
 * 1.2 General Style
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/1.0-base/_1.2-general-style.scss */
body {
  margin: 0 auto;
  font-family: "Lato", sans-serif;
  background-color: #f6f6f6;
}

/* line 10, ../scss/contents/1.0-base/_1.2-general-style.scss */
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* line 16, ../scss/contents/1.0-base/_1.2-general-style.scss */
h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

/* line 19, ../scss/contents/1.0-base/_1.2-general-style.scss */
h1 {
  font-size: 30px;
}

/* line 22, ../scss/contents/1.0-base/_1.2-general-style.scss */
h2 {
  font-size: 26px;
}

/* line 25, ../scss/contents/1.0-base/_1.2-general-style.scss */
h3 {
  font-size: 22px;
}

/* line 28, ../scss/contents/1.0-base/_1.2-general-style.scss */
h4 {
  font-size: 20px;
}

/* line 31, ../scss/contents/1.0-base/_1.2-general-style.scss */
h5 {
  font-size: 18px;
}

/* line 34, ../scss/contents/1.0-base/_1.2-general-style.scss */
h6 {
  font-size: 16px;
}

/* line 37, ../scss/contents/1.0-base/_1.2-general-style.scss */
a {
  color: #000;
  text-decoration: none;
}

/* line 41, ../scss/contents/1.0-base/_1.2-general-style.scss */
p,
address,
dd,
dt,
blockquote {
  margin-bottom: 20px;
}

/* line 48, ../scss/contents/1.0-base/_1.2-general-style.scss */
p:last-child,
address:last-child,
dd:last-child,
dt:last-child {
  margin-bottom: 0;
}

/* line 54, ../scss/contents/1.0-base/_1.2-general-style.scss */
strong {
  font-weight: 700;
}

/* line 57, ../scss/contents/1.0-base/_1.2-general-style.scss */
em,
cite,
address {
  font-style: italic;
}

/* line 62, ../scss/contents/1.0-base/_1.2-general-style.scss */
ul, ol {
  margin-bottom: 20px;
  margin-top: 0;
  margin-left: 26px;
}

/* line 67, ../scss/contents/1.0-base/_1.2-general-style.scss */
ul li,
ol li {
  margin-bottom: 10px;
}

/* line 71, ../scss/contents/1.0-base/_1.2-general-style.scss */
ul li > ul,
ol li > ol,
ul li > ol,
ol li > ul {
  margin-top: 10px;
}

/* line 77, ../scss/contents/1.0-base/_1.2-general-style.scss */
hr {
  background: #f8f8f8;
  border: 0;
  clear: both;
  width: 100%;
  height: 2px;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
}

/* line 87, ../scss/contents/1.0-base/_1.2-general-style.scss */
code, pre {
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 100%;
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* line 96, ../scss/contents/1.0-base/_1.2-general-style.scss */
pre {
  padding: 15px;
  background: #f8f8f8;
}

/* line 100, ../scss/contents/1.0-base/_1.2-general-style.scss */
sup, sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 107, ../scss/contents/1.0-base/_1.2-general-style.scss */
sup {
  bottom: 1ex;
}

/* line 110, ../scss/contents/1.0-base/_1.2-general-style.scss */
sub {
  top: .5ex;
}

/* line 113, ../scss/contents/1.0-base/_1.2-general-style.scss */
code, kbd, tt, var, samp, pre {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-family: Courier,Helvetica,sans-serif;
  font-size: 16px;
}

/* line 121, ../scss/contents/1.0-base/_1.2-general-style.scss */
dt {
  font-weight: bold;
}

/* line 124, ../scss/contents/1.0-base/_1.2-general-style.scss */
iframe, embed {
  max-width: 100%;
}

/* line 127, ../scss/contents/1.0-base/_1.2-general-style.scss */
textarea {
  white-space: pre;
}

/* line 130, ../scss/contents/1.0-base/_1.2-general-style.scss */
video {
  width: 100%;
  height: auto;
}

/* line 134, ../scss/contents/1.0-base/_1.2-general-style.scss */
table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 2px 0 0 2px;
  border-style: solid;
  margin: 0 0 1.6em;
  width: 100%;
}

/* line 142, ../scss/contents/1.0-base/_1.2-general-style.scss */
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

/* line 149, ../scss/contents/1.0-base/_1.2-general-style.scss */
th {
  border-width: 0 2px 2px 0;
  border-style: solid;
  font-weight: 700;
}

/* line 155, ../scss/contents/1.0-base/_1.2-general-style.scss */
td {
  border-width: 0 2px 2px 0;
  border-style: solid;
}

/* line 160, ../scss/contents/1.0-base/_1.2-general-style.scss */
th, td {
  padding: 0.4em;
}

/* line 163, ../scss/contents/1.0-base/_1.2-general-style.scss */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 172, ../scss/contents/1.0-base/_1.2-general-style.scss */
html, body {
  width: 100%;
  min-height: 100%;
}

/* line 176, ../scss/contents/1.0-base/_1.2-general-style.scss */
a:hover {
  text-decoration: underline;
}

/* line 179, ../scss/contents/1.0-base/_1.2-general-style.scss */
ins {
  vertical-align: bottom;
}

/* line 182, ../scss/contents/1.0-base/_1.2-general-style.scss */
fieldset {
  border: 1px solid #ddd;
  padding: 10px 20px;
  margin-bottom: 20px;
}

/* line 187, ../scss/contents/1.0-base/_1.2-general-style.scss */
legend {
  padding: 0 5px;
}

@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 191, ../scss/contents/1.0-base/_1.2-general-style.scss */
  #cpmt_container {
    width: 870px !important;
  }
}
/**
 * 1.3 Form Style
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/1.0-base/_1.3-form-style.scss */
input, textarea, select {
  color: #555;
  width: 100%;
  border-width: 2px;
  border-style: solid;
  padding: 10px 12px;
  margin-bottom: 10px;
  outline: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  background-color: #fff;
}

/* line 18, ../scss/contents/1.0-base/_1.3-form-style.scss */
input::-ms-clear {
  display: none;
}

/* line 21, ../scss/contents/1.0-base/_1.3-form-style.scss */
input::-ms-reveal {
  display: none;
}

/* line 24, ../scss/contents/1.0-base/_1.3-form-style.scss */
::-webkit-input-placeholder {
  color: #bbb;
}

/* line 27, ../scss/contents/1.0-base/_1.3-form-style.scss */
:-moz-placeholder {
  color: #bbb;
}

/* line 30, ../scss/contents/1.0-base/_1.3-form-style.scss */
::-moz-placeholder {
  color: #bbb;
}

/* line 33, ../scss/contents/1.0-base/_1.3-form-style.scss */
:-ms-input-placeholder {
  color: #bbb;
}

/* line 36, ../scss/contents/1.0-base/_1.3-form-style.scss */
.button, button, input[type="submit"] {
  display: inline-block;
  position: relative;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  border: none;
  outline: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 9px 25px;
  margin: 0 0 5px;
  width: auto;
  font-size: 15px;
}

/* line 57, ../scss/contents/1.0-base/_1.3-form-style.scss */
input[type="checkbox"], input[type="radio"] {
  width: auto;
}

/* line 60, ../scss/contents/1.0-base/_1.3-form-style.scss */
#commentform input#submit {
  display: none;
}

/**
 * 1.4 Wordpress Base
 * -----------------------------------------------------------------------------
*/
/* line 63, ../scss/contents/1.0-base/_1.4-wordpress-base.scss */
.right {
  text-align: right;
}

/* line 66, ../scss/contents/1.0-base/_1.4-wordpress-base.scss */
.left {
  text-align: left;
}

/* line 69, ../scss/contents/1.0-base/_1.4-wordpress-base.scss */
.center {
  text-align: center;
}

/* line 74, ../scss/contents/1.0-base/_1.4-wordpress-base.scss */
.wp-smiley {
  display: inline;
}

/**
 * 1.5 Typography
 * -----------------------------------------------------------------------------
 */
/**
* 2.0 Grid
* -----------------------------------------------------------------------------
*/
/* line 1, ../scss/contents/2.0-grid/_2.0-grid.scss */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* line 9, ../scss/contents/2.0-grid/_2.0-grid.scss */
.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* line 18, ../scss/contents/2.0-grid/_2.0-grid.scss */
.clearfix:after {
  clear: both;
}

/* line 21, ../scss/contents/2.0-grid/_2.0-grid.scss */
.clearfix {
  zoom: 1;
}

/**
 * 2.1 Grid Base
 * -----------------------------------------------------------------------------
 */
/* 1. 2 Column Grid 0px - 779px 
----------------------------------------------------------------------------- 

grid 1:    50%
grid 2:    100%

----------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /* line 29, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .col {
    border-left-width: 20px;
    padding: 0 0px;
  }

  /* --- Gridpak variables ---*/
  /*
  Add your semantic classnames in alongside their corresponding grids here. e.g.
  
  .grid-3,
  .my_semantic_class_name {
      ...
  }
  
  */
  /* line 47, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-1 {
    width: 50%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 50, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-2 {
    margin-left: 0;
    float: left;
    width: 100%;
  }
}
/* 2. 12 Column Grid 780px - 979px 
----------------------------------------------------------------------------- 

grid 1:    8.33333333333%
grid 2:    16.6666666667%
grid 3:    25.0%
grid 4:    33.3333333333%
grid 5:    41.6666666667%
grid 6:    50.0%
grid 7:    58.3333333333%
grid 8:    66.6666666667%
grid 9:    75.0%
grid 10:    83.3333333333%
grid 11:    91.6666666667%
grid 12:    100%

----------------------------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 76, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .col {
    border-left-width: 20px;
    padding: 0 0px;
  }

  /* --- Gridpak variables ---*/
  /* line 85, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-1 {
    width: 8.33333%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 88, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-2 {
    width: 16.66667%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 91, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-3 {
    width: 25%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 94, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-4 {
    width: 33.33333%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 97, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-5 {
    width: 41.66667%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 100, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-6 {
    width: 50%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 103, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-7 {
    width: 58.33333%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 106, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-8 {
    width: 66.66667%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 109, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-9 {
    width: 75%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 112, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-10 {
    width: 83.33333%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 115, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-11 {
    width: 91.66667%;
    padding: 0 0px;
    padding-left: 0;
    margin-left: 0;
    float: left;
  }

  /* line 118, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-12 {
    margin-left: 0;
    float: left;
    width: 100%;
  }
}
/* 3. 12 Column Grid 980px - 1439px 
----------------------------------------------------------------------------- 

grid 1:    8.33333333333%
grid 2:    16.6666666667%
grid 3:    25.0%
grid 4:    33.3333333333%
grid 5:    41.6666666667%
grid 6:    50.0%
grid 7:    58.3333333333%
grid 8:    66.6666666667%
grid 9:    75.0%
grid 10:    83.3333333333%
grid 11:    91.6666666667%
grid 12:    100%

----------------------------------------------------------------------------- */
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 144, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .col {
    border-left-width: 20px;
    padding: 0 0px;
  }

  /* --- Gridpak variables ---*/
  /* line 153, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-1 {
    width: 8.33333%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 156, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-2 {
    width: 16.66667%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 159, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-3 {
    width: 25%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 162, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-4 {
    width: 33.33333%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 165, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-5 {
    width: 41.66667%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 168, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-6 {
    width: 50%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 171, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-7 {
    width: 58.33333%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 174, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-8 {
    padding-left: 20px;
    float: left;
    margin-left: 0;
    padding: 0;
    width: 65.6667%;
  }

  /* line 182, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-9 {
    width: 75%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 185, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-10 {
    width: 83.33333%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 188, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-11 {
    width: 91.66667%;
    padding: 0 0px;
    padding-left: 20px;
    margin-left: 0;
    float: left;
  }

  /* line 191, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-12 {
    margin-left: 0;
    float: left;
    width: 100%;
  }
}
/* 4. 12 Column Grid 1440px - Infinity 
----------------------------------------------------------------------------- 

grid 1:    8.33333333333%
grid 2:    16.6666666667%
grid 3:    25.0%
grid 4:    33.3333333333%
grid 5:    41.6666666667%
grid 6:    50.0%
grid 7:    58.3333333333%
grid 8:    66.6666666667%
grid 9:    75.0%
grid 10:    83.3333333333%
grid 11:    91.6666666667%
grid 12:    100%

----------------------------------------------------------------------------- */
@media only screen and (min-width: 1440px) {
  /* line 217, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .col {
    border-left-width: 24px;
    padding: 0 0px;
  }

  /* --- Gridpak variables ---*/
  /* line 226, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-1 {
    width: 8.33333%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 229, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-2 {
    width: 16.66667%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 232, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-3 {
    width: 25%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 235, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-4 {
    width: 33.33333%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 238, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-5 {
    width: 41.66667%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 241, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-6 {
    width: 50%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 244, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-7 {
    width: 58.33333%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 247, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-8 {
    float: left;
    margin-left: 0;
    padding: 0;
    width: 66.6667%;
  }

  /* line 254, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-9 {
    width: 75%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 257, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-10 {
    width: 83.33333%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 260, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-11 {
    width: 91.66667%;
    padding: 0 0px;
    padding-left: 24px;
    margin-left: 0;
    float: left;
  }

  /* line 263, ../scss/contents/2.0-grid/_2.1-grid-base.scss */
  .grid-12 {
    margin-left: 0;
    float: left;
    width: 100%;
  }
}
/**
 * 2.2 Grid Layout
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
.row {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  /* line 5, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row {
    width: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 5, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row {
    width: 768px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 5, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row {
    width: 980px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 5, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row {
    width: 1140px;
  }
}

/* line 25, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
.row-flex {
  width: 100%;
}

/* line 29, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
.main-wrap .row .row {
  width: inherit !important;
}

@media only screen and (max-width: 767px) {
  /* line 33, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row .row-inner,
  .main-row .row-inner {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 33, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row .row-inner,
  .main-row .row-inner {
    margin-left: -34px;
    margin-right: -34px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 33, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row .row-inner,
  .main-row .row-inner {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 33, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
  .row .row-inner,
  .main-row .row-inner {
    margin-left: -30px;
    margin-right: -30px;
  }
}

/* line 56, ../scss/contents/2.0-grid/_2.2-grid-layout.scss */
.row-inner:before, .row-inner:after {
  display: table;
  content: "";
  line-height: 0;
}

/**
 * 2.3 Theme Layout 
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.deskview,
.deskpadview {
  display: block !important;
}

/* line 10, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.mobview,
.mobviewsmall,
.padpotview {
  display: none !important;
}

/* line 16, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.hide-text {
  text-indent: -99999px;
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}

/* line 24, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.hide-element {
  display: none;
}

/* line 28, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.fullwidth {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

/* line 34, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.fullwidth .row {
  width: 100%;
}

/* line 42, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.boxed {
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  /* line 42, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
  .boxed {
    width: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 42, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
  .boxed {
    width: 768px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 42, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
  .boxed {
    width: 980px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 42, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
  .boxed {
    width: 1140px;
  }
}

/* line 65, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.wrap {
  position: relative;
}

/* line 69, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.main-wrap {
  overflow: hidden;
}

/* line 73, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.main-grid, .main-content, .none-main-content {
  display: inline;
  position: relative;
  float: left;
  min-height: 1px;
  width: 100%;
}

/* line 82, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.logo-row-wrap,
.credit-row-wrap {
  margin: 0 0 0 -999999px;
  padding: 0 0 0 999999px;
}

/* line 88, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.main-row {
  position: relative;
}

/* line 92, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.left-sidebar,
.logo-row,
.credit-row,
.type-32 .grid-big .grid-caption,
.type-32 .featured-grid-item > a:before {
  width: 296px;
}

/* line 100, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.left-sidebar {
  z-index: 10;
  margin-bottom: -99999px !important;
  padding-bottom: 99999px !important;
}

/* line 106, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.megalist {
  width: 20%;
}

/* line 110, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.right-sidebar {
  width: 27.33333333%;
  padding-right: 28px;
  z-index: 10;
}

/* line 117, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.right-sidebar-internal {
  display: block;
  float: left;
  height: auto;
  position: relative;
  width: 100%;
}

/* line 125, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.double-main-content {
  width: 48%;
}

/* line 129, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.left-main-content,
.menu-row,
.footer-row {
  width: 75.33333333%;
}

/* line 135, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.right-main-content {
  width: 72.66666667%;
}

/* line 139, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.megaposts {
  width: 80%;
}

/* line 143, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.none-main-content,
.megaposts-full {
  width: 100%;
}

/* line 148, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.main-content,
.left-sidebar,
.right-sidebar {
  padding-top: 30px;
  padding-bottom: 60px;
}

/* line 155, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.haveslider .main-content,
.haveslider .left-sidebar,
.haveslider .right-sidebar {
  padding-top: 42px;
}

/* line 161, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.haveslider.havenav .main-content,
.haveslider.havenav .left-sidebar,
.haveslider.havenav .right-sidebar {
  padding-top: 76px;
}

/* line 167, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.sidebar ul,
.footer-wrap ul,
.lists-posts ul {
  margin: 0;
}

/* line 173, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.sidebar li,
.footer-wrap li,
.lists-posts li {
  list-style-type: none;
  list-style: none;
}

/* line 180, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.sidebar .widget ul > li,
.sidebar .widget ul > li ul li,
.lists-posts ul > li,
.widget_calendar tbody .pad,
.widget_calendar thead > tr > th,
.widget_calendar tbody > tr > td,
.tagcloud a,
.single-block,
.single-content .entry-header.media-above,
.single-content .entry-header.media-fullwidth,
.archive-author,
.pagination span.current,
.pagination a,
.star .review-content,
.review-content .review-criteria.criteria-star,
.review-foot,
.review-foot .review-total-score,
.widget_search .form-search,
.entry-tags a,
.type-32 .grid-caption.el-left,
table, th, td {
  border-color: #f8f8f8;
}

/* line 204, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
input,
textarea,
select,
.search-post .search-number,
.review-foot .review-summary {
  border-color: #f1f1f1;
}

/* line 212, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.el-left {
  float: left;
}

/* line 216, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.el-right {
  float: right;
}

/* line 220, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.sidebar .wpb_content_element {
  margin-bottom: 0;
}

/* line 224, ../scss/contents/2.0-grid/_2.3-theme-layout.scss */
.theiaStickySidebar:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * 3.0 header
 * -----------------------------------------------------------------------------
 */
/* line 1, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata {
  background-color: #ffffff;
  color: #000;
  height: 130px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 1, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata {
    height: 130px;
    padding-top: 20px;
  }
}
/* line 19, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato.article img {
  max-height: 35px;
}
/* line 22, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato.article img.logo-img {
  max-height: 55px;
  margin: 0 auto;
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 22, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato.article img.logo-img {
    margin-top: 0;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 22, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato.article img.logo-img {
    margin: 0 !important;
    max-height: 45px !important;
    max-width: 300px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 22, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato.article img.logo-img {
    margin: 0 !important;
    max-height: 45px !important;
    max-width: 300px;
  }
}
/* line 42, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato {
  height: 120px;
  padding-top: 10px;
}
/* line 45, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato img {
  max-height: 100px;
}
/* line 49, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato.home img.logo-img {
  min-height: 90px;
  margin: 0 auto;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 49, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato.home img.logo-img {
    min-height: 30px;
  }
}
/* line 58, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.affiliato img.logo-img {
  margin: 0 auto;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 42, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato {
    display: block;
    height: 50px;
    padding: 0;
    border-bottom: 1px solid #d9d9d9;
  }
  /* line 68, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato.generalTestataBackground {
    border-bottom: none;
  }
  /* line 71, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .logo {
    float: left;
    margin-top: 5px;
    margin-left: 10px;
  }
  /* line 75, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .logo img.logo-img {
    max-height: 32px;
    margin-top: 5px;
    margin-left: 0;
    max-width: 150px;
  }
  /* line 82, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .menuback {
    float: left;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  /* line 88, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .menuback span.cont {
    width: 38px;
    height: 38px;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 3px;
  }
  /* line 95, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .menuback span.cont i {
    font-size: 3.1em;
    position: relative;
    display: block;
    text-align: center;
  }
  /* line 102, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .menuback span.cont.light i {
    color: #fff;
  }
  /* line 107, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .menuback span.cont.dark i {
    color: #000;
  }
  /* line 113, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .openmenu {
    float: right;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin-right: 50px;
  }
  /* line 120, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .openmenu span.cont {
    width: 38px;
    height: 38px;
    position: relative;
    display: block;
    margin: 0 auto;
    border-radius: 3px;
  }
  /* line 127, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .openmenu span.cont i {
    font-size: 1.7em;
    position: relative;
    display: block;
    text-align: center;
    top: 10px;
  }
  /* line 135, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .openmenu span.cont.light i {
    color: #fff;
  }
  /* line 140, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .openmenu span.cont.dark i {
    color: #000;
  }
  /* line 146, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .logo-gazz-mobile {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  /* line 146, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .logo-gazz-mobile {
    display: block;
    margin-left: 270px;
    width: 50px;
    height: 50px;
    background-size: cover;
    color: black;
    background-image: url("/wp-content/themes/gazzanet/images/logo-gazz.png");
  }
}
@media only screen and (max-width: 767px) {
  /* line 158, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .followus, .main-header .main-row.testata.affiliato .machette {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 174, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.affiliato .logo img.logo-img {
    max-width: 300px;
  }
  /* line 177, ../scss/contents/3.0-header/_3.0-header.scss */
  body.blog-id-27 .main-header .main-row.testata.affiliato .logo img.logo-img {
    max-height: inherit;
    min-height: inherit;
    margin-top: 10px;
  }
}
/* line 186, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .logo {
  text-align: center;
}
/* line 188, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .logo .gazzanet {
  height: 93px;
  width: 295px;
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  background-position: 0 -82px;
  background-repeat: no-repeat;
  background-size: 840px auto;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 188, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata .logo .gazzanet {
    background-position: 0 -80px;
    background-size: 820px auto;
    margin-top: 0;
    width: 284px;
  }
}
/* line 204, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus {
  text-align: center;
  position: absolute;
  top: 14px;
  right: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 204, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata .followus {
    top: 28px;
  }
}
/* line 212, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus span {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 400;
  float: left;
  width: 100%;
}
/* line 221, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus .social {
  display: inline-block;
  margin: 14px auto 0;
  position: relative;
  width: auto;
}
/* line 226, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus .social a {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  margin-left: 5px;
  float: left;
  position: relative;
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 226, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata .followus .social a {
    width: 30px;
    height: 30px;
  }
}
/* line 251, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus .social a i {
  font-size: 1.3em;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 251, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata .followus .social a i {
    font-size: 1.2em;
    margin-top: 6px;
  }
}
/* line 260, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus .social a img {
  border-radius: 3px;
}
/* line 267, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark span {
  color: #666666;
}
/* line 271, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.fb {
  background-color: #3b5998;
}
/* line 274, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.tw {
  background-color: #55acee;
}
/* line 277, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.gp {
  background-color: #e02f2f;
}
/* line 280, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.ig {
  background-color: #316699;
}
/* line 283, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.flickrsocial {
  background-color: #2578d2;
}
/* line 286, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a.rss {
  background-color: #FF731F;
}
/* line 290, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.dark a i {
  color: #fff;
}
/* line 296, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.light span {
  color: #ffffff;
}
/* line 299, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.light a {
  background-color: rgba(255, 255, 255, 0.3);
}
/* line 301, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata .followus.light a i {
  color: #ffffff;
}
/* line 308, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .logo {
  text-align: left;
}
/* line 310, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .logo .gazzanet {
  background-position: 0 -35px;
  background-size: 374px auto;
  height: 45px;
  margin: 0;
  width: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 318, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.article .logo a {
    float: left;
  }
}
/* line 324, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus {
  text-align: right;
  float: right;
  width: auto;
}
@media only screen and (min-width: 1440px) {
  /* line 324, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.article .followus {
    padding-left: 120px;
  }
}
/* line 341, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus span {
  float: left;
  position: relative;
  display: inline;
  font-weight: 200;
  margin-top: 10px;
  width: 180px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 341, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.testata.article .followus span {
    width: 165px;
  }
}
/* line 352, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus .social {
  float: left;
  position: relative;
  display: inline;
  width: auto;
  margin-top: 5px;
  text-align: center;
}
/* line 359, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus .social a {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  border-right: 1px solid #ccc;
  border-radius: 0;
}
/* line 366, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus .social a i {
  margin-top: 5px;
}
/* line 369, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus .social a:last-child {
  border-right: 0;
}
/* line 377, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.testata.article .followus.dark .social a i {
  color: #000;
}

/* line 387, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.mainmenu {
  height: 50px;
}
/* line 389, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .main-row.mainmenu.sticky {
  position: fixed;
  top: 0;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  /* line 387, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu {
    display: none;
  }
  /* line 396, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened {
    height: auto;
    display: block;
  }
  /* line 402, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu {
    overflow: auto;
    height: auto;
    width: 100%;
  }
  /* line 406, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav {
    margin-right: 0;
    max-width: 320px;
    margin-bottom: 20px;
  }
  /* line 410, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li {
    padding-left: 20px;
    width: 100%;
  }
  /* line 413, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li:first-child {
    padding-left: 20px;
    margin-left: 0;
  }
  /* line 417, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  /* line 423, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li a span.indicator {
    top: 0;
  }
  /* line 425, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li a span.indicator i {
    font-size: 20px;
  }
  /* line 427, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li a span.indicator i:before {
    color: #fff;
  }
  /* line 433, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li ul.sub-menu {
    margin-left: 0;
    margin-bottom: 0;
    width: 320px;
    background-color: transparent;
  }
  /* line 438, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li ul.sub-menu li {
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 0;
  }
  /* line 443, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li ul.sub-menu li a .indicator {
    right: 30px;
  }
  /* line 449, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li ul.sub-menu ul.sub-menu li:last-child {
    padding-bottom: 0;
  }
  /* line 454, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li.login {
    margin-right: 20px;
    padding-top: 5px;
  }
  /* line 457, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li.login.hide {
    visibility: hidden;
  }
  /* line 461, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li.login span a.hidelogged, .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li.login span a.hidenotlog {
    display: none;
  }
  /* line 467, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.opened nav.main-menu .bombnav li.login span a.divide.hide {
    display: none;
  }
  /* line 477, ../scss/contents/3.0-header/_3.0-header.scss */
  .main-header .main-row.mainmenu.sticky.opened {
    top: 50px;
  }
}

/* line 483, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header a,
.main-header i,
.main-header img,
.main-header input,
.bombver.bombnav a,
.owl-theme .owl-controls .owl-buttons .owl-prev,
.owl-theme .owl-controls .owl-buttons .owl-next {
  -o-transition: all .25s linear;
  -webkit-transition: all .25s linear;
  -moz-transition: all .25s linear;
  transition: all .25s linear;
}

/* line 496, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header .row.logosbkg {
  background: #ffffff;
  color: #000;
}

/* line 501, ../scss/contents/3.0-header/_3.0-header.scss */
.main-header li {
  list-style-type: none;
  list-style: none;
}

/* line 506, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky {
  position: fixed;
  z-index: 1000;
  top: 0;
}

/* line 512, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-video {
  position: fixed !important;
}

/* line 516, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe {
  top: 50px;
  z-index: 1020;
  left: 0;
}

/* line 524, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-desk {
  bottom: 0;
  z-index: 1020;
  right: calc(35vw - 300px) !important;
  width: 330px !important;
  height: calc((58vw - 10px) / 16 * 9) !important;
  max-height: 222px !important;
}

/* line 533, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-mobile {
  top: 50px;
  z-index: 1020;
  height: 30%;
}

/* line 538, ../scss/contents/3.0-header/_3.0-header.scss */
.videoSidebar {
  margin-bottom: 20px;
}
/* line 540, ../scss/contents/3.0-header/_3.0-header.scss */
.videoSidebar .sticky-iframe-desk {
  width: 300px !important;
  height: calc((58vw - 10px) / 16 * 9) !important;
  max-height: 200px !important;
}

/* line 546, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-close-icon {
  display: none;
  background: url(/wp-content/themes/gazzanet/images/close.svg) no-repeat 0 0;
  position: absolute !important;
  top: -12px;
  right: -25px;
  width: 42px;
  height: 42px;
  z-index: 9999;
  text-align: center;
  cursor: pointer;
}

/* line 558, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-desk.sticky-video:hover {
  opacity: 1;
  transform: none;
}

/* line 562, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-desk > .sticky-iframe-desk-height {
  height: 100%;
}

/* line 565, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-mobile > .sticky-iframe-mobile-height {
  height: 210px;
}

/* line 568, ../scss/contents/3.0-header/_3.0-header.scss */
.sticky-iframe-mobile.sticky-video:hover {
  opacity: 1;
  transform: none;
}

/* line 573, ../scss/contents/3.0-header/_3.0-header.scss */
.nicecustom::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}

/* line 577, ../scss/contents/3.0-header/_3.0-header.scss */
.nicecustom::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

/* line 585, ../scss/contents/3.0-header/_3.0-header.scss */
.nicecustom::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

/* line 590, ../scss/contents/3.0-header/_3.0-header.scss */
.nicecustom::-webkit-scrollbar-corner {
  background-color: transparent;
}

/* line 594, ../scss/contents/3.0-header/_3.0-header.scss */
.fullwidth .sticky {
  width: 100%;
}

/**
 * 3.1 Collapsible Menu
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.sb-toggle {
  border: none;
  background: url(https://images2.gazzettaobjects.it/includes2013/LIBS/css/assets/menu2018/gIcon.png?v=201912111517) no-repeat 0 0 !important;
  height: 40px;
  background-size: 40px 40px !important;
  left: 0px;
  margin-top: 5px;
  cursor: pointer;
  display: block;
  height: 30px;
}

/* line 16, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.sb-toggle i {
  line-height: 1.2;
}

/* line 19, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.sb-toggle .fa {
  font-size: 30px;
}

/* line 22, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.sb-toggle .togtext {
  padding-left: 20px;
  line-height: 30px;
  font-size: 18px;
  text-transform: uppercase;
}

/* line 28, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.menu-reg-log a {
  margin-right: 85px;
}

/* line 31, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.header-one .menu-reg-log {
  margin-left: 30px;
}

/* line 34, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.header-one .menu-reg-log a {
  margin-right: 0;
  margin-left: 30px;
}

/* line 38, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.righttog {
  float: right;
}

/* line 41, ../scss/contents/3.0-header/_3.1-collapsible-menu.scss */
.left-tog {
  float: left;
}

/**
* 3.2 Search header
* -----------------------------------------------------------------------------
*/
/**
 * 3.3 Menu
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 14px;
  -webkit-transform: rotate(360deg);
  float: left;
  display: inline;
}
@media only screen and (max-width: 767px) {
  /* line 6, ../scss/contents/3.0-header/_3.3-menu.scss */
  div.mainmenu .triangle {
    display: none;
  }
}
/* line 18, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu .allbloglink {
  float: right;
  width: auto;
  height: 100%;
  padding-left: 18px;
  padding-right: 15px;
  display: inline;
}
@media only screen and (max-width: 767px) {
  /* line 18, ../scss/contents/3.0-header/_3.3-menu.scss */
  div.mainmenu .allbloglink {
    display: none;
  }
}
/* line 29, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu .allbloglink a {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  line-height: 48px;
}
/* line 38, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu span.logomenu {
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
  height: 29px;
  margin-left: 5px;
  margin-top: 12px;
  width: 131px;
}
/* line 49, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu.sticky span.logomenu {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 49, ../scss/contents/3.0-header/_3.3-menu.scss */
  div.mainmenu.sticky span.logomenu {
    display: none;
  }
}

/* line 58, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu {
  height: 50px;
  overflow: hidden;
  width: auto;
  display: inline;
}
/* line 63, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  margin-right: -16px;
  height: 100%;
}
/* line 70, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav a {
  outline: none;
  z-index: 10;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-family: "Lato", sans-serif;
}
/* line 78, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li {
  display: inline-block;
  float: left;
  margin: 0;
  height: 100%;
}
/* line 83, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li:first-child {
  margin-left: 15px;
}
/* line 87, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li ul.sub-menu li:first-child {
  margin-left: 0;
}
/* line 91, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li a img {
  display: inline-block;
}
/* line 94, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.hide-onscrennmenutrick {
  display: none;
}
/* line 98, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.containermaxitem a.bulls {
  height: 20px;
  margin: 15px 0;
  padding-left: 7px;
  padding-right: 10px;
  padding-top: 0;
  width: 42px;
}
/* line 105, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.containermaxitem a.bulls:after {
  border: none;
}
/* line 109, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.containermaxitem ul.sub-menu {
  width: 250px;
  right: 0;
}
/* line 112, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.containermaxitem ul.sub-menu li.hide-onscrennmenutrick {
  display: block;
}
/* line 116, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav li.containermaxitem ul.sub-menu li ul.sub-menu {
  left: 30px;
  position: relative;
}
/* line 124, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav > li > a {
  padding: 14px 15px 15px 0px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
/* line 129, ../scss/contents/3.0-header/_3.3-menu.scss */
nav.main-menu .bombnav > li > a:hover {
  color: #333 !important;
}

/* line 136, ../scss/contents/3.0-header/_3.3-menu.scss */
.no-menu > a {
  padding: 12px 16px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

/* line 144, ../scss/contents/3.0-header/_3.3-menu.scss */
.bombnav > li:hover > a:after, .bombnav > li.active > a :after, .bombnav > li.current-menu-item > a:after {
  content: "";
  position: absolute;
  left: 40%;
  top: 38px;
  margin-left: -12px;
  border-width: 0 12px 12px;
  border-color: transparent transparent #333;
  border-style: solid;
  display: block;
  width: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  /* line 144, ../scss/contents/3.0-header/_3.3-menu.scss */
  .bombnav > li:hover > a:after, .bombnav > li.active > a :after, .bombnav > li.current-menu-item > a:after {
    bottom: unset;
    top: 10px;
  }
}

/* line 164, ../scss/contents/3.0-header/_3.3-menu.scss */
.bombver.bombnav > li:hover > a:after, .bombver.bombnav > li.active > a :after {
  border: none;
}

/* line 169, ../scss/contents/3.0-header/_3.3-menu.scss */
div.main-row.mainmenu ul#mainnav li.menu-item-has-children a span.indicator i.icon-indicator {
  visibility: hidden;
}

/* line 173, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu.sticky nav.main-menu .bombnav li.containermaxitem ul.sub-menu {
  right: 0px;
}
/* line 175, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu.sticky nav.main-menu .bombnav li.containermaxitem ul.sub-menu li ul.sub-menu {
  float: left;
  left: -230px;
  width: 220px !important;
  background: none;
}
/* line 180, ../scss/contents/3.0-header/_3.3-menu.scss */
div.mainmenu.sticky nav.main-menu .bombnav li.containermaxitem ul.sub-menu li ul.sub-menu li {
  float: left;
  width: 230px;
}

@-moz-document url-prefix() {
  /* line 187, ../scss/contents/3.0-header/_3.3-menu.scss */
  div.mainmenu.sticky nav.main-menu .bombnav li.containermaxitem ul.sub-menu {
    right: 140px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 194, ../scss/contents/3.0-header/_3.3-menu.scss */
  div.main-row.mainmenu ul#mainnav li.menu-item-has-children a span.indicator i.icon-indicator {
    visibility: visible;
  }
}
/**
 * 3.4 Sub Menu
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  min-width: 250px;
  top: auto;
  background-color: #333;
}
/* line 16, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu li {
  clear: both;
  width: 100%;
}
/* line 17, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu li ul.sub-menu {
  left: 100%;
  top: inherit;
  background-color: #444;
}
/* line 25, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu li a {
  width: 100%;
  padding: 10px 35px 10px 20px;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
}
/* line 34, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu.double {
  min-width: 350px;
}
/* line 36, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu.double li {
  width: 50%;
  float: left;
  clear: none;
}
/* line 40, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul.sub-menu.double li:nth-child(odd) {
  border-right: 1px solid #333;
}

/* line 46, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.sticky .bombnav ul.sub-menu {
  position: absolute;
  width: 250px;
}
/* line 49, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.sticky .bombnav ul.sub-menu li.menu-item-has-children ul.sub-menu {
  left: auto;
  margin-left: 250px;
  z-index: 200;
}

/* line 56, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.indicator i {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 64, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.indicator i:before {
  content: "\f107";
  color: #939393;
}

/* line 73, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav .indicator {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  float: right;
  font-weight: 400;
}
/* line 81, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombnav ul li .indicator {
  font-size: 16px;
  top: 0;
  right: 10px;
  padding: 10px 0;
  font-weight: 400;
}

/* line 91, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombver.bombnav .indicator {
  position: absolute;
  right: 30px;
  top: -2px;
  height: 0;
  width: 10px;
  text-align: center;
  line-height: 0;
  font-weight: 800;
  font-size: 30px;
}
/* line 102, ../scss/contents/3.0-header/_3.4-sub-menu.scss */
.bombver.bombnav ul li .indicator {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  font-weight: 400;
}

/**
 * 3.5 Megamenu & Horizontal Menu
 * -----------------------------------------------------------------------------
 */
/**
 * 3.6 Vertical Menu
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
#sidenav.bombnav {
  margin-left: 0;
}
/* line 8, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
#sidenav.bombnav > li > a {
  font-size: 24px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}
/* line 13, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
#sidenav.bombnav ul.sub-menu {
  background-color: #333;
}
/* line 15, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
#sidenav.bombnav ul.sub-menu span.indicator {
  right: 25px;
}

/* line 21, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav {
  padding-top: 10px;
  padding-bottom: 35px;
  overflow: hidden;
  margin-right: 0;
  max-width: 300px;
}
/* line 27, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav .sub-menu, .bombver.bombnav .megamenu {
  background: #1c1c1c;
}
/* line 30, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li a {
  width: 100%;
}
/* line 33, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li {
  display: block;
  width: 100%;
  position: relative;
  float: left;
}
/* line 38, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > a {
  padding: 12px 40px 12px 25px;
  line-height: inherit;
  font-size: 24px;
  font-weight: 700;
}
/* line 44, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li:first-child > a, .bombver.bombnav > li:hover > a:before, .bombver.bombnav > li.active > a:before {
  border: none;
}
/* line 48, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav ul.sub-menu {
  width: 100%;
  max-width: 100%;
  left: 0;
  position: static;
  border: none;
  height: 100%;
  padding: 0;
  clear: both;
  overflow: hidden;
}
/* line 58, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav ul.sub-menu li a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}
/* line 65, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu {
  width: 100%;
  max-width: 100%;
  left: 0;
  position: static;
  border: none;
  height: 100%;
  padding: 0;
  clear: both;
  overflow: hidden;
}
/* line 76, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .sub-menu, .bombver.bombnav > li > .megamenu {
  margin-bottom: 15px;
}
/* line 80, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megamenu-title {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}
/* line 87, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu ul li a, .bombver.bombnav li > .megamenu.h-menu ul li a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}
/* line 93, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu .post-menu {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}
/* line 99, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megalist li a, .bombver.bombnav.no-menu > a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  text-transform: uppercase;
}
/* line 105, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > ul.sub-menu > li a {
  padding-left: 40px;
  padding-right: 40px;
}
/* line 110, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megamenu-title {
  padding-left: 40px;
  padding-right: 40px;
}
/* line 115, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .post-menu .entry-image, .bombver.bombnav > li > .megamenu .post-menu .entry-title {
  padding-left: 40px;
  padding-right: 40px;
}
/* line 122, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu.h-menu ul li a, .bombver.bombnav > li > .megamenu .megalist li a, .bombver.bombnav.no-menu > a {
  padding-left: 40px;
  padding-right: 40px;
}
/* line 127, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu ul li a {
  padding-left: 55px;
  padding-right: 40px;
}
/* line 132, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > ul.sub-menu > li > ul.sub-menu > li a {
  padding-left: 55px;
  padding-right: 40px;
}
/* line 136, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li a {
  padding-left: 70px;
  padding-right: 40px;
}
/* line 142, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .row {
  width: inherit;
}
/* line 145, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .row-inner {
  margin: 0;
}
/* line 148, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .row [class*="grid"] {
  float: left;
  display: inline-block;
  width: 100%;
  margin-left: 0;
  padding: 0;
}
/* line 155, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megamenu-title {
  width: 100%;
  float: left;
  margin: 0;
}
/* line 156, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megamenu-title a {
  padding: 0;
  width: 100%;
  float: left;
  margin: 0;
}
/* line 166, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu.h-menu ul {
  text-align: left;
}
/* line 172, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu.h-menu ul li {
  float: left;
  padding: 0;
  width: 100%;
}
/* line 177, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu.h-menu ul li {
  display: inline-block;
}
/* line 179, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav li > .megamenu.h-menu ul li a {
  float: left;
}
/* line 185, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megaposts, .bombver.bombnav > li > .megamenu .megaposts-full, .bombver.bombnav > li > .megamenu .megalist {
  float: left;
  padding: 0;
  width: 100%;
}
/* line 192, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .post-menu {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 196, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.bombver.bombnav > li > .megamenu .megalist li a {
  width: 100%;
  line-height: inherit;
}

/* line 203, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside {
  border-top: 1px solid #3c3c3c;
  padding-top: 30px;
  max-width: 300px;
}
/* line 209, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .other li a {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-size: 15px;
}
/* line 216, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .social {
  border-top: 1px solid #3c3c3c;
  padding-top: 20px;
  padding-bottom: 0;
  margin-left: 0;
  padding-left: 25px;
}
/* line 222, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .social a {
  margin-right: 5px;
}
/* line 225, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .social i {
  font-size: 1.5em;
}
/* line 229, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits {
  border-top: 1px solid #3c3c3c;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-left: 0;
  padding-left: 25px;
}
/* line 235, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits span.gaznet {
  font-size: 13px;
  float: left;
  position: relative;
  width: 100%;
}
/* line 240, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits span.gaznet .logogazza {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  width: 113px;
  height: 17px;
  display: inline-block;
  text-indent: -5000px;
  background-position: 0 0;
  background-size: 185px;
  opacity: 0.7;
  margin-top: 0px;
  position: relative;
  line-height: 19px;
  margin-left: 5px;
}
/* line 255, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits .privacy {
  clear: both;
  float: left;
  position: relative;
  width: 100%;
  margin-top: 30px;
}
/* line 261, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits .privacy .link {
  clear: both;
  float: left;
  position: relative;
  width: 100%;
  font-size: 13px;
}
/* line 268, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.footerside .credits .privacy .copy {
  clear: both;
  float: left;
  position: relative;
  width: 100%;
  font-size: 13px;
  color: #999;
}

/* line 280, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.topnav.bombnav {
  margin-left: 0;
}
/* line 282, ../scss/contents/3.0-header/_3.6-vertical-menu.scss */
.topnav.bombnav > li > a {
  font-size: 24px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
}

/**
 * 3.7 Slidebar
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/3.0-header/_3.7-slidebar.scss */
html.sb-scroll-lock.sb-active:not(.sb-static) {
  overflow: hidden;
}

/* line 10, ../scss/contents/3.0-header/_3.7-slidebar.scss */
#sb-site, .sb-site-container {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/* line 20, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slidebar {
  height: 100%;
  position: absolute;
  z-index: 0;
  display: none;
}
/* line 26, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slidebar.main-menu-tog {
  background-color: #333333;
  border-top: 1px solid #3c3c3c;
  width: 300px;
  color: #fff;
}
/* line 31, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slidebar.main-menu-tog a {
  color: #fff;
}

/* line 37, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-left {
  left: 0;
}

/* line 41, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-right {
  right: 0;
}

/* line 45, ../scss/contents/3.0-header/_3.7-slidebar.scss */
html.sb-static .sb-slidebar {
  position: absolute;
}

/* line 50, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slidebar.sb-static {
  position: absolute;
}
/* line 53, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slidebar.sb-active {
  display: block;
}

/* line 58, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-style-overlay {
  z-index: 9999;
}

/* line 62, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-momentum-scrolling {
  -webkit-overflow-scrolling: touch;
}

/* line 66, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-slide, #sb-site, .sb-site-container, .sb-slidebar {
  -webkit-transition: -webkit-transform 400ms ease;
  -moz-transition: -moz-transform 400ms ease;
  -o-transition: -o-transform 400ms ease;
  transition: transform 400ms ease;
  -webkit-transition-property: -webkit-transform, left, right;
}

/* line 75, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.sb-hide {
  display: none;
}

/* line 79, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.bar-close {
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
  margin-top: 20px;
}
/* line 86, ../scss/contents/3.0-header/_3.7-slidebar.scss */
.bar-close i {
  background: #292929;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

/**
 * 3.8 Top Header
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap a {
  color: #eee;
}

/* line 9, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap,
.top-wrap .boxed {
  background: #222 !important;
  color: #eee;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 18, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap .boxed {
  line-height: 44px;
}

/* line 22, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap.gazzglobal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
}
/* line 28, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap.gazzglobal.sticky {
  position: fixed;
}
@media only screen and (max-width: 767px) {
  /* line 31, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-wrap.gazzglobal.gazzglobalaffiliato {
    display: none;
  }
}

/* line 38, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

/* line 45, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-wrap ul li {
  display: inline-block;
  float: left;
  margin: 0;
  padding: 0;
}

/* line 52, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-menu ul li {
  margin-right: 20px;
}

/* line 56, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-time i {
  margin-right: 7px;
  font-size: 16px;
}

/* line 62, ../scss/contents/3.0-header/_3.8-top-header.scss */
body.skinGazzaNet .top-wrap {
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  /* line 62, ../scss/contents/3.0-header/_3.8-top-header.scss */
  body.skinGazzaNet .top-wrap {
    width: 320px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 62, ../scss/contents/3.0-header/_3.8-top-header.scss */
  body.skinGazzaNet .top-wrap {
    width: 768px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 62, ../scss/contents/3.0-header/_3.8-top-header.scss */
  body.skinGazzaNet .top-wrap {
    width: 980px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 62, ../scss/contents/3.0-header/_3.8-top-header.scss */
  body.skinGazzaNet .top-wrap {
    width: 1140px;
  }
}
/* line 82, ../scss/contents/3.0-header/_3.8-top-header.scss */
body.skinGazzaNet .layout-wrap {
  top: 0;
}
/* line 85, ../scss/contents/3.0-header/_3.8-top-header.scss */
body.skinGazzaNet .top-gazzanaviation li.menuglobalnavigationcontroller, body.skinGazzaNet .top-gazzanaviation li.search {
  border-left: 0;
  border-right: 0;
}

/* line 118, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation {
  margin: 0;
  height: 100%;
}
/* line 121, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li {
  height: 100%;
  position: relative;
  float: left;
}
/* line 125, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.by {
  margin-left: 10px;
  padding-top: 3px;
  color: #ccc;
  font-family: "Roboto Slab", serif;
  font-size: 12px;
}
/* line 131, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.by .logogazza {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  width: 113px;
  height: 17px;
  display: inline-block;
  text-indent: -5000px;
  background-position: 0 0;
  background-size: 185px;
  opacity: 0.7;
  margin-top: 0px;
  position: relative;
  line-height: 19px;
}
/* line 143, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.by .logogazza:hover {
  opacity: 1;
}
/* line 148, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.logonet {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  margin-left: 15px;
}
/* line 149, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.logonet.padre {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 149, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-gazzanaviation li.logonet.padre {
    display: inline-block !important;
  }
}
/* line 155, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.logonet.padre.autoshow {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  /* line 155, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-gazzanaviation li.logonet.padre.autoshow {
    display: inline-block !important;
  }
}
/* line 162, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.logonet a.logo {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  background-position: 0 -54px;
  background-size: 257px auto;
  display: block;
  height: 36px;
  width: 89px;
}
/* line 175, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.menuglobalnavigationcontroller, .top-gazzanaviation li.search {
  margin-top: 0;
  width: 50px;
  height: 100%;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
}
/* line 182, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.menuglobalnavigationcontroller i, .top-gazzanaviation li.search i {
  padding-left: 15px;
  padding-top: 10px;
  font-size: 1.6em;
}
/* line 188, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login {
  margin-right: 20px;
  padding-top: 5px;
}
/* line 191, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login.hide {
  visibility: hidden;
}
/* line 195, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login span a.hidelogged, .top-gazzanaviation li.login span a.hidenotlog {
  display: none;
}
/* line 201, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login span a.divide.hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 188, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-gazzanaviation li.login {
    padding-right: 15px;
    margin-right: 0;
    padding-left: 15px;
    border-left: 1px solid #444;
  }
  /* line 211, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-gazzanaviation li.login i {
    color: #fff;
  }
}
/* line 216, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login span {
  font-size: 14px;
  color: #fff;
  float: left;
}
/* line 221, ../scss/contents/3.0-header/_3.8-top-header.scss */
.top-gazzanaviation li.login i {
  margin-right: 15px;
  font-size: 1.2em;
  margin-top: 12px;
  color: #919191;
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 221, ../scss/contents/3.0-header/_3.8-top-header.scss */
  .top-gazzanaviation li.login i {
    margin-right: 0;
  }
}

/**
* 4.0 Login, Register, and Subscribe
* -----------------------------------------------------------------------------
*/
/* line 6, ../scss/contents/4.0-login/_index.scss */
.modal {
  display: none;
  width: 380px;
  background: #fff;
  padding: 0;
}
/* line 11, ../scss/contents/4.0-login/_index.scss */
.modal a.close-modal {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  font-size: 18px;
  color: #bebebe;
}

/* line 21, ../scss/contents/4.0-login/_index.scss */
.modalhide {
  display: none;
}

/* line 24, ../scss/contents/4.0-login/_index.scss */
.rd_form, .subscribe_form, .registration_form, .privacy_form {
  position: relative;
}

/* line 28, ../scss/contents/4.0-login/_index.scss */
.login-loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("/wp-content/themes/gazzanet/images/preloader.gif?v=20201209103731");
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}

/* line 40, ../scss/contents/4.0-login/_index.scss */
#search-modal {
  width: 640px;
}
/* line 43, ../scss/contents/4.0-login/_index.scss */
#search-modal a.close-modal {
  top: 13px;
}
/* line 47, ../scss/contents/4.0-login/_index.scss */
#search-modal .form-search input {
  height: 60px;
  border: 0;
  border-radius: 5px;
}
/* line 52, ../scss/contents/4.0-login/_index.scss */
#search-modal .form-search input, #search-modal .form-search textarea {
  padding: 5px 45px 5px 15px !important;
  color: #333;
  font-size: 18px;
}
/* line 58, ../scss/contents/4.0-login/_index.scss */
#search-modal i.fa-remove {
  display: none;
}

/* line 64, ../scss/contents/4.0-login/_index.scss */
.form .header {
  margin: 0;
  width: 100%;
  overflow: hidden;
  height: 75px;
  text-align: center;
  border-top-width: 6px;
  border-top-style: solid;
}
/* line 72, ../scss/contents/4.0-login/_index.scss */
.form .header h4 {
  display: inline-block;
  font-weight: bold;
  font-size: 28px;
  line-height: 95px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
/* line 81, ../scss/contents/4.0-login/_index.scss */
.form .header h4 a {
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 28px;
}
/* line 86, ../scss/contents/4.0-login/_index.scss */
.form .header h4 a.generalBorder {
  border-bottom: 4px solid;
}
/* line 93, ../scss/contents/4.0-login/_index.scss */
.form .section {
  padding: 30px 50px;
  margin: 0;
  width: 100%;
  background-color: #FFF;
  color: #444;
  overflow: hidden;
}
/* line 101, ../scss/contents/4.0-login/_index.scss */
.form .footer {
  padding: 15px 20px;
  margin: 0;
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #111;
}
/* line 108, ../scss/contents/4.0-login/_index.scss */
.form .footer a {
  font-style: normal;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
  background: none;
  display: block;
}
/* line 118, ../scss/contents/4.0-login/_index.scss */
.form .section .input-group {
  position: relative;
  display: block;
}
/* line 122, ../scss/contents/4.0-login/_index.scss */
.form .section .input-group input[type="text"], .form .section .input-group input[type="password"], .form .section .input-group input[type="email"] {
  border: 1px solid #ddd;
}
/* line 126, ../scss/contents/4.0-login/_index.scss */
.form .section .input-group label i {
  position: absolute;
  cursor: pointer;
  top: 13px;
  right: 15px;
  display: block;
  color: #ccc;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  vertical-align: middle;
}
/* line 139, ../scss/contents/4.0-login/_index.scss */
.form .section .social-group {
  position: relative;
  display: block;
  float: left;
  margin-top: 10px;
}
/* line 145, ../scss/contents/4.0-login/_index.scss */
.form .section .half-left {
  width: 45%;
}
/* line 147, ../scss/contents/4.0-login/_index.scss */
.form .section .half-left.checkbox {
  padding-top: 15px;
}
/* line 151, ../scss/contents/4.0-login/_index.scss */
.form .section .half-right {
  width: 45%;
}
/* line 153, ../scss/contents/4.0-login/_index.scss */
.form .section .half-right.buttons {
  padding-top: 10px;
}
/* line 157, ../scss/contents/4.0-login/_index.scss */
.form .section i {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #666;
  margin-right: 5px;
  vertical-align: middle;
}
/* line 166, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox input[type="checkbox"] {
  position: absolute;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  margin: 0;
  padding: 0;
}
/* line 177, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #666;
  margin: 0;
  padding: 0;
}
/* line 185, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox a:hover {
  color: #999;
}
/* line 190, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox input[type="checkbox"] + label {
  font-style: normal;
  font-weight: 400;
  font-size: 90%;
  color: #666;
  margin: 0;
  padding: 0;
}
@inlcude small {
  /* line 190, ../scss/contents/4.0-login/_index.scss */
  .form .section .checkbox input[type="checkbox"] + label {
    font-size: 80%;
  }
}
/* line 200, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin: 0 10px 0 0;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/gazzanet/images/sprite.png?v=20201209103731");
  background-position: 0 -27px;
  cursor: pointer;
}
/* line 212, ../scss/contents/4.0-login/_index.scss */
.form .section .checkbox input[type="checkbox"]:checked + label span {
  background-image: url("/wp-content/themes/gazzanet/images/sprite.png?v=20201209103731");
  background-position: 0 0;
}

/* line 221, ../scss/contents/4.0-login/_index.scss */
.modal button, .woocommerce .modal button.button, .woocommerce-page .modal button.button, .modal button:hover, .woocommerce .modal button.button:hover, .woocommerce-page .modal button.button:hover {
  display: inline-block;
  position: relative;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  border: none;
  outline: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px 25px;
  margin: 10px 0 5px 0;
  width: auto;
  font-size: 15px;
}

/* line 243, ../scss/contents/4.0-login/_index.scss */
.subscribe_form button, #rd_register_form button, .woocommerce .subscribe_form button.button, .woocommerce-page .subscribe_form button.button, .woocommerce #rd_register_form button.button, .woocommerce-page #rd_register_form button.button {
  width: 100% !important;
}

/* line 248, ../scss/contents/4.0-login/_index.scss */
#rd_login_form button.button {
  margin: 0;
}
/* line 250, ../scss/contents/4.0-login/_index.scss */
#rd_login_form button.button:hover {
  opacity: 0.9;
}
/* line 254, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button {
  border-radius: 2px;
  display: block;
  float: left;
  height: 45px;
  margin-bottom: 10px;
  position: relative;
  width: 130px;
  text-align: center;
  padding-top: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  /* line 254, ../scss/contents/4.0-login/_index.scss */
  #rd_login_form .social-button {
    width: 100px;
  }
}
/* line 268, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button.fb {
  background-color: #3b5997;
  margin-right: 20px;
}
/* line 272, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button.gp {
  background-color: #cf3e2d;
}
/* line 275, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button:hover {
  opacity: 0.9;
}
/* line 278, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button.disactive {
  opacity: 0.1;
  cursor: not-allowed;
}
/* line 281, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button.disactive:hover {
  opacity: 0.1;
  cursor: not-allowed;
}
/* line 287, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button a {
  width: 100%;
  position: relative;
  display: block;
  float: left;
  height: 100%;
}
/* line 293, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button a i {
  color: #fff;
  font-size: 1.3em;
  margin-right: 5px;
}
/* line 298, ../scss/contents/4.0-login/_index.scss */
#rd_login_form .social-button a span {
  font-size: 14px;
  color: #fff;
}

/* line 309, ../scss/contents/4.0-login/_index.scss */
.modal input, .modal textarea {
  padding: 10px 45px 10px 12px !important;
  white-space: inherit;
}

/* line 315, ../scss/contents/4.0-login/_index.scss */
.button-reset {
  background-color: #191f2d;
}

/* line 320, ../scss/contents/4.0-login/_index.scss */
ul.errors, ul.messages {
  margin: 0;
}
/* line 323, ../scss/contents/4.0-login/_index.scss */
ul.errors li, ul.messages li {
  list-style: none;
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
}
/* line 328, ../scss/contents/4.0-login/_index.scss */
ul.errors li {
  border: 1px solid #b94a48 !important;
  color: #b94a48 !important;
  border-left-width: 3px;
}
/* line 332, ../scss/contents/4.0-login/_index.scss */
ul.errors li a {
  color: #b94a48 !important;
  border-bottom: 1px dotted #b94a48 !important;
}
/* line 337, ../scss/contents/4.0-login/_index.scss */
ul.messages li {
  border: 1px solid #468847 !important;
  color: #468847 !important;
  border-left-width: 3px;
}
/* line 341, ../scss/contents/4.0-login/_index.scss */
ul.messages li a {
  color: #468847 !important;
  border-bottom: 1px dotted #468847 !important;
}

/* line 350, ../scss/contents/4.0-login/_index.scss */
form.form_gazzanet_confermareset .input-group input.ok {
  border-bottom: 2px solid;
  border-bottom-color: #509B1C !important;
}
/* line 355, ../scss/contents/4.0-login/_index.scss */
form.form_gazzanet_confermareset .input-group input.ko {
  border-bottom: 2px solid;
  border-bottom-color: #FE0C00  !important;
}
/* line 359, ../scss/contents/4.0-login/_index.scss */
form.form_gazzanet_confermareset .input-group label i.ok {
  color: #509B1C;
}
/* line 362, ../scss/contents/4.0-login/_index.scss */
form.form_gazzanet_confermareset .input-group label i.ko {
  color: #FE0C00;
}

 /**
 * 6.0 Sidebar
 * -----------------------------------------------------------------------------
*/
/* line 1, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widgettitle {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 25px !important;
  text-transform: uppercase;
}

/* line 7, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.entry-content-text .widgettitle,
.comment-body-text .widgettitle,
.entry-content-text .big-title,
.comment-body-text .big-title {
  margin-top: 0;
}

/* line 13, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.havenav .main-grid .block:first-child .widgettitle,
.havenav .main-grid .widget:first-child .widgettitle {
  margin-bottom: 37px !important;
}

/* line 17, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.sidebar .widget {
  margin-bottom: 60px;
}

/* line 20, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.right-sidebar .widget:last-child {
  margin-bottom: 0;
}

/* line 23, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.sidebar .widget ul > li,
.lists-posts ul > li {
  margin: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.28;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

/* line 32, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.sidebar .widget ul > li ul {
  margin-top: 10px;
  margin-bottom: -10px;
}

/* line 36, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.sidebar .widget ul > li ul li {
  border-bottom: none;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  margin-left: 20px;
  border-top-width: 2px;
  border-top-style: solid;
}

/* line 45, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.sidebar .widget ul li:last-child {
  margin-bottom: 0;
}

/* line 54, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.left-sidebar input[type="text"],
.left-sidebar input[type="password"],
.left-sidebar textarea {
  border-color: #fff;
}

/* line 61, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.scrollside-wrap {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
/* line 67, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.scrollside-wrap .scrollside {
  position: fixed;
  overflow-y: scroll;
  -webkit-transform: translateY(50px);
  -webkit-overflow-scrolling: touch;
}
/* line 72, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.scrollside-wrap .scrollside.stop {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(0);
}
/* line 78, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.scrollside-wrap .scrollside nav {
  max-width: 300px;
}
/* line 83, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.scrollside-wrap .scrollside::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  /* make scrollbar transparent */
}

/* line 90, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.textwidget img {
  margin: auto;
}

/* line 95, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche {
  border: 1px solid #ebebeb;
}
/* line 97, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .widgettitle {
  text-align: center;
  padding: 15px;
  text-transform: none;
  margin-bottom: 0 !important;
  font-size: 23px;
}
/* line 104, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .textwidget {
  padding: 15px;
}
/* line 106, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .textwidget.last {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-top: 0;
}
/* line 112, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .textwidget img {
  margin: auto;
}
/* line 116, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .vaiarubrica {
  color: #fff;
  text-transform: uppercase;
  padding: 5px 10px;
  text-align: center;
  border-radius: 3px;
  float: right;
  margin-top: 15px;
}
/* line 124, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .vaiarubrica:hover {
  color: #fff !important;
}
/* line 128, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .left-side {
  float: left;
  height: 63px;
  margin-top: 5px;
  margin-right: 20px;
  width: 92px;
  overflow: hidden;
}
/* line 136, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .right-side {
  position: relative;
  display: block;
  overflow: hidden;
  font-family: "Roboto Slab",serif;
  font-size: 13px;
  line-height: 16px;
  text-align: right;
}
/* line 145, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .widget_rubriche-title {
  margin-bottom: 5px;
}
/* line 148, ../scss/contents/6.0-sidebar/_6.0-sidebar.scss */
.widget_rubriche .widget_rubriche-data {
  margin-bottom: 5px;
}

/**
 * 6.1 Default Widget
 * -----------------------------------------------------------------------------
 */
/* line 7, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.sidebar .widget_recent_entries .post-date, .sidebar .widget_rss .rss-date {
  color: #999;
  font-size: 90%;
}

/* line 13, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.tagcloud a {
  padding: 1px;
  display: inline-block;
  margin: 0 2px 0px 0;
  border: none;
}

/* line 22, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_rss .rsswidget img {
  float: left;
  margin-top: 18px;
  margin-right: 10px;
}
/* line 27, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_rss .rssSummary {
  margin-top: 10px;
}

/* line 32, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar table#wp-calendar caption {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left;
}

/* line 38, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.footer_widget.widget_calendar table#wp-calendar caption {
  padding-top: 0 !important;
}

/* line 43, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar table#wp-calendar {
  width: 100%;
}
/* line 46, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar tbody .pad {
  background-color: transparent;
  border: 0;
}
/* line 51, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar table td {
  border: none;
}
/* line 54, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar table#wp-calendar > tbody > tr > td > a:hover {
  background: none;
}
/* line 58, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar thead > tr > th, .widget_calendar tbody > tr > td {
  width: 14.2857%;
  padding: 5px 0 6px 0;
  text-align: center;
  border-width: 2px;
  border-style: solid;
}
/* line 65, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar tfoot > tr > td > a {
  height: 20px;
}

/* line 71, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
tfoot > tr > td > a:link, tfoot > tr > td > a:hover, tfoot > tr > td > a:visited, tfoot > tr > td > a:active {
  height: 20px;
}

/* line 77, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar tfoot > tr > td#prev {
  width: 58px;
  height: 20px;
  text-align: left;
}
/* line 82, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_calendar tfoot > tr > td#next {
  width: 58px;
  height: 20px;
  text-align: right;
  border: none;
}

/* line 90, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.form-search {
  position: relative;
}
/* line 92, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.form-search input {
  background: transparent;
  color: #999;
  margin: 0;
}
/* line 97, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.form-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 18px;
  margin-top: -9px;
  color: #ccc;
}

/* line 107, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.sidesearch {
  background-color: #3c3c3c;
  border-radius: 4px;
  display: block;
  margin: 20px;
  max-width: 260px;
  padding: 5px 0;
  position: relative;
  width: 100%;
}
/* line 108, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.sidesearch .form-search input {
  border: none;
  color: #ccc;
}
/* line 120, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.sidesearch input {
  padding-left: 15px;
  padding-right: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
  text-transform: uppercase;
}

/* line 129, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_search .form-search {
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
/* line 132, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_search .form-search input {
  border: none;
  padding-left: 0;
}
/* line 136, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.widget_search .form-search i {
  right: 0;
}

/* line 141, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.main-menu-tog .menu-reg-log.righttog {
  float: none;
  border-top: 7px solid #292929;
  padding: 10px 0;
}
/* line 145, ../scss/contents/6.0-sidebar/_6.1-default-widget.scss */
.main-menu-tog .menu-reg-log.righttog a {
  line-height: 1;
  display: block;
  padding: 12px 40px 12px 25px;
  font-size: 20px;
  text-transform: uppercase;
  color: #ccc;
}

/**
 * 6.2 Custom Widget
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.rd-twitter,
.rd-twitter li {
  list-style: none !important;
  margin: 0;
}

/* line 10, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.rd-twitter li .box-twitter {
  display: inline;
}

/* line 13, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.rd-twitter li i {
  color: #55ACEE;
  font-size: 24px;
  line-height: 34px;
  margin-right: 5px;
  vertical-align: middle;
}

/* line 20, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.newsletter-text {
  margin-bottom: 20px;
}

/* line 23, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.newsletter input[type="submit"],
.newsletter button {
  width: 100%;
}

/* line 27, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.ban-125 {
  overflow: hidden;
  margin-bottom: -25px;
}

/* line 31, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.ban-125 .ban-inner {
  display: inline-block;
  overflow: hidden;
  margin: 0 24px 24px 0;
  width: 125px;
  float: left;
}

/* line 38, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .ban-125 {
  text-align: center;
}

/* line 41, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .ban-125 .ban-inner {
  float: none;
  margin-right: 0;
}

/* line 45, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-widget {
  margin-bottom: -10px;
}

/* line 48, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-widget .social a {
  display: inline-block;
  font-size: 18px;
  border-width: 2px;
  border-style: solid;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin: 0 5px 10px 0;
}

/* line 62, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counters {
  margin-bottom: -15px;
}

/* line 65, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter {
  overflow: hidden;
  margin-bottom: 15px;
}

/* line 69, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter > a {
  font-size: 32px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: inline-block;
}

/* line 82, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter .counter-desc {
  margin-top: 3px;
  padding-left: 75px;
}

/* line 86, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter .counter-desc span {
  display: block;
}

/* line 89, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter .counter-desc .counter {
  font-size: 20px;
}

/* line 92, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.social-counter .counter-desc .desc {
  margin-top: 2px;
}

/* line 95, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.excerpt-cont {
  font-family: arial;
}

/* line 98, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlists {
  margin-bottom: -20px;
}

/* line 101, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlist {
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 105, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlist-date {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}

/* line 110, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlist-name {
  color: #999;
  text-transform: capitalize;
  display: inline-block;
}

/* line 115, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlist-ava img {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

/* line 120, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.comlist-desc {
  padding-left: 85px;
}

/* line 123, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists {
  margin-bottom: -40px;
}

/* line 126, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-list-wrap {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 40px;
}

/* line 132, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-list {
  width: 120px;
  text-align: center;
}

/* line 136, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-avatar a {
  display: inline-block;
}

/* line 139, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-avatar img {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  padding: 0;
}

/* line 145, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-name,
.user-lists .user-position {
  text-transform: capitalize;
}

/* line 149, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-name {
  line-height: 1.125;
  margin-top: 18px;
}

/* line 153, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.user-lists .user-position {
  line-height: 1.3;
  margin-top: 13px;
  font-size: 14px;
}

/* line 158, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .block-nine ul {
  margin-right: -28px;
}

/* line 161, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .block-nine ul li {
  padding-right: 28px;
}

/* line 164, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .block-nine ul li.icon-list {
  padding-right: 48px;
}

/* line 167, ../scss/contents/6.0-sidebar/_6.2-custom-widget.scss */
.left-sidebar .block-nine ul li .thumb-icon-list {
  right: 28px;
}

/**
 * 6.3 Gazza Widget
 * -----------------------------------------------------------------------------
 */
/* line 7, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum {
  border: 1px solid #ebebeb;
  border-radius: 3px;
  float: left;
  position: relative;
  display: block;
  background-color: #fff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 7, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 7, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum {
    width: 300px;
    margin-left: -10px;
  }
}
/* line 22, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum header {
  width: 100%;
  height: 50px;
  padding-top: 10px;
  border-bottom: 3px solid;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  float: left;
  position: relative;
  display: block;
}
/* line 33, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum header.white {
  background-color: #fff;
  color: #222222;
}
/* line 37, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum header.black {
  background-color: #222222;
  color: #fff;
}
/* line 42, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
  width: 100%;
  float: left;
  position: relative;
  display: block;
  text-align: center;
}
/* line 51, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container p {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 15px;
  float: left;
}
/* line 59, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container form {
  margin-bottom: 15px;
  float: left;
  width: 100%;
}
/* line 63, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container form input {
  float: left;
  position: relative;
  display: block;
  width: 185px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  border-width: 1px;
}
@media only screen and (max-width: 767px) {
  /* line 63, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum .container form input {
    width: 175px;
  }
}
/* line 78, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container form input[type="email"] {
  padding-left: 5px;
}
/* line 81, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container form input[type="submit"] {
  width: 60px;
  border-radius: 0 3px 3px 0;
}
/* line 84, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container form input[type="submit"].large {
  width: 100%;
  border-radius: 3px;
  cursor: default;
}
/* line 91, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container span {
  text-align: center;
}
/* line 93, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum .container span.tiny {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  color: #999999;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 103, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.newsletter .container p {
    float: left;
    width: 100%;
  }
  /* line 108, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.newsletter .container form {
    margin: 0 auto;
    width: 100%;
  }
  /* line 111, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.newsletter .container form input[type="email"] {
    margin-left: 120px;
    width: 375px;
  }
  /* line 116, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.newsletter .container span.tiny {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 127, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.newsletter .container form {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 135, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti div.container, .widget-side-colum.piu-commentati div.container, .widget-side-colum.piu-letti-gazzetta div.container, .widget-side-colum.piu-condivisi div.container {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 141, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti .container ul li a h5, .widget-side-colum.piu-commentati .container ul li a h5, .widget-side-colum.piu-letti-gazzetta .container ul li a h5, .widget-side-colum.piu-condivisi .container ul li a h5 {
    width: 215px;
  }
}
/* line 147, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li, .widget-side-colum.piu-commentati ul li, .widget-side-colum.piu-letti-gazzetta ul li, .widget-side-colum.piu-condivisi ul li {
  float: left;
  position: relative;
  display: block;
  margin-bottom: 0;
  width: 100%;
}
/* line 153, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li:first-child, .widget-side-colum.piu-commentati ul li:first-child, .widget-side-colum.piu-letti-gazzetta ul li:first-child, .widget-side-colum.piu-condivisi ul li:first-child {
  margin-top: 5px;
}
/* line 156, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li:last-child, .widget-side-colum.piu-commentati ul li:last-child, .widget-side-colum.piu-letti-gazzetta ul li:last-child, .widget-side-colum.piu-condivisi ul li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 147, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li, .widget-side-colum.piu-commentati ul li, .widget-side-colum.piu-letti-gazzetta ul li, .widget-side-colum.piu-condivisi ul li {
    width: 48%;
  }
  /* line 161, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li:nth-child(odd), .widget-side-colum.piu-commentati ul li:nth-child(odd), .widget-side-colum.piu-letti-gazzetta ul li:nth-child(odd), .widget-side-colum.piu-condivisi ul li:nth-child(odd) {
    margin-right: 4%;
  }
  /* line 165, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li a.news-side h5, .widget-side-colum.piu-commentati ul li a.news-side h5, .widget-side-colum.piu-letti-gazzetta ul li a.news-side h5, .widget-side-colum.piu-condivisi ul li a.news-side h5 {
    width: 235px !important;
  }
}
/* line 170, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li span.line, .widget-side-colum.piu-letti ul li span.number, .widget-side-colum.piu-commentati ul li span.line, .widget-side-colum.piu-commentati ul li span.number, .widget-side-colum.piu-letti-gazzetta ul li span.line, .widget-side-colum.piu-letti-gazzetta ul li span.number, .widget-side-colum.piu-condivisi ul li span.line, .widget-side-colum.piu-condivisi ul li span.number {
  float: left;
  position: relative;
  display: block;
  padding-left: 0;
}
/* line 176, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li span.line, .widget-side-colum.piu-commentati ul li span.line, .widget-side-colum.piu-letti-gazzetta ul li span.line, .widget-side-colum.piu-condivisi ul li span.line {
  border-top: 1px solid #d2d2d2;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 176, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li span.line, .widget-side-colum.piu-commentati ul li span.line, .widget-side-colum.piu-letti-gazzetta ul li span.line, .widget-side-colum.piu-condivisi ul li span.line {
    width: 41.66667%;
  }
}
/* line 183, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li span.number, .widget-side-colum.piu-commentati ul li span.number, .widget-side-colum.piu-letti-gazzetta ul li span.number, .widget-side-colum.piu-condivisi ul li span.number {
  font-family: "Roboto Slab", serif;
  font-size: 27px;
  color: #d2d2d2;
}
@media only screen and (max-width: 767px) {
  /* line 183, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li span.number, .widget-side-colum.piu-commentati ul li span.number, .widget-side-colum.piu-letti-gazzetta ul li span.number, .widget-side-colum.piu-condivisi ul li span.number {
    width: 16.66667%;
  }
}
/* line 191, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li a.news-side, .widget-side-colum.piu-commentati ul li a.news-side, .widget-side-colum.piu-letti-gazzetta ul li a.news-side, .widget-side-colum.piu-condivisi ul li a.news-side {
  float: left;
  position: relative;
  display: block;
  width: 100%;
}
/* line 196, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li a.news-side img, .widget-side-colum.piu-commentati ul li a.news-side img, .widget-side-colum.piu-letti-gazzetta ul li a.news-side img, .widget-side-colum.piu-condivisi ul li a.news-side img {
  float: left;
  position: relative;
  display: block;
  width: 60px;
  margin-right: 15px;
  margin-top: 5px;
}
/* line 204, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li a.news-side h5, .widget-side-colum.piu-commentati ul li a.news-side h5, .widget-side-colum.piu-letti-gazzetta ul li a.news-side h5, .widget-side-colum.piu-condivisi ul li a.news-side h5 {
  position: relative;
  display: block;
  overflow: hidden;
  font-family: "Roboto Slab", serif;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  /* line 204, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.piu-letti ul li a.news-side h5, .widget-side-colum.piu-commentati ul li a.news-side h5, .widget-side-colum.piu-letti-gazzetta ul li a.news-side h5, .widget-side-colum.piu-condivisi ul li a.news-side h5 {
    width: 155px;
    font-size: 12px;
  }
}
/* line 219, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.piu-letti ul li a.news-side time, .widget-side-colum.piu-commentati ul li a.news-side time, .widget-side-colum.piu-letti-gazzetta ul li a.news-side time, .widget-side-colum.piu-condivisi ul li a.news-side time {
  float: left;
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  margin-top: 7px;
  color: #666;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 234, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites div.container, .widget-side-colum.latest-news-category div.container {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 240, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites .container ul li a h5, .widget-side-colum.latest-news-category .container ul li a h5 {
    width: 215px;
  }
}
/* line 245, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites div.container, .widget-side-colum.latest-news-category div.container {
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 250, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul, .widget-side-colum.latest-news-category ul {
  max-height: 430px;
  overflow: auto;
}
/* line 254, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li, .widget-side-colum.latest-news-category ul li {
  float: left;
  position: relative;
  display: block;
  margin-bottom: 0;
  width: 95%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 254, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites ul li, .widget-side-colum.latest-news-category ul li {
    width: 48%;
  }
  /* line 263, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites ul li:nth-child(odd), .widget-side-colum.latest-news-category ul li:nth-child(odd) {
    margin-right: 4%;
  }
  /* line 267, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites ul li a.news-side h5, .widget-side-colum.latest-news-category ul li a.news-side h5 {
    width: 235px !important;
  }
}
/* line 272, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li a.news-side, .widget-side-colum.latest-news-category ul li a.news-side {
  float: left;
  position: relative;
  display: block;
  width: 100%;
}
/* line 277, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li a.news-side time, .widget-side-colum.latest-news-category ul li a.news-side time {
  float: left;
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  margin-top: 17px;
  color: #666;
  width: 100%;
  text-align: left;
}
/* line 288, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li a.news-side h5, .widget-side-colum.latest-news-category ul li a.news-side h5 {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  font-family: "Roboto Slab", serif;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  margin-top: 2px;
}
@media only screen and (max-width: 767px) {
  /* line 288, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites ul li a.news-side h5, .widget-side-colum.latest-news-category ul li a.news-side h5 {
    width: 162px;
    font-size: 12px;
  }
}
/* line 305, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li:first-child, .widget-side-colum.latest-news-category ul li:first-child {
  margin-top: 5px;
}
/* line 308, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li:first-child a.news-side time, .widget-side-colum.latest-news-category ul li:first-child a.news-side time {
  margin-top: 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 308, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.latest-top-sites ul li:first-child a.news-side time, .widget-side-colum.latest-news-category ul li:first-child a.news-side time {
    margin-top: 17px !important;
  }
}
/* line 316, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites ul li:last-child, .widget-side-colum.latest-news-category ul li:last-child {
  margin-bottom: 0;
}
/* line 322, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites a.gotoarchivemin, .widget-side-colum.latest-news-category a.gotoarchivemin {
  border-radius: 3px;
  color: #fff;
  float: left;
  font-weight: bold;
  margin-top: 20px;
  padding-bottom: 4px;
  padding-top: 4px;
  text-align: center;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 13px;
}
/* line 334, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites a.gotoarchivemin i, .widget-side-colum.latest-news-category a.gotoarchivemin i {
  margin-left: 5px;
}
/* line 337, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.latest-top-sites a.gotoarchivemin:hover, .widget-side-colum.latest-news-category a.gotoarchivemin:hover {
  color: #fff;
}
/* line 344, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li {
  float: left;
  position: relative;
  display: block;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 15px;
  margin-bottom: 5px;
  width: 100%;
  padding-top: 5px;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 344, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li {
    width: 48%;
  }
  /* line 354, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li:nth-child(odd) {
    margin-right: 4%;
  }
  /* line 357, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li:nth-child(3) {
    border-bottom: none;
  }
  /* line 361, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li a.author-side p {
    width: 255px !important;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 368, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li a.author-side p {
    width: 230px !important;
  }
}
/* line 373, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
/* line 379, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li:first-child {
  margin-top: 10px;
  padding-top: 0;
}
/* line 385, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li .author-info-box {
  overflow: hidden;
}
/* line 388, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li a.author-photo {
  width: 60px;
  margin-right: 10px;
  float: left;
  margin-top: 5px;
}
/* line 394, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li h6 {
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 394, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li h6 {
    width: 173px;
    font-size: 18px;
  }
}
/* line 407, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li p {
  position: relative;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 13px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  /* line 407, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.autori ul li p {
    font-size: 12px;
  }
}
/* line 423, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.autori ul li img {
  /*float: left;
  position: relative;
  display: block;
  overflow: hidden;
  margin-left: 5px;
  width: 60px;*/
  border-radius: 50px;
  border-color: #fff;
}
/* line 438, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top, .widget-side-colum.piu-visti-gazzetta {
  background-color: #222222 !important;
}
/* line 440, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .logo-gazzatv, .widget-side-colum.piu-visti-gazzetta .logo-gazzatv {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/gazzatv-logo.png?v=20201209103731");
  display: inline-block;
  width: 91px;
  height: 25px;
}
/* line 446, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .logo-gazzatv-text, .widget-side-colum.piu-visti-gazzetta .logo-gazzatv-text {
  position: relative;
  top: -5px;
  margin-right: 5px;
}
/* line 452, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container, .widget-side-colum.piu-visti-gazzetta .container {
  padding: 0;
  margin-bottom: 2px;
}
/* line 457, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full, .widget-side-colum.piu-visti-gazzetta .container-full {
  border-bottom: 1px solid #000;
  float: left;
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 457, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container-full, .widget-side-colum.piu-visti-gazzetta .container-full {
    width: 50%;
    border-right: 1px solid #000;
    padding: 1px 0 0 1px;
  }
  /* line 467, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container-full a, .widget-side-colum.piu-visti-gazzetta .container-full a {
    padding-bottom: 0;
  }
  /* line 470, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container-full img, .widget-side-colum.piu-visti-gazzetta .container-full img {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 476, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container-full img, .widget-side-colum.piu-visti-gazzetta .container-full img {
    width: 100%;
  }
}
/* line 480, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full a, .widget-side-colum.piu-visti-gazzetta .container-full a {
  position: relative;
  display: block;
  padding-bottom: 10px;
  padding-bottom: 0;
}
/* line 486, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full a span.circle, .widget-side-colum.piu-visti-gazzetta .container-full a span.circle {
  position: absolute;
  top: 35%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  opacity: 0.9;
}
/* line 496, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full a span.circle i.fa-play, .widget-side-colum.piu-visti-gazzetta .container-full a span.circle i.fa-play {
  color: #fff;
  margin-left: 20px;
  margin-top: 13px;
}
/* line 502, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full a h5, .widget-side-colum.piu-visti-gazzetta .container-full a h5 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  color: #fff;
  margin-top: 15px;
  z-index: 3;
  position: absolute;
  bottom: 10px;
}
/* line 514, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .container-full a time, .widget-side-colum.piu-visti-gazzetta .container-full a time {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #999;
  margin-top: 5px;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 527, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container, .widget-side-colum.piu-visti-gazzetta .container {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  /* line 532, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container ul, .widget-side-colum.piu-visti-gazzetta .container ul {
    padding: 20px;
    padding: 0;
  }
  /* line 535, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container ul li, .widget-side-colum.piu-visti-gazzetta .container ul li {
    width: 100%;
    padding-bottom: 15px;
    border-color: #000;
    width: 50%;
    padding-bottom: 0;
  }
  /* line 543, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container ul li a h5, .widget-side-colum.piu-visti-gazzetta .container ul li a h5 {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 554, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .widget-side-colum.video-top .container ul li a h5, .widget-side-colum.piu-visti-gazzetta .container ul li a h5 {
    width: 235px;
  }
}
/* line 559, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top .gradient, .widget-side-colum.piu-visti-gazzetta .gradient {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  /* Old Browsers */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(left top, left bottom, color-stop(55%, rgba(255, 255, 255, 0)), color-stop(65%, rgba(255, 255, 255, 0.13)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  /* Chrome, Safari4+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* IE 10+ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* W3C */
}
/* line 582, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li, .widget-side-colum.piu-visti-gazzetta ul li {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  float: left;
  position: relative;
  display: block;
  padding-top: 8px;
  height: 114px;
  overflow: hidden;
  width: 50%;
  border: 1px solid #000;
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0;
}
/* line 597, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li:last-child, .widget-side-colum.piu-visti-gazzetta ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 605, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-bottom h5, .widget-side-colum.piu-visti-gazzetta ul li a.video-bottom h5 {
  color: #fff;
  position: absolute;
  font-family: "Roboto Slab", serif;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  bottom: 5px;
  padding: 0 35px 0 5px;
  font-weight: bold;
  z-index: 9;
}
/* line 617, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-bottom span.circle, .widget-side-colum.piu-visti-gazzetta ul li a.video-bottom span.circle {
  float: left;
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  opacity: 1;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 9;
}
/* line 629, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-bottom span.circle i.fa-play, .widget-side-colum.piu-visti-gazzetta ul li a.video-bottom span.circle i.fa-play {
  color: #fff;
  margin-left: 6px;
  margin-top: 5px;
  font-size: 20px;
}
/* line 638, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-side, .widget-side-colum.piu-visti-gazzetta ul li a.video-side {
  float: left;
  position: relative;
  display: block;
  width: 100%;
}
/* line 643, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-side span.circle, .widget-side-colum.piu-visti-gazzetta ul li a.video-side span.circle {
  float: left;
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 20px;
  opacity: 0.9;
}
/* line 652, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-side span.circle i.fa-play, .widget-side-colum.piu-visti-gazzetta ul li a.video-side span.circle i.fa-play {
  color: #fff;
  margin-left: 6px;
  margin-top: 12px;
}
/* line 658, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-side h5, .widget-side-colum.piu-visti-gazzetta ul li a.video-side h5 {
  float: left;
  position: relative;
  display: block;
  width: 175px;
  font-family: "Roboto Slab", serif;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  color: #fff;
}
/* line 669, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.video-top ul li a.video-side time, .widget-side-colum.piu-visti-gazzetta ul li a.video-side time {
  float: left;
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  margin-top: 7px;
  color: #666;
}
/* line 690, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.widget-side-colum.socialdivider {
  height: 60px;
}

@media only screen and (max-width: 767px) {
  /* line 701, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .side-element .contain-adv {
    float: left;
    position: relative;
    display: block;
    width: 300px;
    margin-left: -10px;
  }
  /* line 707, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .side-element .contain-adv #oas_Frame1 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 713, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .side-element.advcenter {
    width: 100%;
  }
  /* line 715, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .side-element.advcenter .contain-adv {
    width: 300px;
    margin: 0 auto;
  }
}
/* line 722, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.side-element.marketing img {
  margin: 0 auto;
}

/* line 728, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.containersocial {
  clear: both;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 728, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .containersocial {
    display: inline-block;
    width: 49.7%;
  }
  /* line 736, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .containersocial .twitter-timeline {
    min-width: 100%;
  }
}

/* line 743, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.socialdivider {
  height: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 743, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  .socialdivider {
    display: none;
  }
}

/* line 750, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
.jr-insta-slider {
  padding: 10px;
  background-color: #fafafa;
  border-radius: 3px;
  border: solid 1px #eee;
}

@media only screen and (max-width: 767px) {
  /* line 758, ../scss/contents/6.0-sidebar/_6.3-gazza-widget.scss */
  aside.sidebar .advcenter {
    margin: 0 auto 10px -29px;
    width: 320px;
  }
}
/**
* 8.0 Footer
* -----------------------------------------------------------------------------
*/
/* line 6, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap {
  background-color: #111111;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  /* line 6, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap {
    padding-bottom: 50px;
  }
}
/* line 12, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer {
  padding-top: 30px;
}
/* line 14, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer a {
  color: #fff;
}
/* line 17, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .grid-12 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 17, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer .grid-12 {
    padding-bottom: 0;
  }
}
/* line 23, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .grid-12.copy {
  padding-top: 20px;
  border-top: 1px solid #333;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 23, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer .grid-12.copy {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 23, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer .grid-12.copy {
    padding-left: 24px;
  }
}
/* line 32, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .grid-12.copy span.copy, .footer-wrap footer .grid-12.copy span.link {
  float: left;
  position: relative;
  display: block;
  clear: both;
}
/* line 39, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .grid-12.copy span.link a {
  font-family: "Lato", sans-serif;
  font-size: 13px;
}
/* line 44, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .grid-12.copy span.copy {
  color: #666666;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  margin-top: 5px;
}
/* line 52, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer .about {
  padding-left: 30px;
  border-left: 1px solid #333;
}
@media only screen and (max-width: 767px) {
  /* line 52, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer .about {
    padding-left: 0;
    margin-top: 25px;
    border-left: none;
  }
}
/* line 62, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul.category-list {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
}
@media only screen and (max-width: 767px) {
  /* line 62, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer ul.category-list {
    display: none;
  }
}
/* line 73, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul.category-list li a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
/* line 81, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li span.name {
  font-family: "Roboto Slab", serif;
  font-size: 30px;
}
/* line 85, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li p.desc {
  margin-top: 5px;
  color: #999999;
}
@media only screen and (max-width: 767px) {
  /* line 85, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer ul li p.desc {
    float: left;
    margin-bottom: 5px;
  }
}
/* line 93, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li.social {
  margin-top: 20px;
  margin-bottom: 40px;
  float: left;
}
/* line 97, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li.social a {
  margin-right: 10px;
  float: left;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background-color: #343434;
  cursor: pointer;
}
/* line 105, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li.social a i {
  font-size: 1.2em;
  padding-top: 7px;
  padding-left: 8px;
}
/* line 112, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li .logonet {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  background-position: 0 -94px;
  background-size: 403px auto;
  display: block;
  height: 45px;
  position: relative;
  width: 140px;
}
/* line 121, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li .logogazza {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/sprite.svg?v=20201209103731");
  height: 45px;
  width: 154px;
  background-size: 245px;
  background-position: 0px -89px;
  display: block;
  float: left;
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 121, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer ul li .logogazza {
    height: 47px;
    width: 175px;
    background-size: 283px;
    background-position: 0px -93px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 121, ../scss/contents/8.0-footer/_index.scss */
  .footer-wrap footer ul li .logogazza {
    float: left;
    margin-top: 25px;
  }
}
/* line 144, ../scss/contents/8.0-footer/_index.scss */
.footer-wrap footer ul li .logogazza:hover {
  opacity: 0.9;
}

/* line 153, ../scss/contents/8.0-footer/_index.scss */
.credit-row, .footnav-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* line 158, ../scss/contents/8.0-footer/_index.scss */
.widgets-footer {
  padding-top: 35px;
}
/* line 160, ../scss/contents/8.0-footer/_index.scss */
.widgets-footer .widgettitle {
  font-size: 16px;
  margin-bottom: 20px !important;
  line-height: 1.5;
  text-transform: none;
  padding: 0;
}
/* line 167, ../scss/contents/8.0-footer/_index.scss */
.widgets-footer .widget {
  margin-bottom: 30px;
}
/* line 169, ../scss/contents/8.0-footer/_index.scss */
.widgets-footer .widget li {
  margin-bottom: 4px;
}

/* line 175, ../scss/contents/8.0-footer/_index.scss */
.credit-footer-row {
  background: #222;
}

/* line 179, ../scss/contents/8.0-footer/_index.scss */
.nav-footer-row {
  background: #222;
}
/* line 181, ../scss/contents/8.0-footer/_index.scss */
.nav-footer-row .footnav-wrap {
  border: none;
}

/* line 186, ../scss/contents/8.0-footer/_index.scss */
.credit-footer-row {
  border-top: 2px solid #2d2d2d;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}
/* line 189, ../scss/contents/8.0-footer/_index.scss */
.credit-footer-row .footnav-wrap {
  padding-top: 16px;
  border: none !important;
}

/* line 195, ../scss/contents/8.0-footer/_index.scss */
.credit-footer {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* line 200, ../scss/contents/8.0-footer/_index.scss */
.footnav-wrap {
  border-bottom: 2px solid #2d2d2d;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5px;
}

/* line 207, ../scss/contents/8.0-footer/_index.scss */
.footnav li {
  display: inline-block;
  float: none;
  margin: 0 30px 10px 0;
  text-transform: uppercase;
}
/* line 212, ../scss/contents/8.0-footer/_index.scss */
.footnav li a img {
  display: inline-block;
}
/* line 216, ../scss/contents/8.0-footer/_index.scss */
.footnav .megamenu {
  display: none !important;
}

/* line 221, ../scss/contents/8.0-footer/_index.scss */
.headnav .megamenu {
  display: none !important;
}

/* line 225, ../scss/contents/8.0-footer/_index.scss */
.toTop {
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  font-size: 35px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  display: none;
  z-index: 999;
  color: #fff;
  cursor: pointer;
  -moz-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
}

/* line 243, ../scss/contents/8.0-footer/_index.scss */
.social a:last-child {
  margin-right: 0 !important;
}

/* line 247, ../scss/contents/8.0-footer/_index.scss */
.social-foot .social a {
  font-size: 18px;
  margin-right: 22px;
}

/* line 252, ../scss/contents/8.0-footer/_index.scss */
.credit-row .social-foot {
  margin-top: 40px;
}

/**
* 11.0 Adv
* -----------------------------------------------------------------------------
*/
/* line 5, ../scss/contents/11.0-adv/_index.scss */
.side-element.advcenter {
  width: 100%;
}

/* line 9, ../scss/contents/11.0-adv/_index.scss */
.contain-adv {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  /* line 9, ../scss/contents/11.0-adv/_index.scss */
  .contain-adv {
    position: relative;
    width: 100%;
    display: block;
  }
}

/* line 20, ../scss/contents/11.0-adv/_index.scss */
#oas_TopLeft {
  margin: 5px auto;
  width: 970px;
  text-align: center;
}
/* line 24, ../scss/contents/11.0-adv/_index.scss */
#oas_TopLeft img {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  /* line 20, ../scss/contents/11.0-adv/_index.scss */
  #oas_TopLeft {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 20, ../scss/contents/11.0-adv/_index.scss */
  #oas_TopLeft {
    margin: 5px auto 5px -28px;
    width: 768px;
  }
}

/* line 36, ../scss/contents/11.0-adv/_index.scss */
#oas_x22 {
  margin: 5px auto 5px -24px;
  width: 320px;
}

/* line 41, ../scss/contents/11.0-adv/_index.scss */
#oas_x25 {
  margin: 5px auto;
  width: 320px;
}

/* line 46, ../scss/contents/11.0-adv/_index.scss */
#oas_Frame1 {
  margin: 0 auto;
  width: 300px;
  position: relative;
  display: block;
}

/* line 53, ../scss/contents/11.0-adv/_index.scss */
#oas_Frame2 {
  width: 300px;
  margin: 0 auto;
  position: relative;
  display: block;
}

/* line 60, ../scss/contents/11.0-adv/_index.scss */
#oas_BottomRight {
  width: 300px;
  margin: 0 auto;
  position: relative;
  display: block;
}

/* line 67, ../scss/contents/11.0-adv/_index.scss */
#gazzanet_manchette_sx {
  height: 92px;
  width: 175px;
}

/* line 72, ../scss/contents/11.0-adv/_index.scss */
#adv_x23, #oas_x23, #adv_x23, #rcsad_Floor {
  bottom: 0;
  height: auto;
  left: 0;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 99;
}

/* line 82, ../scss/contents/11.0-adv/_index.scss */
.oas_x02 {
  float: left;
  width: 100%;
  border-top: 1px solid #ebebeb;
  padding: 10px 0;
}

/* line 89, ../scss/contents/11.0-adv/_index.scss */
.advcenter.frame1onmobile {
  margin-left: -14px;
  margin-top: 5px;
}

/* line 94, ../scss/contents/11.0-adv/_index.scss */
.x02google {
  float: left;
  text-align: center;
  min-width: 100%;
  border-top: 1px solid #ebebeb;
  margin-top: -1px;
}

/* line 102, ../scss/contents/11.0-adv/_index.scss */
.x02google .adsbygoogle {
  padding-top: 0;
  margin: 20px auto;
  border-top: none;
}

/* line 108, ../scss/contents/11.0-adv/_index.scss */
.x02google-article {
  text-align: center;
  margin-bottom: 20px;
}

/* line 114, ../scss/contents/11.0-adv/_index.scss */
.single .advcenter.frame1onsidebar #rcsad_Frame1 {
  min-width: 300px;
}

/* line 117, ../scss/contents/11.0-adv/_index.scss */
.home .contain-adv #rcsad_Frame1 {
  margin-top: 20px;
}

/* line 120, ../scss/contents/11.0-adv/_index.scss */
.archive.category .advcenter.frame1onsidebar #rcsad_Frame1 {
  margin-bottom: 20px;
}

/**
 * 12.0 Magnific Popup
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: .8;
  filter: alpha(opacity=80);
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-hide {
  display: none !important;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-preloader a {
  color: #ccc;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-preloader a:hover {
  color: #fff;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
button.mfp-arrow, button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: .65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial,Baskerville,monospace;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-close:focus, .mfp-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-close:active {
  top: 1px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-close-btn-in .mfp-close {
  color: #333;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
  font-size: 30px !important;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow {
  position: absolute;
  opacity: .65;
  filter: alpha(opacity=65);
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow:active {
  margin-top: -54px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow:focus, .mfp-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow .mfp-a, .mfp-arrow .mfp-b, .mfp-arrow:after, .mfp-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow .mfp-a, .mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow .mfp-b, .mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-left {
  left: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-left .mfp-a, .mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-left .mfp-b, .mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-right {
  right: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-right .mfp-a, .mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-arrow-right .mfp-b, .mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-figure {
  line-height: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  font-size: 14px;
  padding-right: 36px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 5px 15px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-counter {
    right: 15px;
    top: 5px;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  /* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ie7 .mfp-img {
  padding: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ie7 .mfp-container {
  padding: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.vegas-loading {
  border-radius: 10px;
  background: url("/wp-content/themes/gazzanet/images/vegas-loading.gif?v=20201209103731") center center no-repeat;
  height: 32px;
  left: 20px;
  position: fixed;
  top: 20px;
  width: 32px;
  z-index: 0;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.vegas-overlay {
  opacity: .5;
  z-index: -1;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.vegas-background {
  -ms-interpolation-mode: bicubic;
  image-rendering: optimizeQuality;
  max-width: none !important;
  z-index: -2;
}

/* line 5, ../scss/contents/12.0-magnific-popup/_index.scss */
.vegas-background, .vegas-overlay {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * 13.0 Responsive
 * -----------------------------------------------------------------------------
 */
/*--- Wide ---*/
@media only screen and (min-width: 1440px) {
  /* line 8, ../scss/contents/13.0-responsive/_index.scss */
  .show-mobile {
    display: none !important;
  }

  /* line 11, ../scss/contents/13.0-responsive/_index.scss */
  .hide-mobile {
    display: block !important;
  }
}
/*--- Desktop - Tablet (Land) ---*/
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 18, ../scss/contents/13.0-responsive/_index.scss */
  .show-mobile {
    display: none !important;
  }

  /* line 21, ../scss/contents/13.0-responsive/_index.scss */
  .hide-mobile {
    display: block !important;
  }
}
/*--- Tablet (Portrait) ---*/
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 28, ../scss/contents/13.0-responsive/_index.scss */
  .show-mobile {
    display: none !important;
  }

  /* line 31, ../scss/contents/13.0-responsive/_index.scss */
  .hide-mobile {
    display: block !important;
  }

  /* line 34, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .deskview,
  .bomb_res .mobviewsmall {
    display: none !important;
  }

  /* line 38, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .mobview,
  .bomb_res .padpotview {
    display: block !important;
  }

  /* line 43, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-grid {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    margin: 0;
  }

  /* line 49, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-grid .main-grid,
  .bomb_res .logo-row-wrap,
  .bomb_res .left-sidebar-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 55, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar {
    width: 296px;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  /* line 60, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .haveslider .left-sidebar,
  .bomb_res .haveslider.havenav .left-sidebar,
  .bomb_res .haveslider .right-sidebar,
  .bomb_res .haveslider.havenav .right-sidebar {
    padding-top: 30px;
  }

  /* line 66, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_left {
    padding-left: 45.375px;
  }

  /* line 69, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .medium_left {
    padding-left: 90.75px;
  }

  /* line 72, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .large_left {
    padding-left: 181.5px;
  }

  /* line 75, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .comment-sidebar-none #comments {
    padding-left: 0;
  }

  /* line 78, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_right {
    padding-right: 45.375px;
  }

  /* line 81, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .medium_right {
    padding-right: 90.75px;
  }

  /* line 84, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .large_right {
    padding-right: 181.5px;
  }

  /* line 87, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_left_right {
    padding-left: 45.375px;
    padding-right: 45.375px;
  }

  /* line 91, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .medium_left_right {
    padding-left: 90.75px;
    padding-right: 90.75px;
  }

  /* line 95, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .large_left_right {
    padding-left: 181.5px;
    padding-right: 181.5px;
  }

  /* line 99, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left {
    margin-left: -28px;
  }

  /* line 102, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_right {
    margin-right: -28px;
  }

  /* line 105, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left_right {
    margin-left: -28px;
    margin-right: -28px;
  }

  /* line 109, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left_right .wp-caption-text {
    padding-right: 28px;
    padding-left: 28px;
  }

  /* line 113, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-content {
    padding-bottom: 20px;
  }

  /* line 116, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar,
  .bomb_res .right-sidebar {
    padding-bottom: 50px;
  }

  /* line 120, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* line 125, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .user-lists .user-list-wrap {
    width: 25%;
  }

  /* line 128, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .right-sidebar .block-seven .block-ajax-query-content,
  .bomb_res .right-sidebar .block-eight .block-ajax-query-content {
    margin-left: -14px;
    margin-right: -14px;
  }

  /* line 133, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .right-sidebar .block-seven .big-post,
  .bomb_res .right-sidebar .block-eight .big-post {
    width: 50%;
    display: inline-block;
    float: left;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* line 141, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .social-counter {
    width: 33%;
    float: left;
    display: inline-block;
  }

  /* line 146, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res #contact_map {
    height: 350px !important;
  }

  /* Main Slider */
  /* line 152, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption h3 {
    font-size: 40px;
  }

  /* line 155, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .sdesc p,
  .bomb_res .main-slider .scat a {
    font-size: 18px;
    line-height: 26px;
  }

  /* line 160, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption {
    top: 30px;
    left: 55px;
  }

  /* line 164, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .slider-wrap .owl-nav {
    padding: 0 55px;
  }

  /* line 167, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption {
    width: 55%;
  }

  /* line 170, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-theme .scaption {
    padding: 50px 40px !important;
  }

  /* line 173, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider-wrap,
  .bomb_res .main-slider-wrap .owl-item {
    height: 369px;
  }

  /* General slider */
  /* line 180, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-none .scaption h3 {
    font-size: 36px;
  }

  /* line 183, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-none .sdesc {
    font-size: 18px;
    line-height: 26px;
    margin-top: 18px;
  }

  /* Single */
  /* line 190, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-page .entry-meta .meta-comments,
  .bomb_res .block-six .entry-meta .meta-comments {
    display: none;
  }

  /* Footer */
  /* line 196, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .footnav-wrap {
    padding-top: 20px;
  }

  /* line 199, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .widgets-footer {
    padding-bottom: 0;
  }

  /* line 203, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .footnav li {
    margin-right: 12px;
  }

  /* line 206, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-top: 2px solid #2d2d2d;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
  }

  /* line 212, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row p {
    margin: 0;
  }

  /* line 215, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row-wrap {
    border-top: 2px solid #222;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
  }
}
@media only screen and (max-width: 767px) {
  /* line 222, ../scss/contents/13.0-responsive/_index.scss */
  body {
    -webkit-overflow-scrolling: touch;
  }

  /* line 225, ../scss/contents/13.0-responsive/_index.scss */
  .show-mobile {
    display: block !important;
  }

  /* line 228, ../scss/contents/13.0-responsive/_index.scss */
  .hide-mobile {
    display: none !important;
  }

  /* line 232, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .item-weather {
    width: 100%;
  }

  /* line 235, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .modal {
    width: 100%;
    left: 0 !important;
    margin-left: 0 !important;
  }

  /* line 240, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .deskview,
  .bomb_res .deskpadview,
  .bomb_res .padpotview {
    display: none !important;
  }

  /* line 245, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .mobview,
  .bomb_res .mobviewsmall {
    display: block !important;
  }

  /* line 249, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .row .row-inner,
  .bomb_res .main-row .row-inner {
    margin-left: 0;
    margin-right: 0;
  }

  /* line 256, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-grid {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
  }

  /* line 262, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-grid .main-grid,
  .bomb_res .logo-row-wrap,
  .bomb_res .left-sidebar-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 268, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar {
    width: 296px;
  }

  /* line 272, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .wpb_column > .wpb_wrapper > *:last-child {
    margin-bottom: 20px;
  }

  /* line 275, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .haveslider .left-sidebar,
  .bomb_res .haveslider.havenav .left-sidebar,
  .bomb_res .haveslider .right-sidebar,
  .bomb_res .haveslider.havenav .right-sidebar {
    padding-top: 30px;
  }

  /* line 281, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_left,
  .bomb_res .medium_left,
  .bomb_res .large_left,
  .bomb_res .comment-sidebar-none #comments {
    padding-left: 0;
  }

  /* line 287, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_right,
  .bomb_res .medium_right,
  .bomb_res .large_right {
    padding-right: 0;
  }

  /* line 292, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small_left_right {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 296, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .medium_left_right {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 300, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .large_left_right {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 304, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left {
    margin-left: -24px;
  }

  /* line 307, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_right {
    margin-right: -24px;
  }

  /* line 310, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left_right {
    margin-left: -24px;
    margin-right: -24px;
  }

  /* line 314, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .full_left_right .wp-caption-text {
    padding-right: 24px;
    padding-left: 24px;
  }

  /* line 318, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-content {
    padding-bottom: 20px;
  }

  /* line 321, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar,
  .bomb_res .right-sidebar {
    padding-bottom: 50px;
  }

  /* line 325, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .left-sidebar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* line 329, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res #contact_map {
    height: 200px !important;
  }

  /* Main Slider */
  /* line 335, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption h3 {
    font-size: 22px;
    margin: 0;
  }

  /* line 339, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .sdesc p,
  .bomb_res .main-slider .scat a {
    font-size: 13px;
    line-height: 20px;
  }

  /* line 344, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption {
    top: 20px;
    left: 0;
  }

  /* line 348, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .slider-wrap .owl-nav-inner {
    background: none !important;
  }

  /* line 351, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .slider-wrap .owl-nav {
    padding: 0 22px;
    bottom: 0;
  }

  /* line 355, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .slider-wrap .owl-nav .owl-direction {
    left: 0;
    right: 0;
  }

  /* line 359, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider .scaption {
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }

  /* line 364, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-theme .scaption {
    padding: 50px 40px !important;
  }

  /* line 367, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .main-slider-wrap,
  .bomb_res .main-slider-wrap .owl-item {
    height: auto;
  }

  /* line 371, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .haveslider.havenav .main-content {
    padding-top: 42px;
  }

  /* General slider */
  /* line 377, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-theme .scaption {
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* line 383, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-none .scaption h3,
  .bomb_res .owl-double .scaption h3,
  .bomb_res .owl-left .scaption h3,
  .bomb_res .owl-right .scaption h3 {
    font-size: 16px;
  }

  /* line 389, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .owl-theme .sdesc {
    display: none;
  }

  /* Block */
  /* line 394, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-one .small-post .entry-image a,
  .bomb_res .block-two .small-post .entry-image a {
    width: 60px;
  }

  /* line 398, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-one .small-post .with-thumb {
    padding-left: 80px;
  }

  /* line 401, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-two .small-post .with-thumb {
    padding-right: 80px;
  }

  /* line 404, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .small-post .thumb-icon {
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }

  /* line 412, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .entry-image.featured-image .gallery-caption,
  .bomb_res .entry-image.other-slider .gallery-caption {
    display: none;
  }

  /* line 417, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-four-five .big-post .entry-image {
    float: none;
  }

  /* line 420, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-four .big-post .with-thumb {
    margin-right: 0;
    padding-right: 0;
  }

  /* line 424, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-five .big-post .with-thumb {
    margin-left: 0;
    padding-left: 0;
  }

  /* line 428, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-four-five .big-post .entry-header.with-thumb {
    margin-top: 15px;
  }

  /* line 431, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-four-five .big-post .image-triangle {
    display: none;
  }

  /* line 434, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-page > .single-post > .entry-header .entry-title,
  .bomb_res .block-six > .block-ajax-query-content > .big-post > .entry-header .entry-title,
  .bomb_res .big-title {
    font-size: 36px;
  }

  /* line 439, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .archive-title h1 {
    font-size: 34px;
    line-height: 42px;
  }

  /* line 443, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-twelve .big-post {
    margin-bottom: 40px;
  }

  /* line 446, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-four .big-post .entry-image a,
  .bomb_res .block-five .big-post .entry-image a {
    width: 100%;
  }

  /* Single */
  /* line 452, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .review-table-right,
  .bomb_res .review-table-left {
    display: table-row !important;
    width: 100%;
  }

  /* line 457, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .review-foot .review-summary {
    padding-right: 0;
  }

  /* line 460, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .review-foot .review-total-score {
    margin-top: 20px;
    border-top-width: 2px;
    border-top-style: solid;
    padding-top: 20px;
    display: block !important;
  }

  /* line 467, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .review-content .review-criteria.criteria-star {
    text-align: center;
  }

  /* line 472, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .author-box-avatar,
  .bomb_res .commentlist .comment-author {
    width: 60px;
  }

  /* line 477, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .commentlist ul.children {
    padding: 0;
    margin: 0;
  }

  /* line 481, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .comment-respond .text-name,
  .bomb_res .comment-respond .text-email {
    width: 100%;
    padding-right: 0;
  }

  /* line 487, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .nav-previous,
  .bomb_res .nav-next {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  /* line 493, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .nav-next {
    margin-top: 20px;
  }

  /* line 496, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .nav-thumb {
    display: none;
  }

  /* line 499, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .block-page .entry-meta .meta-shares,
  .bomb_res .block-six .entry-meta .meta-shares {
    float: left;
  }

  /* line 503, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .single-sticky {
    display: inline-block;
    margin-bottom: 10px;
    float: none;
  }

  /* line 508, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .ban-article.alignleft,
  .bomb_res .ban-article.alignright {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  /* line 515, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .footnav-wrap {
    padding-top: 20px;
  }

  /* line 518, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .widgets-footer {
    padding-bottom: 0;
  }

  /* line 521, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-top: 2px solid #2d2d2d;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
  }

  /* line 527, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row p {
    margin: 0;
  }

  /* line 530, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row .social-foot,
  .bomb_res .credit-footer .social-foot {
    margin-top: 15px;
  }

  /* line 534, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-footer .social-foot {
    float: left;
  }

  /* line 537, ../scss/contents/13.0-responsive/_index.scss */
  .bomb_res .credit-row-wrap {
    border-top: 2px solid #222;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
  }
}
/* line 4, ../scss/contents/14.0-font-awesome/_core.scss */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

/* makes the font 33% larger relative to the icon container */
/* line 5, ../scss/contents/14.0-font-awesome/_larger.scss */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 10, ../scss/contents/14.0-font-awesome/_larger.scss */
.fa-2x {
  font-size: 2em;
}

/* line 11, ../scss/contents/14.0-font-awesome/_larger.scss */
.fa-3x {
  font-size: 3em;
}

/* line 12, ../scss/contents/14.0-font-awesome/_larger.scss */
.fa-4x {
  font-size: 4em;
}

/* line 13, ../scss/contents/14.0-font-awesome/_larger.scss */
.fa-5x {
  font-size: 5em;
}

/* line 3, ../scss/contents/14.0-font-awesome/_fixed-width.scss */
.fa-fw {
  width: 1.28571em;
  text-align: center;
}

/* line 4, ../scss/contents/14.0-font-awesome/_list.scss */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
/* line 8, ../scss/contents/14.0-font-awesome/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 10, ../scss/contents/14.0-font-awesome/_list.scss */
.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
/* line 16, ../scss/contents/14.0-font-awesome/_list.scss */
.fa-li.fa-lg {
  left: -1.85714em;
}

/* line 4, ../scss/contents/14.0-font-awesome/_bordered-pulled.scss */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

/* line 10, ../scss/contents/14.0-font-awesome/_bordered-pulled.scss */
.pull-right {
  float: right;
}

/* line 11, ../scss/contents/14.0-font-awesome/_bordered-pulled.scss */
.pull-left {
  float: left;
}

/* line 14, ../scss/contents/14.0-font-awesome/_bordered-pulled.scss */
.fa.pull-left {
  margin-right: .3em;
}
/* line 15, ../scss/contents/14.0-font-awesome/_bordered-pulled.scss */
.fa.pull-right {
  margin-left: .3em;
}

/* line 4, ../scss/contents/14.0-font-awesome/_animated.scss */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 9, ../scss/contents/14.0-font-awesome/_animated.scss */
.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);
  }
}
/* line 4, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 5, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 6, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 8, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 9, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 14, ../scss/contents/14.0-font-awesome/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 4, ../scss/contents/14.0-font-awesome/_stacked.scss */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 12, ../scss/contents/14.0-font-awesome/_stacked.scss */
.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 18, ../scss/contents/14.0-font-awesome/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 19, ../scss/contents/14.0-font-awesome/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 20, ../scss/contents/14.0-font-awesome/_stacked.scss */
.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 4, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-glass:before {
  content: "";
}

/* line 5, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-music:before {
  content: "";
}

/* line 6, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-search:before {
  content: "";
}

/* line 7, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-envelope-o:before {
  content: "";
}

/* line 8, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-heart:before {
  content: "";
}

/* line 9, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-star:before {
  content: "";
}

/* line 10, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-star-o:before {
  content: "";
}

/* line 11, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-user:before {
  content: "";
}

/* line 12, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-film:before {
  content: "";
}

/* line 13, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-th-large:before {
  content: "";
}

/* line 14, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-th:before {
  content: "";
}

/* line 15, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-th-list:before {
  content: "";
}

/* line 16, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-check:before {
  content: "";
}

/* line 17, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

/* line 20, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-search-plus:before {
  content: "";
}

/* line 21, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-search-minus:before {
  content: "";
}

/* line 22, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-power-off:before {
  content: "";
}

/* line 23, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-signal:before {
  content: "";
}

/* line 24, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gear:before,
.fa-cog:before {
  content: "";
}

/* line 26, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-trash-o:before {
  content: "";
}

/* line 27, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-home:before {
  content: "";
}

/* line 28, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-o:before {
  content: "";
}

/* line 29, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-clock-o:before {
  content: "";
}

/* line 30, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-road:before {
  content: "";
}

/* line 31, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-download:before {
  content: "";
}

/* line 32, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-o-down:before {
  content: "";
}

/* line 33, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-o-up:before {
  content: "";
}

/* line 34, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-inbox:before {
  content: "";
}

/* line 35, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-play-circle-o:before {
  content: "";
}

/* line 36, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

/* line 38, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-refresh:before {
  content: "";
}

/* line 39, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-list-alt:before {
  content: "";
}

/* line 40, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-lock:before {
  content: "";
}

/* line 41, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flag:before {
  content: "";
}

/* line 42, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-headphones:before {
  content: "";
}

/* line 43, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-volume-off:before {
  content: "";
}

/* line 44, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-volume-down:before {
  content: "";
}

/* line 45, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-volume-up:before {
  content: "";
}

/* line 46, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-qrcode:before {
  content: "";
}

/* line 47, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-barcode:before {
  content: "";
}

/* line 48, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tag:before {
  content: "";
}

/* line 49, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tags:before {
  content: "";
}

/* line 50, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-book:before {
  content: "";
}

/* line 51, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bookmark:before {
  content: "";
}

/* line 52, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-print:before {
  content: "";
}

/* line 53, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-camera:before {
  content: "";
}

/* line 54, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-font:before {
  content: "";
}

/* line 55, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bold:before {
  content: "";
}

/* line 56, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-italic:before {
  content: "";
}

/* line 57, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-text-height:before {
  content: "";
}

/* line 58, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-text-width:before {
  content: "";
}

/* line 59, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-align-left:before {
  content: "";
}

/* line 60, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-align-center:before {
  content: "";
}

/* line 61, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-align-right:before {
  content: "";
}

/* line 62, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-align-justify:before {
  content: "";
}

/* line 63, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-list:before {
  content: "";
}

/* line 64, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

/* line 66, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-indent:before {
  content: "";
}

/* line 67, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-video-camera:before {
  content: "";
}

/* line 68, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

/* line 71, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pencil:before {
  content: "";
}

/* line 72, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-map-marker:before {
  content: "";
}

/* line 73, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-adjust:before {
  content: "";
}

/* line 74, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tint:before {
  content: "";
}

/* line 75, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

/* line 77, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-share-square-o:before {
  content: "";
}

/* line 78, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-check-square-o:before {
  content: "";
}

/* line 79, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrows:before {
  content: "";
}

/* line 80, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-step-backward:before {
  content: "";
}

/* line 81, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fast-backward:before {
  content: "";
}

/* line 82, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-backward:before {
  content: "";
}

/* line 83, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-play:before {
  content: "";
}

/* line 84, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pause:before {
  content: "";
}

/* line 85, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stop:before {
  content: "";
}

/* line 86, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-forward:before {
  content: "";
}

/* line 87, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fast-forward:before {
  content: "";
}

/* line 88, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-step-forward:before {
  content: "";
}

/* line 89, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-eject:before {
  content: "";
}

/* line 90, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-left:before {
  content: "";
}

/* line 91, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-right:before {
  content: "";
}

/* line 92, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plus-circle:before {
  content: "";
}

/* line 93, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-minus-circle:before {
  content: "";
}

/* line 94, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-times-circle:before {
  content: "";
}

/* line 95, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-check-circle:before {
  content: "";
}

/* line 96, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-question-circle:before {
  content: "";
}

/* line 97, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-info-circle:before {
  content: "";
}

/* line 98, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-crosshairs:before {
  content: "";
}

/* line 99, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-times-circle-o:before {
  content: "";
}

/* line 100, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-check-circle-o:before {
  content: "";
}

/* line 101, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ban:before {
  content: "";
}

/* line 102, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-left:before {
  content: "";
}

/* line 103, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-right:before {
  content: "";
}

/* line 104, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-up:before {
  content: "";
}

/* line 105, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-down:before {
  content: "";
}

/* line 106, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

/* line 108, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-expand:before {
  content: "";
}

/* line 109, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-compress:before {
  content: "";
}

/* line 110, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plus:before {
  content: "";
}

/* line 111, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-minus:before {
  content: "";
}

/* line 112, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-asterisk:before {
  content: "";
}

/* line 113, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-exclamation-circle:before {
  content: "";
}

/* line 114, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gift:before {
  content: "";
}

/* line 115, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-leaf:before {
  content: "";
}

/* line 116, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fire:before {
  content: "";
}

/* line 117, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-eye:before {
  content: "";
}

/* line 118, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-eye-slash:before {
  content: "";
}

/* line 119, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

/* line 121, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plane:before {
  content: "";
}

/* line 122, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-calendar:before {
  content: "";
}

/* line 123, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-random:before {
  content: "";
}

/* line 124, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-comment:before {
  content: "";
}

/* line 125, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-magnet:before {
  content: "";
}

/* line 126, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-up:before {
  content: "";
}

/* line 127, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-down:before {
  content: "";
}

/* line 128, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-retweet:before {
  content: "";
}

/* line 129, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-shopping-cart:before {
  content: "";
}

/* line 130, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-folder:before {
  content: "";
}

/* line 131, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-folder-open:before {
  content: "";
}

/* line 132, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrows-v:before {
  content: "";
}

/* line 133, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrows-h:before {
  content: "";
}

/* line 134, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

/* line 136, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-twitter-square:before {
  content: "";
}

/* line 137, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-facebook-square:before {
  content: "";
}

/* line 138, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-camera-retro:before {
  content: "";
}

/* line 139, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-key:before {
  content: "";
}

/* line 140, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gears:before,
.fa-cogs:before {
  content: "";
}

/* line 142, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-comments:before {
  content: "";
}

/* line 143, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-thumbs-o-up:before {
  content: "";
}

/* line 144, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-thumbs-o-down:before {
  content: "";
}

/* line 145, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-star-half:before {
  content: "";
}

/* line 146, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-heart-o:before {
  content: "";
}

/* line 147, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sign-out:before {
  content: "";
}

/* line 148, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-linkedin-square:before {
  content: "";
}

/* line 149, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-thumb-tack:before {
  content: "";
}

/* line 150, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-external-link:before {
  content: "";
}

/* line 151, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sign-in:before {
  content: "";
}

/* line 152, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-trophy:before {
  content: "";
}

/* line 153, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-github-square:before {
  content: "";
}

/* line 154, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-upload:before {
  content: "";
}

/* line 155, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-lemon-o:before {
  content: "";
}

/* line 156, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-phone:before {
  content: "";
}

/* line 157, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-square-o:before {
  content: "";
}

/* line 158, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bookmark-o:before {
  content: "";
}

/* line 159, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-phone-square:before {
  content: "";
}

/* line 160, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-twitter:before {
  content: "";
}

/* line 161, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

/* line 163, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-github:before {
  content: "";
}

/* line 164, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-unlock:before {
  content: "";
}

/* line 165, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-credit-card:before {
  content: "";
}

/* line 166, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rss:before {
  content: "";
}

/* line 167, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hdd-o:before {
  content: "";
}

/* line 168, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bullhorn:before {
  content: "";
}

/* line 169, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bell:before {
  content: "";
}

/* line 170, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-certificate:before {
  content: "";
}

/* line 171, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hand-o-right:before {
  content: "";
}

/* line 172, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hand-o-left:before {
  content: "";
}

/* line 173, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hand-o-up:before {
  content: "";
}

/* line 174, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hand-o-down:before {
  content: "";
}

/* line 175, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-left:before {
  content: "";
}

/* line 176, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-right:before {
  content: "";
}

/* line 177, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-up:before {
  content: "";
}

/* line 178, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-down:before {
  content: "";
}

/* line 179, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-globe:before {
  content: "";
}

/* line 180, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-wrench:before {
  content: "";
}

/* line 181, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tasks:before {
  content: "";
}

/* line 182, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-filter:before {
  content: "";
}

/* line 183, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-briefcase:before {
  content: "";
}

/* line 184, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrows-alt:before {
  content: "";
}

/* line 185, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-group:before,
.fa-users:before {
  content: "";
}

/* line 187, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chain:before,
.fa-link:before {
  content: "";
}

/* line 189, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cloud:before {
  content: "";
}

/* line 190, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flask:before {
  content: "";
}

/* line 191, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cut:before,
.fa-scissors:before {
  content: "";
}

/* line 193, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-copy:before,
.fa-files-o:before {
  content: "";
}

/* line 195, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paperclip:before {
  content: "";
}

/* line 196, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

/* line 198, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-square:before {
  content: "";
}

/* line 199, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

/* line 202, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-list-ul:before {
  content: "";
}

/* line 203, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-list-ol:before {
  content: "";
}

/* line 204, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-strikethrough:before {
  content: "";
}

/* line 205, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-underline:before {
  content: "";
}

/* line 206, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-table:before {
  content: "";
}

/* line 207, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-magic:before {
  content: "";
}

/* line 208, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-truck:before {
  content: "";
}

/* line 209, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pinterest:before {
  content: "";
}

/* line 210, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pinterest-square:before {
  content: "";
}

/* line 211, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-google-plus-square:before {
  content: "";
}

/* line 212, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-google-plus:before {
  content: "";
}

/* line 213, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-money:before {
  content: "";
}

/* line 214, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-caret-down:before {
  content: "";
}

/* line 215, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-caret-up:before {
  content: "";
}

/* line 216, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-caret-left:before {
  content: "";
}

/* line 217, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-caret-right:before {
  content: "";
}

/* line 218, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-columns:before {
  content: "";
}

/* line 219, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

/* line 221, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

/* line 223, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

/* line 225, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-envelope:before {
  content: "";
}

/* line 226, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-linkedin:before {
  content: "";
}

/* line 227, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

/* line 229, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-legal:before,
.fa-gavel:before {
  content: "";
}

/* line 231, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

/* line 233, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-comment-o:before {
  content: "";
}

/* line 234, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-comments-o:before {
  content: "";
}

/* line 235, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flash:before,
.fa-bolt:before {
  content: "";
}

/* line 237, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sitemap:before {
  content: "";
}

/* line 238, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-umbrella:before {
  content: "";
}

/* line 239, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

/* line 241, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-lightbulb-o:before {
  content: "";
}

/* line 242, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-exchange:before {
  content: "";
}

/* line 243, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cloud-download:before {
  content: "";
}

/* line 244, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cloud-upload:before {
  content: "";
}

/* line 245, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-user-md:before {
  content: "";
}

/* line 246, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stethoscope:before {
  content: "";
}

/* line 247, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-suitcase:before {
  content: "";
}

/* line 248, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bell-o:before {
  content: "";
}

/* line 249, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-coffee:before {
  content: "";
}

/* line 250, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cutlery:before {
  content: "";
}

/* line 251, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-text-o:before {
  content: "";
}

/* line 252, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-building-o:before {
  content: "";
}

/* line 253, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hospital-o:before {
  content: "";
}

/* line 254, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ambulance:before {
  content: "";
}

/* line 255, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-medkit:before {
  content: "";
}

/* line 256, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fighter-jet:before {
  content: "";
}

/* line 257, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-beer:before {
  content: "";
}

/* line 258, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-h-square:before {
  content: "";
}

/* line 259, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plus-square:before {
  content: "";
}

/* line 260, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-double-left:before {
  content: "";
}

/* line 261, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-double-right:before {
  content: "";
}

/* line 262, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-double-up:before {
  content: "";
}

/* line 263, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-double-down:before {
  content: "";
}

/* line 264, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-left:before {
  content: "";
}

/* line 265, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-right:before {
  content: "";
}

/* line 266, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-up:before {
  content: "";
}

/* line 267, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angle-down:before {
  content: "";
}

/* line 268, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-desktop:before {
  content: "";
}

/* line 269, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-laptop:before {
  content: "";
}

/* line 270, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tablet:before {
  content: "";
}

/* line 271, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

/* line 273, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-circle-o:before {
  content: "";
}

/* line 274, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-quote-left:before {
  content: "";
}

/* line 275, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-quote-right:before {
  content: "";
}

/* line 276, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-spinner:before {
  content: "";
}

/* line 277, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-circle:before {
  content: "";
}

/* line 278, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

/* line 280, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-github-alt:before {
  content: "";
}

/* line 281, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-folder-o:before {
  content: "";
}

/* line 282, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-folder-open-o:before {
  content: "";
}

/* line 283, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-smile-o:before {
  content: "";
}

/* line 284, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-frown-o:before {
  content: "";
}

/* line 285, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-meh-o:before {
  content: "";
}

/* line 286, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gamepad:before {
  content: "";
}

/* line 287, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-keyboard-o:before {
  content: "";
}

/* line 288, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flag-o:before {
  content: "";
}

/* line 289, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flag-checkered:before {
  content: "";
}

/* line 290, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-terminal:before {
  content: "";
}

/* line 291, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-code:before {
  content: "";
}

/* line 292, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

/* line 294, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

/* line 297, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-location-arrow:before {
  content: "";
}

/* line 298, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-crop:before {
  content: "";
}

/* line 299, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-code-fork:before {
  content: "";
}

/* line 300, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

/* line 302, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-question:before {
  content: "";
}

/* line 303, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-info:before {
  content: "";
}

/* line 304, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-exclamation:before {
  content: "";
}

/* line 305, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-superscript:before {
  content: "";
}

/* line 306, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-subscript:before {
  content: "";
}

/* line 307, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-eraser:before {
  content: "";
}

/* line 308, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-puzzle-piece:before {
  content: "";
}

/* line 309, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-microphone:before {
  content: "";
}

/* line 310, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-microphone-slash:before {
  content: "";
}

/* line 311, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-shield:before {
  content: "";
}

/* line 312, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-calendar-o:before {
  content: "";
}

/* line 313, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fire-extinguisher:before {
  content: "";
}

/* line 314, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rocket:before {
  content: "";
}

/* line 315, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-maxcdn:before {
  content: "";
}

/* line 316, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-circle-left:before {
  content: "";
}

/* line 317, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-circle-right:before {
  content: "";
}

/* line 318, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-circle-up:before {
  content: "";
}

/* line 319, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-chevron-circle-down:before {
  content: "";
}

/* line 320, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-html5:before {
  content: "";
}

/* line 321, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-css3:before {
  content: "";
}

/* line 322, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-anchor:before {
  content: "";
}

/* line 323, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-unlock-alt:before {
  content: "";
}

/* line 324, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bullseye:before {
  content: "";
}

/* line 325, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ellipsis-h:before {
  content: "";
}

/* line 326, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ellipsis-v:before {
  content: "";
}

/* line 327, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rss-square:before {
  content: "";
}

/* line 328, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-play-circle:before {
  content: "";
}

/* line 329, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ticket:before {
  content: "";
}

/* line 330, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-minus-square:before {
  content: "";
}

/* line 331, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-minus-square-o:before {
  content: "";
}

/* line 332, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-level-up:before {
  content: "";
}

/* line 333, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-level-down:before {
  content: "";
}

/* line 334, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-check-square:before {
  content: "";
}

/* line 335, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pencil-square:before {
  content: "";
}

/* line 336, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-external-link-square:before {
  content: "";
}

/* line 337, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-share-square:before {
  content: "";
}

/* line 338, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-compass:before {
  content: "";
}

/* line 339, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

/* line 341, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

/* line 343, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

/* line 345, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-euro:before,
.fa-eur:before {
  content: "";
}

/* line 347, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gbp:before {
  content: "";
}

/* line 348, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dollar:before,
.fa-usd:before {
  content: "";
}

/* line 350, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-rupee:before,
.fa-inr:before {
  content: "";
}

/* line 352, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

/* line 356, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

/* line 359, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-won:before,
.fa-krw:before {
  content: "";
}

/* line 361, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

/* line 363, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file:before {
  content: "";
}

/* line 364, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-text:before {
  content: "";
}

/* line 365, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-alpha-asc:before {
  content: "";
}

/* line 366, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-alpha-desc:before {
  content: "";
}

/* line 367, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-amount-asc:before {
  content: "";
}

/* line 368, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-amount-desc:before {
  content: "";
}

/* line 369, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-numeric-asc:before {
  content: "";
}

/* line 370, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sort-numeric-desc:before {
  content: "";
}

/* line 371, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-thumbs-up:before {
  content: "";
}

/* line 372, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-thumbs-down:before {
  content: "";
}

/* line 373, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-youtube-square:before {
  content: "";
}

/* line 374, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-youtube:before {
  content: "";
}

/* line 375, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-xing:before {
  content: "";
}

/* line 376, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-xing-square:before {
  content: "";
}

/* line 377, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-youtube-play:before {
  content: "";
}

/* line 378, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dropbox:before {
  content: "";
}

/* line 379, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stack-overflow:before {
  content: "";
}

/* line 380, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-instagram:before {
  content: "";
}

/* line 381, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-flickr:before {
  content: "";
}

/* line 382, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-adn:before {
  content: "";
}

/* line 383, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bitbucket:before {
  content: "";
}

/* line 384, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bitbucket-square:before {
  content: "";
}

/* line 385, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tumblr:before {
  content: "";
}

/* line 386, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tumblr-square:before {
  content: "";
}

/* line 387, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-long-arrow-down:before {
  content: "";
}

/* line 388, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-long-arrow-up:before {
  content: "";
}

/* line 389, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-long-arrow-left:before {
  content: "";
}

/* line 390, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-long-arrow-right:before {
  content: "";
}

/* line 391, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-apple:before {
  content: "";
}

/* line 392, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-windows:before {
  content: "";
}

/* line 393, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-android:before {
  content: "";
}

/* line 394, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-linux:before {
  content: "";
}

/* line 395, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dribbble:before {
  content: "";
}

/* line 396, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-skype:before {
  content: "";
}

/* line 397, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-foursquare:before {
  content: "";
}

/* line 398, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-trello:before {
  content: "";
}

/* line 399, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-female:before {
  content: "";
}

/* line 400, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-male:before {
  content: "";
}

/* line 401, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

/* line 403, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sun-o:before {
  content: "";
}

/* line 404, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-moon-o:before {
  content: "";
}

/* line 405, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-archive:before {
  content: "";
}

/* line 406, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bug:before {
  content: "";
}

/* line 407, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-vk:before {
  content: "";
}

/* line 408, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-weibo:before {
  content: "";
}

/* line 409, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-renren:before {
  content: "";
}

/* line 410, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pagelines:before {
  content: "";
}

/* line 411, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stack-exchange:before {
  content: "";
}

/* line 412, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-o-right:before {
  content: "";
}

/* line 413, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-arrow-circle-o-left:before {
  content: "";
}

/* line 414, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

/* line 416, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dot-circle-o:before {
  content: "";
}

/* line 417, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-wheelchair:before {
  content: "";
}

/* line 418, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-vimeo-square:before {
  content: "";
}

/* line 419, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

/* line 421, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plus-square-o:before {
  content: "";
}

/* line 422, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-space-shuttle:before {
  content: "";
}

/* line 423, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-slack:before {
  content: "";
}

/* line 424, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-envelope-square:before {
  content: "";
}

/* line 425, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-wordpress:before {
  content: "";
}

/* line 426, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-openid:before {
  content: "";
}

/* line 427, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

/* line 430, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

/* line 432, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-yahoo:before {
  content: "";
}

/* line 433, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-google:before {
  content: "";
}

/* line 434, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-reddit:before {
  content: "";
}

/* line 435, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-reddit-square:before {
  content: "";
}

/* line 436, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stumbleupon-circle:before {
  content: "";
}

/* line 437, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-stumbleupon:before {
  content: "";
}

/* line 438, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-delicious:before {
  content: "";
}

/* line 439, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-digg:before {
  content: "";
}

/* line 440, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pied-piper:before {
  content: "";
}

/* line 441, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pied-piper-alt:before {
  content: "";
}

/* line 442, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-drupal:before {
  content: "";
}

/* line 443, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-joomla:before {
  content: "";
}

/* line 444, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-language:before {
  content: "";
}

/* line 445, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-fax:before {
  content: "";
}

/* line 446, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-building:before {
  content: "";
}

/* line 447, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-child:before {
  content: "";
}

/* line 448, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paw:before {
  content: "";
}

/* line 449, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-spoon:before {
  content: "";
}

/* line 450, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cube:before {
  content: "";
}

/* line 451, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cubes:before {
  content: "";
}

/* line 452, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-behance:before {
  content: "";
}

/* line 453, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-behance-square:before {
  content: "";
}

/* line 454, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-steam:before {
  content: "";
}

/* line 455, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-steam-square:before {
  content: "";
}

/* line 456, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-recycle:before {
  content: "";
}

/* line 457, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-automobile:before,
.fa-car:before {
  content: "";
}

/* line 459, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cab:before,
.fa-taxi:before {
  content: "";
}

/* line 461, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tree:before {
  content: "";
}

/* line 462, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-spotify:before {
  content: "";
}

/* line 463, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-deviantart:before {
  content: "";
}

/* line 464, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-soundcloud:before {
  content: "";
}

/* line 465, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-database:before {
  content: "";
}

/* line 466, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-pdf-o:before {
  content: "";
}

/* line 467, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-word-o:before {
  content: "";
}

/* line 468, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-excel-o:before {
  content: "";
}

/* line 469, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-powerpoint-o:before {
  content: "";
}

/* line 470, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

/* line 473, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

/* line 475, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

/* line 477, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

/* line 479, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-file-code-o:before {
  content: "";
}

/* line 480, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-vine:before {
  content: "";
}

/* line 481, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-codepen:before {
  content: "";
}

/* line 482, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-jsfiddle:before {
  content: "";
}

/* line 483, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

/* line 488, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-circle-o-notch:before {
  content: "";
}

/* line 489, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ra:before,
.fa-rebel:before {
  content: "";
}

/* line 491, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ge:before,
.fa-empire:before {
  content: "";
}

/* line 493, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-git-square:before {
  content: "";
}

/* line 494, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-git:before {
  content: "";
}

/* line 495, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hacker-news:before {
  content: "";
}

/* line 496, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tencent-weibo:before {
  content: "";
}

/* line 497, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-qq:before {
  content: "";
}

/* line 498, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

/* line 500, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

/* line 502, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

/* line 504, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-history:before {
  content: "";
}

/* line 505, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-genderless:before,
.fa-circle-thin:before {
  content: "";
}

/* line 507, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-header:before {
  content: "";
}

/* line 508, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paragraph:before {
  content: "";
}

/* line 509, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sliders:before {
  content: "";
}

/* line 510, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-share-alt:before {
  content: "";
}

/* line 511, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-share-alt-square:before {
  content: "";
}

/* line 512, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bomb:before {
  content: "";
}

/* line 513, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

/* line 515, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-tty:before {
  content: "";
}

/* line 516, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-binoculars:before {
  content: "";
}

/* line 517, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-plug:before {
  content: "";
}

/* line 518, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-slideshare:before {
  content: "";
}

/* line 519, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-twitch:before {
  content: "";
}

/* line 520, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-yelp:before {
  content: "";
}

/* line 521, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-newspaper-o:before {
  content: "";
}

/* line 522, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-wifi:before {
  content: "";
}

/* line 523, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-calculator:before {
  content: "";
}

/* line 524, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paypal:before {
  content: "";
}

/* line 525, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-google-wallet:before {
  content: "";
}

/* line 526, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-visa:before {
  content: "";
}

/* line 527, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-mastercard:before {
  content: "";
}

/* line 528, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-discover:before {
  content: "";
}

/* line 529, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-amex:before {
  content: "";
}

/* line 530, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-paypal:before {
  content: "";
}

/* line 531, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc-stripe:before {
  content: "";
}

/* line 532, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bell-slash:before {
  content: "";
}

/* line 533, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bell-slash-o:before {
  content: "";
}

/* line 534, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-trash:before {
  content: "";
}

/* line 535, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-copyright:before {
  content: "";
}

/* line 536, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-at:before {
  content: "";
}

/* line 537, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-eyedropper:before {
  content: "";
}

/* line 538, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-paint-brush:before {
  content: "";
}

/* line 539, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-birthday-cake:before {
  content: "";
}

/* line 540, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-area-chart:before {
  content: "";
}

/* line 541, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pie-chart:before {
  content: "";
}

/* line 542, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-line-chart:before {
  content: "";
}

/* line 543, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-lastfm:before {
  content: "";
}

/* line 544, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-lastfm-square:before {
  content: "";
}

/* line 545, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-off:before {
  content: "";
}

/* line 546, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-toggle-on:before {
  content: "";
}

/* line 547, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bicycle:before {
  content: "";
}

/* line 548, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-bus:before {
  content: "";
}

/* line 549, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ioxhost:before {
  content: "";
}

/* line 550, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-angellist:before {
  content: "";
}

/* line 551, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cc:before {
  content: "";
}

/* line 552, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

/* line 555, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-meanpath:before {
  content: "";
}

/* line 556, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-buysellads:before {
  content: "";
}

/* line 557, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-connectdevelop:before {
  content: "";
}

/* line 558, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-dashcube:before {
  content: "";
}

/* line 559, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-forumbee:before {
  content: "";
}

/* line 560, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-leanpub:before {
  content: "";
}

/* line 561, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-sellsy:before {
  content: "";
}

/* line 562, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-shirtsinbulk:before {
  content: "";
}

/* line 563, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-simplybuilt:before {
  content: "";
}

/* line 564, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-skyatlas:before {
  content: "";
}

/* line 565, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cart-plus:before {
  content: "";
}

/* line 566, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-cart-arrow-down:before {
  content: "";
}

/* line 567, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-diamond:before {
  content: "";
}

/* line 568, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-ship:before {
  content: "";
}

/* line 569, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-user-secret:before {
  content: "";
}

/* line 570, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-motorcycle:before {
  content: "";
}

/* line 571, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-street-view:before {
  content: "";
}

/* line 572, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-heartbeat:before {
  content: "";
}

/* line 573, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-venus:before {
  content: "";
}

/* line 574, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mars:before {
  content: "";
}

/* line 575, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mercury:before {
  content: "";
}

/* line 576, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-transgender:before {
  content: "";
}

/* line 577, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-transgender-alt:before {
  content: "";
}

/* line 578, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-venus-double:before {
  content: "";
}

/* line 579, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mars-double:before {
  content: "";
}

/* line 580, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-venus-mars:before {
  content: "";
}

/* line 581, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mars-stroke:before {
  content: "";
}

/* line 582, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mars-stroke-v:before {
  content: "";
}

/* line 583, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-mars-stroke-h:before {
  content: "";
}

/* line 584, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-neuter:before {
  content: "";
}

/* line 585, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-facebook-official:before {
  content: "";
}

/* line 586, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-pinterest-p:before {
  content: "";
}

/* line 587, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-whatsapp:before {
  content: "";
}

/* line 588, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-server:before {
  content: "";
}

/* line 589, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-user-plus:before {
  content: "";
}

/* line 590, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-user-times:before {
  content: "";
}

/* line 591, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-hotel:before,
.fa-bed:before {
  content: "";
}

/* line 593, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-viacoin:before {
  content: "";
}

/* line 594, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-train:before {
  content: "";
}

/* line 595, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-subway:before {
  content: "";
}

/* line 596, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-medium:before {
  content: "";
}

/* line 597, ../scss/contents/14.0-font-awesome/_icons.scss */
.fa-telegram:before {
  content: "";
}

/* line 1, ../scss/contents/_smartbanner.scss */
#smartbanner {
  position: absolute;
  left: 0;
  top: -82px;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  height: 78px;
  font-family: 'Helvetica Neue',sans-serif;
  background: -webkit-linear-gradient(top, #f4f4f4 0%, #cdcdcd 100%);
  background-image: -ms-linear-gradient(top, #F4F4F4 0%, #CDCDCD 100%);
  background-image: -moz-linear-gradient(top, #F4F4F4 0%, #CDCDCD 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 9998;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  -webkit-text-size-adjust: none;
}

/* line 2, ../scss/contents/_smartbanner.scss */
#smartbanner, html.sb-animation {
  -webkit-transition: all .3s ease;
}

/* line 3, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-container {
  margin: 0 auto;
}

/* line 4, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-close {
  position: absolute;
  left: 5px;
  top: 30px;
  display: block;
  border: 2px solid #fff;
  width: 14px;
  height: 14px;
  font-family: 'ArialRoundedMTBold',Arial;
  font-size: 25px;
  line-height: 15px;
  text-align: center;
  color: #fff;
  background: #070707;
  text-decoration: none;
  text-shadow: none;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* line 5, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-close:active {
  font-size: 13px;
  color: #aaa;
}

/* line 6, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-icon {
  position: absolute;
  left: 30px;
  top: 10px;
  display: block;
  width: 57px;
  height: 57px;
  background: rgba(0, 0, 0, 0.6);
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* line 7, ../scss/contents/_smartbanner.scss */
#smartbanner.no-icon .sb-icon {
  display: none;
}

/* line 8, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-info {
  position: absolute;
  left: 98px;
  top: 18px;
  width: 44%;
  font-size: 11px;
  line-height: 1.2em;
  font-weight: bold;
  color: #6a6a6a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* line 9, ../scss/contents/_smartbanner.scss */
#smartbanner #smartbanner.no-icon .sb-info {
  left: 34px;
}

/* line 10, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-info strong {
  display: block;
  font-size: 13px;
  color: #4d4d4d;
  line-height: 18px;
}

/* line 11, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-info > span {
  display: block;
}

/* line 12, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-info em {
  font-style: normal;
  text-transform: uppercase;
}

/* line 13, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-button {
  position: absolute;
  right: 20px;
  top: 24px;
  padding: 0 10px;
  min-width: 10%;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
  color: #6a6a6a;
  background: -webkit-linear-gradient(top, #efefef 0%, #dcdcdc 100%);
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

/* line 14, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-button:active, #smartbanner .sb-button:hover {
  background: -webkit-linear-gradient(top, #dcdcdc 0%, #efefef 100%);
}

/* line 16, ../scss/contents/_smartbanner.scss */
#smartbanner .sb-icon.gloss:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 10px 10px 12px 12px;
}

/* line 18, ../scss/contents/_smartbanner.scss */
#smartbanner.android {
  border-color: #212228;
  background: #f6f5f7;
  border-top: 5px solid #88B131;
  box-shadow: none;
}

/* line 19, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-close {
  border: 0;
  width: 17px;
  height: 17px;
  line-height: 17px;
  color: #b1b1b3;
  background: none;
}

/* line 20, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-close:active {
  color: #eee;
}

/* line 21, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-info {
  color: #939293;
}

/* line 22, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-info strong {
  color: #464547;
}

/* line 23, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-button {
  min-width: 12%;
  padding: 1px;
  color: #4988d7;
  background: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 28px;
}

/* line 24, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-button span {
  text-align: center;
  display: block;
  padding: 0 10px;
  text-transform: none;
  text-shadow: none;
  box-shadow: none;
}

/* line 25, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-button:active, #smartbanner.android .sb-button:hover {
  background: none;
}

/* line 26, ../scss/contents/_smartbanner.scss */
#smartbanner.android .sb-button:active span, #smartbanner.android .sb-button:hover span {
  background: #2AC7E1;
}

/* line 28, ../scss/contents/_smartbanner.scss */
#smartbanner.windows .sb-icon {
  border-radius: 0px;
}

/* line 31, ../scss/contents/_smartbanner.scss */
body.smartbannerandroid .layout-wrap {
  top: 128px;
}
@media only screen and (max-width: 767px) {
  /* line 31, ../scss/contents/_smartbanner.scss */
  body.smartbannerandroid .layout-wrap {
    top: 0px;
  }
}

/* line 40, ../scss/contents/_smartbanner.scss */
#smartbanner.ios {
  border-color: #212228;
  background: #f6f5f7;
  border-top: 5px solid #88B131;
  box-shadow: none;
}

/* line 41, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-close {
  border: 0;
  width: 17px;
  height: 17px;
  line-height: 17px;
  color: #b1b1b3;
  background: none;
}

/* line 42, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-close:active {
  color: #eee;
}

/* line 43, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-info {
  color: #939293;
}

/* line 44, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-info strong {
  color: #464547;
}

/* line 45, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-button {
  min-width: 12%;
  padding: 1px;
  color: #4988d7;
  background: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 28px;
}

/* line 46, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-button span {
  text-align: center;
  display: block;
  padding: 0 10px;
  text-transform: none;
  text-shadow: none;
  box-shadow: none;
}

/* line 47, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-button:active, #smartbanner.ios .sb-button:hover {
  background: none;
}

/* line 48, ../scss/contents/_smartbanner.scss */
#smartbanner.ios .sb-button:active span, #smartbanner.ios .sb-button:hover span {
  background: #2AC7E1;
}

/* line 50, ../scss/contents/_smartbanner.scss */
#smartbanner.windows .sb-icon {
  border-radius: 0px;
}

/* line 53, ../scss/contents/_smartbanner.scss */
body.smartbannerios .layout-wrap {
  top: 128px;
}
@media only screen and (max-width: 767px) {
  /* line 53, ../scss/contents/_smartbanner.scss */
  body.smartbannerios .layout-wrap {
    top: 0px;
  }
}

/* line 1, ../scss/contents/gazzetta-audience-bar.scss */
#gazzetta-audience-bar {
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 14px;
  color: #000;
  max-height: 45px;
}
/* line 12, ../scss/contents/gazzetta-audience-bar.scss */
#gazzetta-audience-bar img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}

/**
* 5.0 Slider
* -----------------------------------------------------------------------------
*/
/* line 1, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 9, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

/* line 15, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 20, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* line 25, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel .owl-item {
  float: left;
}

/* line 28, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

/* line 32, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* line 40, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 50, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-slider {
  overflow: hidden;
}

/* line 53, ../scss/contents/5.0-slider/_5.0-slider.scss */
.grabbing {
  cursor: move;
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* line 59, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-slider a,
.owl-slider,
.slider-wrap .owl-nav a,
.slider-wrap .owl-nav {
  color: #fff;
}

/* line 65, ../scss/contents/5.0-slider/_5.0-slider.scss */
.soverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* line 73, ../scss/contents/5.0-slider/_5.0-slider.scss */
.owl-slider .scaption {
  position: absolute;
}

/*
.owl-right,
.owl-right .owl-item,
.owl-right .sitem img {
	height: 460px;
}
.owl-left,
.owl-left .owl-item,
.owl-left .sitem img {
	height: 478px;
}
.owl-none,
.owl-none .owl-item,
.owl-none .sitem img {
	height: 555px;
}
.owl-double,
.owl-double .owl-item,
.owl-double .sitem img {
	height: 325px;
}*/
/**
 * 5.1 Main Slider
 * -----------------------------------------------------------------------------
 */
/**
 * 
 * 5.2 General Slider
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-pagination {
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  text-align: center;
}

/* line 13, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 18, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 29, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  padding: 0 10px;
  font-size: 24px;
  line-height: 24px;
  font-family: arial !important;
}

/* line 42, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 0px;
}

/* line 45, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: 0px;
}

/* .owl-theme:hover .owl-controls .owl-buttons .owl-prev {
	left: 0;
}
.owl-theme:hover .owl-controls .owl-buttons .owl-next {
	right: 0;
} */
/* line 54, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-buttons .owl-prev .fa-chevron-left {
  padding: 10px 0 10px 0;
}

/* line 57, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-controls .owl-buttons .owl-next .fa-chevron-right {
  padding: 10px 0 10px 0;
}

/* line 60, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .scaption {
  width: 80%;
  left: 0;
  bottom: 0;
  padding: 50px 40px;
  z-index: 2;
}

/* line 67, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.other-slider,
.single-post .entry-image.other-slider {
  display: none;
}

/* line 71, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.main-slider-wrap.other-slider .scaption {
  padding: 70px 55px;
}

/* line 74, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.entry-image.other-slider .item,
.entry-image.featured-image {
  position: relative;
}

/* line 78, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.entry-image.featured-image .gallery-caption,
.entry-image.other-slider .gallery-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 8px 15px;
  text-align: left !important;
  color: #fff;
}

/* line 89, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.gallery-item .gallery-caption {
  display: none;
}

/* line 92, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-carousel .sitem img {
  width: 100%;
}

/* line 95, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .scaption h3 {
  display: block;
  font-size: 40px;
  margin: 0;
}

/* line 100, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .sdesc {
  margin-top: 15px;
}

/* line 103, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-none .scaption h3 {
  font-size: 50px;
}

/* line 106, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-none .sdesc {
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
}

/* line 111, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-double .scaption h3 {
  font-size: 24px;
}

/* line 114, ../scss/contents/5.0-slider/_5.2-general-slider.scss */
.owl-theme .owl-item .sitem > a:before {
  bottom: 0;
  content: "";
  display: block;
  height: 50%;
  width: 100%;
  position: absolute;
  z-index: 2;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
}

/**
 * 5.3 Featured Grid
 * -----------------------------------------------------------------------------
 */
 /**
 * 7.0 Content
 * -----------------------------------------------------------------------------
*/
/**
* 7.2 Post Block
* -----------------------------------------------------------------------------
*/
/* line 25, ../scss/contents/7.0-content/_7.2-post-block.scss */
.hide {
  display: none;
}

/* line 29, ../scss/contents/7.0-content/_7.2-post-block.scss */
.show {
  display: inline-block;
}

/* line 75, ../scss/contents/7.0-content/_7.2-post-block.scss */
.entry-image a {
  position: relative;
  display: block;
}
/* line 79, ../scss/contents/7.0-content/_7.2-post-block.scss */
.entry-image img {
  width: 100%;
}

/* line 392, ../scss/contents/7.0-content/_7.2-post-block.scss */
.sidebar .side-element {
  display: block;
  float: left;
  height: auto;
  margin-bottom: 20px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 400, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .sidebar .side-element.marketing {
    margin: 0 auto 10px -29px;
    width: 320px;
  }
  /* line 403, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .sidebar .side-element.marketing img {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 411, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .sidebar .side-element.marketing img {
    margin: 0 auto;
  }
}

/* line 420, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato {
  border-top: 1px solid #ebebeb;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 420, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato {
    float: left;
  }
}
/* line 427, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site), .listato .jsonserp-article {
  float: left;
  position: relative;
  display: block;
}
/* line 431, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-image, .listato .jsonserp-article .entry-image {
  float: left;
  position: relative;
  display: block;
  margin-right: 20px;
}
/* line 433, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-image .entry-image-icon, .listato .jsonserp-article .entry-image .entry-image-icon {
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  height: 30px;
  border-radius: 50%;
  width: 30px;
}
/* line 444, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-image .entry-image-icon i, .listato .jsonserp-article .entry-image .entry-image-icon i {
  line-height: 30px;
}
/* line 446, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-image .entry-image-icon i.fa-play, .listato .jsonserp-article .entry-image .entry-image-icon i.fa-play {
  padding-left: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 431, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-image, .listato .jsonserp-article .entry-image {
    margin-right: 15px;
  }
}
/* line 457, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-image img, .listato .jsonserp-article .entry-image img {
  width: 150px;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  /* line 457, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-image img, .listato .jsonserp-article .entry-image img {
    width: 80px;
    height: 80px;
  }
}
/* line 466, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-header, .listato .jsonserp-article .entry-header {
  float: left;
  position: relative;
  display: block;
  width: 610px;
}
@media only screen and (min-width: 1440px) {
  /* line 466, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header, .listato .jsonserp-article .entry-header {
    width: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 466, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header, .listato .jsonserp-article .entry-header {
    width: 690px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 466, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header, .listato .jsonserp-article .entry-header {
    width: 263px;
    margin-top: -5px;
  }
}
/* line 481, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-header.with-thumb, .listato .jsonserp-article .entry-header.with-thumb {
  max-width: 439px;
}
@media only screen and (min-width: 1440px) {
  /* line 481, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header.with-thumb, .listato .jsonserp-article .entry-header.with-thumb {
    max-width: 530px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 481, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header.with-thumb, .listato .jsonserp-article .entry-header.with-thumb {
    max-width: 520px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 481, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header.with-thumb, .listato .jsonserp-article .entry-header.with-thumb {
    max-width: 168px;
  }
}
/* line 493, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-header .entry-meta time, .listato a:not(.global-site) .entry-header .entry-meta .meta-author, .listato .jsonserp-article .entry-header .entry-meta time, .listato .jsonserp-article .entry-header .entry-meta .meta-author {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: #333333;
  font-weight: 100;
}
@media only screen and (max-width: 767px) {
  /* line 500, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header .entry-meta .meta-author, .listato .jsonserp-article .entry-header .entry-meta .meta-author {
    display: none;
  }
  /* line 503, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header .entry-meta .solr_separator, .listato .jsonserp-article .entry-header .entry-meta .solr_separator {
    display: none;
  }
}
/* line 507, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-header h3, .listato .jsonserp-article .entry-header h3 {
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  line-height: 1.125;
  font-weight: bold;
  margin-top: 6px;
}
/* line 513, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato a:not(.global-site) .entry-header h3 i, .listato .jsonserp-article .entry-header h3 i {
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  /* line 507, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato a:not(.global-site) .entry-header h3, .listato .jsonserp-article .entry-header h3 {
    font-size: 15px;
    line-height: 1.3;
  }
}
/* line 523, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato .share {
  float: left;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 523, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato .share {
    width: 1%;
  }
}
/* line 529, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato.big {
  position: relative;
  display: block;
  width: 100%;
}
/* line 534, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato.big .entry-image .entry-image-icon {
  height: 50px;
  width: 50px;
  font-size: 28px;
}
/* line 538, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato.big .entry-image .entry-image-icon i {
  line-height: 50px;
}
/* line 543, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato.big .entry-image img {
  width: 630px;
  height: 415px;
  max-width: none;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 543, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato.big .entry-image img {
    width: 711px;
    height: 445px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 543, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato.big .entry-image img {
    width: 281px;
    height: 175px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 557, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listato.big .entry-header {
    max-width: 100% !important;
  }
}
/* line 562, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listato.big .share {
  position: absolute;
  right: 5px;
  top: 5px;
}

/* line 571, ../scss/contents/7.0-content/_7.2-post-block.scss */
.listatonativeadv {
  float: left;
  position: relative;
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 571, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listatonativeadv {
    margin: 0 auto;
    text-align: center;
    margin-left: -20px;
    width: 320px;
  }
  /* line 583, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listatonativeadv img {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 571, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listatonativeadv {
    width: 100%;
  }
  /* line 590, ../scss/contents/7.0-content/_7.2-post-block.scss */
  .listatonativeadv img {
    margin: 0 auto;
  }
}

/* line 595, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share {
  position: relative;
  cursor: pointer;
}
/* line 598, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click {
  position: absolute;
  top: 20px;
  right: 0;
  width: 55px;
  background-color: #000;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 5;
}
/* line 609, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100px 100px 100px;
  border-color: transparent transparent #007bff transparent;
}
/* line 616, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a {
  width: 40px !important;
  height: 30px !important;
  border-radius: 3px;
  float: left;
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 5px;
  margin-left: 5px;
  cursor: pointer !important;
}
/* line 627, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a:first-child {
  margin-top: 5px;
}
/* line 630, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a.fb {
  background-color: #3b5998;
}
/* line 633, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a.tw {
  background-color: #55acee;
}
/* line 636, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a.gp {
  background-color: #e02f2f;
}
/* line 639, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a.wa {
  background-color: #65bc54;
}
/* line 642, ../scss/contents/7.0-content/_7.2-post-block.scss */
.share .share-on-click a i {
  color: #fff;
  font-size: 1.2em;
  margin-top: 5px;
}

/* line 651, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content {
  margin-bottom: 15px;
}
/* line 653, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content blockquote {
  visibility: hidden;
}
/* line 657, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content .instagram-embed-content blockquote {
  background: #FFF;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  margin: 1px;
  max-width: 658px;
  padding: 0;
  width: 99.375%;
  width: -webkit-calc(100% - 2px);
  width: calc(100% - 2px);
}
/* line 668, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content .instagram-embed-content blockquote > div {
  padding: 8px;
}
/* line 670, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content .instagram-embed-content blockquote > div a {
  color: #000;
  font-family: Arial,sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 17px;
  text-decoration: none;
  word-wrap: break-word;
}
/* line 682, ../scss/contents/7.0-content/_7.2-post-block.scss */
.fnc_embed_content .instagram-embed-content iframe {
  max-width: 658px;
  width: 99.375%;
  width: -webkit-calc(100% - 2px);
  width: calc(100% - 2px);
  min-width: 220px !important;
}

/**
 * 7.2b home
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap, .main-wrap.author, .main-wrap.category {
  margin-bottom: 0;
  width: 100%;
}
/* line 9, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap, .main-wrap.author .opener-wrap, .main-wrap.category .opener-wrap {
  background-color: #000;
  width: 980px;
  min-height: 1px;
  margin-left: 0;
  position: relative;
  float: left;
  color: #fff;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1440px) {
  /* line 9, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap, .main-wrap.author .opener-wrap, .main-wrap.category .opener-wrap {
    width: 1140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 9, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap, .main-wrap.author .opener-wrap, .main-wrap.category .opener-wrap {
    width: 108%;
    margin-left: -28px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 9, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap, .main-wrap.author .opener-wrap, .main-wrap.category .opener-wrap {
    width: 320px;
    margin-left: -24px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
}
/* line 38, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .focus-opener, .main-wrap.author .opener-wrap .focus-opener, .main-wrap.category .opener-wrap .focus-opener {
  display: block;
  position: relative;
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 38, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .focus-opener, .main-wrap.author .opener-wrap .focus-opener, .main-wrap.category .opener-wrap .focus-opener {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    width: 320px;
    float: none;
  }
}
/* line 50, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar, .main-wrap.author .opener-wrap #videobar, .main-wrap.category .opener-wrap #videobar {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 50, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar, .main-wrap.author .opener-wrap #videobar, .main-wrap.category .opener-wrap #videobar {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    box-ordinal-group: 3;
    background-color: #222222;
    margin-left: 0px;
    width: 320px;
    float: none;
  }
}
/* line 66, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item, .main-wrap.author .opener-wrap #videobar .single-videobar-item, .main-wrap.category .opener-wrap #videobar .single-videobar-item {
  margin-left: 5px;
  margin-bottom: 0;
  float: left;
  position: relative;
  display: block;
  width: 190px;
  height: 125px;
}
@media only screen and (max-width: 767px) {
  /* line 66, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item, .main-wrap.author .opener-wrap #videobar .single-videobar-item, .main-wrap.category .opener-wrap #videobar .single-videobar-item {
    width: 100%;
    margin-left: 0;
    height: auto;
    min-height: 55px;
    border-bottom: 1px solid #090909;
  }
  /* line 80, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child {
    border-bottom: none;
  }
  /* line 83, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item.last-tappo, .main-wrap.author .opener-wrap #videobar .single-videobar-item.last-tappo, .main-wrap.category .opener-wrap #videobar .single-videobar-item.last-tappo {
    display: none;
  }
  /* line 86, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:nth-child(5), .main-wrap.author .opener-wrap #videobar .single-videobar-item:nth-child(5), .main-wrap.category .opener-wrap #videobar .single-videobar-item:nth-child(5) {
    border-bottom: none;
  }
  /* line 89, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item.titlingmobile, .main-wrap.author .opener-wrap #videobar .single-videobar-item.titlingmobile, .main-wrap.category .opener-wrap #videobar .single-videobar-item.titlingmobile {
    min-height: 25px;
  }
  /* line 91, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item.titlingmobile h3, .main-wrap.author .opener-wrap #videobar .single-videobar-item.titlingmobile h3, .main-wrap.category .opener-wrap #videobar .single-videobar-item.titlingmobile h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 66, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item, .main-wrap.author .opener-wrap #videobar .single-videobar-item, .main-wrap.category .opener-wrap #videobar .single-videobar-item {
    width: 222px;
    height: 145px;
  }
  /* line 103, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:first-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:first-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:first-child a:hover {
    left: -2%;
  }
  /* line 106, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child a:hover {
    left: -11%;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 112, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:first-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:first-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:first-child a:hover {
    left: -3%;
  }
  /* line 115, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child a:hover {
    left: -14%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 66, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item, .main-wrap.author .opener-wrap #videobar .single-videobar-item, .main-wrap.category .opener-wrap #videobar .single-videobar-item {
    width: 187px;
    height: 124px;
    margin-left: 4px;
  }
  /* line 124, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child {
    display: none;
  }
  /* line 127, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item.last-tappo, .main-wrap.author .opener-wrap #videobar .single-videobar-item.last-tappo, .main-wrap.category .opener-wrap #videobar .single-videobar-item.last-tappo {
    display: none !important;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 134, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child a:hover {
    left: -14%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 139, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item:last-child a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item:last-child a:hover {
    left: -14%;
  }
}
/* line 145, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a, .main-wrap.author .opener-wrap #videobar .single-videobar-item a, .main-wrap.category .opener-wrap #videobar .single-videobar-item a {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  color: #ffffff;
  overflow-y: hidden;
}
@media only screen and (max-width: 767px) {
  /* line 145, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a, .main-wrap.author .opener-wrap #videobar .single-videobar-item a, .main-wrap.category .opener-wrap #videobar .single-videobar-item a {
    padding: 20px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 157, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item a:hover {
    position: absolute;
    top: -10%;
    width: 222px;
    height: 145px;
    left: -5px;
    z-index: 99;
    background-color: #000;
  }
  /* line 165, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a:hover img, .main-wrap.author .opener-wrap #videobar .single-videobar-item a:hover img, .main-wrap.category .opener-wrap #videobar .single-videobar-item a:hover img {
    padding: 5px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 172, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a:hover, .main-wrap.author .opener-wrap #videobar .single-videobar-item a:hover, .main-wrap.category .opener-wrap #videobar .single-videobar-item a:hover {
    position: absolute;
    top: -7%;
    width: 252px;
    height: 167px;
    left: -5px;
    z-index: 99;
    background-color: #000;
  }
  /* line 180, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a:hover img, .main-wrap.author .opener-wrap #videobar .single-videobar-item a:hover img, .main-wrap.category .opener-wrap #videobar .single-videobar-item a:hover img {
    padding: 5px;
  }
}
/* line 186, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a img, .main-wrap.author .opener-wrap #videobar .single-videobar-item a img, .main-wrap.category .opener-wrap #videobar .single-videobar-item a img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 186, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a img, .main-wrap.author .opener-wrap #videobar .single-videobar-item a img, .main-wrap.category .opener-wrap #videobar .single-videobar-item a img {
    position: relative;
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 14px;
  }
}
/* line 202, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a .gradient, .main-wrap.author .opener-wrap #videobar .single-videobar-item a .gradient, .main-wrap.category .opener-wrap #videobar .single-videobar-item a .gradient {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  /* Old Browsers */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(left top, left bottom, color-stop(55%, rgba(255, 255, 255, 0)), color-stop(65%, rgba(255, 255, 255, 0.13)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  /* Chrome, Safari4+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* IE 10+ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.13) 65%, rgba(0, 0, 0, 0.6) 100%);
  /* W3C */
}
@media only screen and (max-width: 767px) {
  /* line 202, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a .gradient, .main-wrap.author .opener-wrap #videobar .single-videobar-item a .gradient, .main-wrap.category .opener-wrap #videobar .single-videobar-item a .gradient {
    display: none;
  }
}
/* line 227, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a h3, .main-wrap.author .opener-wrap #videobar .single-videobar-item a h3, .main-wrap.category .opener-wrap #videobar .single-videobar-item a h3 {
  bottom: 10px;
  left: 10px;
  position: absolute;
  z-index: 3;
  font-size: 13px;
  line-height: 16px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  /* line 227, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a h3, .main-wrap.author .opener-wrap #videobar .single-videobar-item a h3, .main-wrap.category .opener-wrap #videobar .single-videobar-item a h3 {
    font-size: 15px;
    float: left;
    position: relative;
    display: block;
    left: 0;
    bottom: 0;
    line-height: 20px;
    max-width: 180px;
  }
}
/* line 248, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a span.circlecontainer, .main-wrap.author .opener-wrap #videobar .single-videobar-item a span.circlecontainer, .main-wrap.category .opener-wrap #videobar .single-videobar-item a span.circlecontainer {
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  position: absolute;
  z-index: 3;
  padding-top: 4px;
  border-radius: 20px;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 248, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar .single-videobar-item a span.circlecontainer, .main-wrap.author .opener-wrap #videobar .single-videobar-item a span.circlecontainer, .main-wrap.category .opener-wrap #videobar .single-videobar-item a span.circlecontainer {
    top: 45px;
    left: 44px;
    right: 0;
    opacity: 0.7;
  }
}
/* line 269, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar .single-videobar-item a:hover span.circlecontainer i, .main-wrap.author .opener-wrap #videobar .single-videobar-item a:hover span.circlecontainer i, .main-wrap.category .opener-wrap #videobar .single-videobar-item a:hover span.circlecontainer i {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 276, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item {
    height: 105px;
  }
  /* line 279, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item:last-child, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item:last-child, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item:last-child {
    display: block;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 276, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item {
    height: 107px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 276, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item {
    height: 125px;
  }
}
/* line 293, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item:last-child a:hover, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item:last-child a:hover, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item:last-child a:hover {
  left: -14%;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 299, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item a:hover, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item a:hover, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item a:hover {
    height: 130px;
    left: -5px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 299, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item a:hover, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item a:hover, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item a:hover {
    height: 145px;
    left: -5px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 311, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item a span.circlecontainer, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item a span.circlecontainer, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item a span.circlecontainer {
    top: 30px;
  }
}
/* line 316, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap #videobar.gazzetta .single-videobar-item a img, .main-wrap.author .opener-wrap #videobar.gazzetta .single-videobar-item a img, .main-wrap.category .opener-wrap #videobar.gazzetta .single-videobar-item a img {
  height: auto;
  bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 324, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .opener-news, .main-wrap.author .opener-wrap .opener-news, .main-wrap.category .opener-wrap .opener-news {
    width: 100%;
  }
}
/* line 1, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news, .main-wrap.author .opener-wrap #breaking-news, .main-wrap.category .opener-wrap #breaking-news {
  background-color: #f5000f;
  width: 100%;
  float: left;
  height: 47px;
  margin-bottom: 3px;
  position: relative;
  display: none;
  z-index: 900;
}
/* line 10, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news.active, .main-wrap.author .opener-wrap #breaking-news.active, .main-wrap.category .opener-wrap #breaking-news.active {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 1, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news, .main-wrap.author .opener-wrap #breaking-news, .main-wrap.category .opener-wrap #breaking-news {
    margin-bottom: 0;
    height: auto;
  }
}
/* line 18, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul, .main-wrap.author .opener-wrap #breaking-news ul, .main-wrap.category .opener-wrap #breaking-news ul {
  padding-left: 15px;
  position: relative;
  display: block;
  float: left;
  margin: 0;
  width: 100%;
}
/* line 25, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li, .main-wrap.author .opener-wrap #breaking-news ul li, .main-wrap.category .opener-wrap #breaking-news ul li {
  float: left;
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  /* line 25, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news ul li, .main-wrap.author .opener-wrap #breaking-news ul li, .main-wrap.category .opener-wrap #breaking-news ul li {
    line-height: 20px;
    font-size: 17px;
  }
}
/* line 37, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li.intestazione, .main-wrap.author .opener-wrap #breaking-news ul li.intestazione, .main-wrap.category .opener-wrap #breaking-news ul li.intestazione {
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  /* line 37, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news ul li.intestazione, .main-wrap.author .opener-wrap #breaking-news ul li.intestazione, .main-wrap.category .opener-wrap #breaking-news ul li.intestazione {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
  }
  /* line 44, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news ul li.intestazione i, .main-wrap.author .opener-wrap #breaking-news ul li.intestazione i, .main-wrap.category .opener-wrap #breaking-news ul li.intestazione i {
    transform: rotate(90deg);
  }
}
/* line 49, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li.news, .main-wrap.author .opener-wrap #breaking-news ul li.news, .main-wrap.category .opener-wrap #breaking-news ul li.news {
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 49, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news ul li.news, .main-wrap.author .opener-wrap #breaking-news ul li.news, .main-wrap.category .opener-wrap #breaking-news ul li.news {
    margin-left: 0;
    font-size: 16px;
  }
}
/* line 55, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li.news a, .main-wrap.author .opener-wrap #breaking-news ul li.news a, .main-wrap.category .opener-wrap #breaking-news ul li.news a {
  color: #fff !important;
}
/* line 58, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li.news a:hover, .main-wrap.author .opener-wrap #breaking-news ul li.news a:hover, .main-wrap.category .opener-wrap #breaking-news ul li.news a:hover {
  color: #ddd !important;
}
/* line 63, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
.home-wrap .opener-wrap #breaking-news ul li.close, .main-wrap.author .opener-wrap #breaking-news ul li.close, .main-wrap.category .opener-wrap #breaking-news ul li.close {
  float: right;
  margin-right: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 63, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  .home-wrap .opener-wrap #breaking-news ul li.close, .main-wrap.author .opener-wrap #breaking-news ul li.close, .main-wrap.category .opener-wrap #breaking-news ul li.close {
    position: absolute;
    right: 5px;
    top: 5px;
  }
}
/* line 331, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura, .main-wrap.author .opener-wrap .apertura, .main-wrap.category .opener-wrap .apertura {
  position: relative;
  float: left;
  width: 100%;
  height: 427px;
  color: #ffffff;
  border-bottom: 1px solid #343434;
  border-right: 1px solid #343434;
  overflow: hidden;
}
/* line 341, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura .entry-image-icon, .main-wrap.author .opener-wrap .apertura .entry-image-icon, .main-wrap.category .opener-wrap .apertura .entry-image-icon {
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 28px;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  /* line 341, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura .entry-image-icon, .main-wrap.author .opener-wrap .apertura .entry-image-icon, .main-wrap.category .opener-wrap .apertura .entry-image-icon {
    top: 160px;
    bottom: auto;
  }
}
/* line 357, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura .entry-image-icon i, .main-wrap.author .opener-wrap .apertura .entry-image-icon i, .main-wrap.category .opener-wrap .apertura .entry-image-icon i {
  line-height: 40px;
}
/* line 359, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura .entry-image-icon i.fa-play, .main-wrap.author .opener-wrap .apertura .entry-image-icon i.fa-play, .main-wrap.category .opener-wrap .apertura .entry-image-icon i.fa-play {
  padding-left: 5px;
}
/* line 363, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura.forceResized, .main-wrap.author .opener-wrap .apertura.forceResized, .main-wrap.category .opener-wrap .apertura.forceResized {
  overflow: hidden;
}
/* line 365, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura.forceResized a img, .main-wrap.author .opener-wrap .apertura.forceResized a img, .main-wrap.category .opener-wrap .apertura.forceResized a img {
  bottom: auto;
  max-width: none;
  height: 100%;
  width: auto;
}
@media only screen and (max-width: 767px) {
  /* line 365, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura.forceResized a img, .main-wrap.author .opener-wrap .apertura.forceResized a img, .main-wrap.category .opener-wrap .apertura.forceResized a img {
    width: 320px;
    max-height: 214px;
  }
}
/* line 376, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura.forceResizedVertical, .main-wrap.author .opener-wrap .apertura.forceResizedVertical, .main-wrap.category .opener-wrap .apertura.forceResizedVertical {
  overflow: hidden;
}
/* line 378, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura.forceResizedVertical a img, .main-wrap.author .opener-wrap .apertura.forceResizedVertical a img, .main-wrap.category .opener-wrap .apertura.forceResizedVertical a img {
  bottom: auto;
  max-width: none;
  height: auto;
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  /* line 331, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura, .main-wrap.author .opener-wrap .apertura, .main-wrap.category .opener-wrap .apertura {
    height: 508px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 331, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura, .main-wrap.author .opener-wrap .apertura, .main-wrap.category .opener-wrap .apertura {
    border-right: 0;
    width: 768px;
    height: 514px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 331, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura, .main-wrap.author .opener-wrap .apertura, .main-wrap.category .opener-wrap .apertura {
    width: 320px;
    height: auto;
    border-right: none;
  }
}
/* line 401, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a, .main-wrap.author .opener-wrap .apertura a, .main-wrap.category .opener-wrap .apertura a {
  cursor: default;
  width: 100%;
  height: 100%;
}
/* line 405, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a img, .main-wrap.author .opener-wrap .apertura a img, .main-wrap.category .opener-wrap .apertura a img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 405, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura a img, .main-wrap.author .opener-wrap .apertura a img, .main-wrap.category .opener-wrap .apertura a img {
    width: 320px;
    position: relative;
    float: left;
    display: block;
  }
}
/* line 419, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a .gradient, .main-wrap.author .opener-wrap .apertura a .gradient, .main-wrap.category .opener-wrap .apertura a .gradient {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: transparent repeat scroll 0% 0%;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.13) 20%, rgba(0, 0, 0, 0.6) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.13)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.13) 20%, rgba(0, 0, 0, 0.6) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.13) 20%, rgba(0, 0, 0, 0.6) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.13) 20%, rgba(0, 0, 0, 0.6) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.13) 20%, rgba(0, 0, 0, 0.6) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#99000000',GradientType=0 );
  /* IE6-9 */
}
@media only screen and (max-width: 767px) {
  /* line 419, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura a .gradient, .main-wrap.author .opener-wrap .apertura a .gradient, .main-wrap.category .opener-wrap .apertura a .gradient {
    display: none;
  }
}
/* line 439, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a .title-container, .main-wrap.author .opener-wrap .apertura a .title-container, .main-wrap.category .opener-wrap .apertura a .title-container {
  bottom: 25px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  /* line 439, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura a .title-container, .main-wrap.author .opener-wrap .apertura a .title-container, .main-wrap.category .opener-wrap .apertura a .title-container {
    width: 320px;
    position: relative;
    float: left;
    display: block;
    bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 458, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a .title-container span.meta-apertura, .main-wrap.author .opener-wrap .apertura a .title-container span.meta-apertura, .main-wrap.category .opener-wrap .apertura a .title-container span.meta-apertura {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  color: #ccc;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 458, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura a .title-container span.meta-apertura, .main-wrap.author .opener-wrap .apertura a .title-container span.meta-apertura, .main-wrap.category .opener-wrap .apertura a .title-container span.meta-apertura {
    margin-top: 15px;
    margin-bottom: 8px;
  }
}
/* line 472, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a .title-container h2, .main-wrap.author .opener-wrap .apertura a .title-container h2, .main-wrap.category .opener-wrap .apertura a .title-container h2 {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  font-size: 42px;
  line-height: 44px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #ffffff;
}
/* line 482, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura a .title-container h2 i, .main-wrap.author .opener-wrap .apertura a .title-container h2 i, .main-wrap.category .opener-wrap .apertura a .title-container h2 i {
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  /* line 472, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura a .title-container h2, .main-wrap.author .opener-wrap .apertura a .title-container h2, .main-wrap.category .opener-wrap .apertura a .title-container h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
/* line 493, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .apertura .share, .main-wrap.author .opener-wrap .apertura .share, .main-wrap.category .opener-wrap .apertura .share {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 3;
  cursor: pointer;
  color: #ffffff !important;
}
@media only screen and (max-width: 767px) {
  /* line 493, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura .share, .main-wrap.author .opener-wrap .apertura .share, .main-wrap.category .opener-wrap .apertura .share {
    top: 10px;
    right: 10px;
  }
  /* line 503, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .apertura .share i, .main-wrap.author .opener-wrap .apertura .share i, .main-wrap.category .opener-wrap .apertura .share i {
    font-size: 1.3em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 509, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener, .main-wrap.author .opener-wrap .spalla-opener, .main-wrap.category .opener-wrap .spalla-opener {
    width: 41.66667%;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 509, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener, .main-wrap.author .opener-wrap .spalla-opener, .main-wrap.category .opener-wrap .spalla-opener {
    margin-left: -5px;
    margin-top: -391px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 509, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener, .main-wrap.author .opener-wrap .spalla-opener, .main-wrap.category .opener-wrap .spalla-opener {
    margin-left: -10px;
    margin-top: -508px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 525, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news, .main-wrap.author .opener-wrap .sottoapertura-news, .main-wrap.category .opener-wrap .sottoapertura-news {
    width: 58.33333%;
    border-right: 1px solid #343434;
  }
}
@media only screen and (max-width: 767px) {
  /* line 525, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news, .main-wrap.author .opener-wrap .sottoapertura-news, .main-wrap.category .opener-wrap .sottoapertura-news {
    width: 100%;
  }
}
/* line 535, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco {
  position: relative;
  float: left;
  display: block;
  margin-left: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  border-right: 1px solid #343434;
  width: 100%;
}
/* line 546, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .entry-image-icon, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .entry-image-icon, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .entry-image-icon {
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 90px;
  right: 5px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 18px;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  /* line 546, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .entry-image-icon, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .entry-image-icon, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .entry-image-icon {
    top: 65px;
    right: auto;
    left: 65px;
  }
}
/* line 563, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i {
  line-height: 30px;
}
/* line 565, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i.fa-play, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i.fa-play, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .entry-image-icon i.fa-play {
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 535, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco {
    width: 430px;
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 535, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco {
    width: 100%;
    padding-top: 0;
    border-right: none;
  }
  /* line 579, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(2) .soppalco-item:nth-child(3), .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(2) .soppalco-item:nth-child(3), .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(2) .soppalco-item:nth-child(3) {
    border: none;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 587, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container {
    float: left;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 594, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container {
    float: left;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 602, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(odd) .soppalco-item:nth-child(odd), .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(odd) .soppalco-item:nth-child(odd), .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(odd) .soppalco-item:nth-child(odd) {
    clear: both;
  }
  /* line 607, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(even) .soppalco-item:nth-child(even), .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(even) .soppalco-item:nth-child(even), .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-line-container:nth-child(even) .soppalco-item:nth-child(even) {
    clear: both;
  }
}
/* line 613, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item {
  position: relative;
  float: left;
  display: block;
  color: #ffffff;
  width: 190px;
  min-height: 220px;
  margin-left: 20px;
}
@media only screen and (min-width: 1440px) {
  /* line 613, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item {
    margin-left: 24px;
    width: 222px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 613, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #343434;
    min-height: 80px;
    margin-bottom: 0;
  }
}
/* line 638, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a {
  width: 100%;
  height: 100%;
}
/* line 641, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img {
  position: relative;
  float: left;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 641, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
  }
}
/* line 652, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container {
  position: relative;
  float: left;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 652, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container {
    width: 189px;
  }
}
/* line 661, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  color: #ccc;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 661, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura {
    margin-top: 0;
    font-size: 12px;
    margin-bottom: 5px;
  }
  /* line 675, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura .signature, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura .signature, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container span.meta-apertura .signature {
    display: none;
  }
}
/* line 680, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4 {
  float: left;
  position: relative;
  display: block;
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #ffffff;
}
/* line 690, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4 i, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4 i, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container h4 i {
  font-style: italic;
}
/* line 695, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container.no-data h4, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container.no-data h4, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item a .title-container.no-data h4 {
  margin-bottom: 8px;
  margin-top: 15px;
}
/* line 702, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 3;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  /* line 702, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share, .main-wrap.author .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share, .main-wrap.category .opener-wrap .sottoapertura-news .soppalco .soppalco-item .share {
    top: 18px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 716, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener, .main-wrap.author .opener-wrap .spalla-opener, .main-wrap.category .opener-wrap .spalla-opener {
    padding-left: 0;
    padding-bottom: 20px;
  }
}
/* line 722, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener .miasquadra, .main-wrap.author .opener-wrap .spalla-opener .miasquadra, .main-wrap.category .opener-wrap .spalla-opener .miasquadra {
  width: 100%;
  clear: both;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 722, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .miasquadra, .main-wrap.author .opener-wrap .spalla-opener .miasquadra, .main-wrap.category .opener-wrap .spalla-opener .miasquadra {
    float: left;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 722, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .miasquadra, .main-wrap.author .opener-wrap .spalla-opener .miasquadra, .main-wrap.category .opener-wrap .spalla-opener .miasquadra {
    width: 300px;
    margin: 0 auto 0 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 722, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .miasquadra, .main-wrap.author .opener-wrap .spalla-opener .miasquadra, .main-wrap.category .opener-wrap .spalla-opener .miasquadra {
    margin: 0 auto;
    width: 305px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 722, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .miasquadra, .main-wrap.author .opener-wrap .spalla-opener .miasquadra, .main-wrap.category .opener-wrap .spalla-opener .miasquadra {
    display: none;
  }
}
/* line 743, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener .miasquadra .blockcontent, .home-wrap .opener-wrap .spalla-opener .miasquadra .newsletter, .main-wrap.author .opener-wrap .spalla-opener .miasquadra .blockcontent, .main-wrap.author .opener-wrap .spalla-opener .miasquadra .newsletter, .main-wrap.category .opener-wrap .spalla-opener .miasquadra .blockcontent, .main-wrap.category .opener-wrap .spalla-opener .miasquadra .newsletter {
  width: 300px;
  margin: 0 auto;
}
/* line 747, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener .miasquadra .newsletter, .main-wrap.author .opener-wrap .spalla-opener .miasquadra .newsletter, .main-wrap.category .opener-wrap .spalla-opener .miasquadra .newsletter {
  border-radius: 0;
  margin-left: 3px;
}
/* line 750, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener .miasquadra .newsletter .container, .main-wrap.author .opener-wrap .spalla-opener .miasquadra .newsletter .container, .main-wrap.category .opener-wrap .spalla-opener .miasquadra .newsletter .container {
  background-color: #fff;
  color: #000;
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 756, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .miasquadra .newsletter .container input[type="email"], .main-wrap.author .opener-wrap .spalla-opener .miasquadra .newsletter .container input[type="email"], .main-wrap.category .opener-wrap .spalla-opener .miasquadra .newsletter .container input[type="email"] {
    margin-left: 0;
    width: 195px;
  }
}
/* line 764, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener .contain-adv, .main-wrap.author .opener-wrap .spalla-opener .contain-adv, .main-wrap.category .opener-wrap .spalla-opener .contain-adv {
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 764, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .contain-adv, .main-wrap.author .opener-wrap .spalla-opener .contain-adv, .main-wrap.category .opener-wrap .spalla-opener .contain-adv {
    text-align: center;
  }
  /* line 768, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .opener-wrap .spalla-opener .contain-adv img, .main-wrap.author .opener-wrap .spalla-opener .contain-adv img, .main-wrap.category .opener-wrap .spalla-opener .contain-adv img {
    margin: 0 auto !important;
  }
}
/* line 773, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .opener-wrap .spalla-opener #oas_Frame1, .main-wrap.author .opener-wrap .spalla-opener #oas_Frame1, .main-wrap.category .opener-wrap .spalla-opener #oas_Frame1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 779, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 779, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    padding-left: 0;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 779, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 779, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    padding-left: 20px;
  }
}
/* line 796, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .home-title, .main-wrap.author .home-title, .main-wrap.category .home-title {
  border-bottom: 3px solid;
  padding-top: 9px;
  padding-bottom: 9px;
}
/* line 800, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .home-title .lastnews, .main-wrap.author .home-title .lastnews, .main-wrap.category .home-title .lastnews {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  /* line 800, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .home-title .lastnews, .main-wrap.author .home-title .lastnews, .main-wrap.category .home-title .lastnews {
    font-size: 18px;
  }
}
/* line 809, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .home-title .date, .main-wrap.author .home-title .date, .main-wrap.category .home-title .date {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: lighter;
  color: #333333;
  line-height: 27px;
}
/* line 815, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .home-title .date i, .main-wrap.author .home-title .date i, .main-wrap.category .home-title .date i {
  margin-right: 5px;
}
/* line 820, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .sidebar, .main-wrap.author .sidebar, .main-wrap.category .sidebar {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 820, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .sidebar, .main-wrap.author .sidebar, .main-wrap.category .sidebar {
    float: left;
    margin-left: 4px;
    padding-left: 0;
    padding-right: 20px;
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 820, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .sidebar, .main-wrap.author .sidebar, .main-wrap.category .sidebar {
    width: 100%;
    padding-right: 20px;
    padding: 0;
  }
}
/* line 838, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .gotoarchive, .main-wrap.author .gotoarchive, .main-wrap.category .gotoarchive {
  background-color: #222222;
  text-align: center;
  border-radius: 3px;
  height: 60px;
  margin-bottom: 20px;
  padding-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 838, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .gotoarchive, .main-wrap.author .gotoarchive, .main-wrap.category .gotoarchive {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 838, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .gotoarchive, .main-wrap.author .gotoarchive, .main-wrap.category .gotoarchive {
    float: left;
    margin-bottom: 20px;
    margin-left: -19px;
    margin-top: 20px;
    padding-top: 15px;
    width: 310px;
  }
}
/* line 858, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .gotoarchive a, .main-wrap.author .gotoarchive a, .main-wrap.category .gotoarchive a {
  color: #fff;
  font-size: 24px;
}
/* line 861, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .gotoarchive a i, .main-wrap.author .gotoarchive a i, .main-wrap.category .gotoarchive a i {
  font-size: 1em;
}
@media only screen and (max-width: 767px) {
  /* line 866, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    margin-left: -4px;
    margin-right: -4px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 866, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie, .main-wrap.author .listanotizie, .main-wrap.category .listanotizie {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 877, ../scss/contents/7.0-content/_7.2b-home.scss */
  .home-wrap .listanotizie img.listatonativeadv, .main-wrap.author .listanotizie img.listatonativeadv, .main-wrap.category .listanotizie img.listatonativeadv {
    width: 100%;
  }
}
/* line 882, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .msg, .main-wrap.author .msg, .main-wrap.category .msg {
  position: absolute;
  background-color: black;
  top: 150px;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0.4;
  padding: 20px;
}
/* line 892, ../scss/contents/7.0-content/_7.2b-home.scss */
.home-wrap .msg-bar-streaming, .main-wrap.author .msg-bar-streaming, .main-wrap.category .msg-bar-streaming {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: black;
  opacity: 0.1;
  text-align: center;
  cursor: pointer;
}

/* line 905, ../scss/contents/7.0-content/_7.2b-home.scss */
.focus-opener .miasquadra .newsletter {
  border-color: #484848;
}
/* line 907, ../scss/contents/7.0-content/_7.2b-home.scss */
.focus-opener .miasquadra .newsletter .container {
  background-color: #121212 !important;
  color: #fff !important;
}
/* line 911, ../scss/contents/7.0-content/_7.2b-home.scss */
.focus-opener .miasquadra .newsletter header.white {
  background: #000;
  color: #fff;
}

/**
 * 7.3 Single Post
 * -----------------------------------------------------------------------------
 */
/* line 1, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news {
  background-color: #f5000f;
  width: 100%;
  float: left;
  height: 47px;
  margin-bottom: 3px;
  position: relative;
  display: none;
  z-index: 900;
}
/* line 10, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news.active {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 1, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news {
    margin-bottom: 0;
    height: auto;
  }
}
/* line 18, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul {
  padding-left: 15px;
  position: relative;
  display: block;
  float: left;
  margin: 0;
  width: 100%;
}
/* line 25, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li {
  float: left;
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  /* line 25, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news ul li {
    line-height: 20px;
    font-size: 17px;
  }
}
/* line 37, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li.intestazione {
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  /* line 37, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news ul li.intestazione {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 100%;
  }
  /* line 44, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news ul li.intestazione i {
    transform: rotate(90deg);
  }
}
/* line 49, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li.news {
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 49, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news ul li.news {
    margin-left: 0;
    font-size: 16px;
  }
}
/* line 55, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li.news a {
  color: #fff !important;
}
/* line 58, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li.news a:hover {
  color: #ddd !important;
}
/* line 63, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
#breaking-news ul li.close {
  float: right;
  margin-right: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 63, ../scss/contents/7.0-content/_7.16-breaking-news.scss */
  #breaking-news ul li.close {
    position: absolute;
    right: 5px;
    top: 5px;
  }
}

    /*body.single-post{
    #sb-site {
        overflow: visible;
    }

    .boxed {
        overflow: visible;
    }

    .main-wrap {
        overflow: visible;
    }
}*/
/* line 25, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .single-post {
  margin: 0;
  padding: 0;
}
/* line 30, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .sidebararticolo {
  margin-top: 20px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
/* line 36, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .sidebararticolo .frame1onsidebar {
  margin-bottom: 20px;
}
/* line 39, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .sidebararticolo .Opta-js-main {
  padding-bottom: 0px;
}
/* line 42, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .sidebararticolo .Opta_W {
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  /* line 30, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .sidebararticolo {
    float: left;
    padding-left: 0;
    width: 280px;
    margin-left: -4px;
    padding-bottom: 20px;
  }
  /* line 51, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .sidebararticolo .advcenter {
    margin-left: -10px;
    margin-bottom: 10px;
  }
  /* line 55, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .sidebararticolo .advcenter .contain-adv div#oas_Frame2 {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 30, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .sidebararticolo {
    width: 100%;
  }
}
/* line 66, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content {
  margin-top: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  /* line 66, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content {
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 66, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content {
    width: 100%;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 66, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 66, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content {
    padding-left: 20px;
  }
}
/* line 86, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-gallery {
  max-width: 612px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1440px) {
  /* line 86, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-gallery {
    float: none;
    margin: 0 auto 20px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 86, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-gallery {
    float: none;
    margin: 0 auto;
  }
}
/* line 98, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-gallery .item {
  text-align: center;
  background: #000;
}
/* line 102, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-gallery img {
  width: auto;
  max-width: inherit;
  height: 415px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  /* line 102, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-gallery img {
    max-width: 100%;
    height: auto;
  }
}
/* line 113, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-image.featured-image {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 113, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-image.featured-image {
    margin-left: -24px;
    width: 118%;
  }
}
/* line 120, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text {
  padding-bottom: 40px;
  font-size: 18px;
  line-height: 28px;
  clear: both;
}
/* line 125, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text table, .single-content > * > .entry-content .entry-content-text td, .single-content > * > .entry-content .entry-content-text tr {
  border-color: #ededed;
}
/* line 128, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text table {
  max-width: 100%;
  overflow: hidden;
  word-break: break-all;
}
/* line 132, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text table tbody {
  max-width: 100%;
  overflow: hidden;
  word-break: break-all;
}
/* line 136, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text table tbody tr {
  max-width: 100%;
  word-break: break-all;
  overflow: hidden;
}
/* line 144, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text blockquote:before {
  content: "\201C";
  font-size: 5.5em;
  line-height: 0.1em;
  margin-right: 0.1em;
  vertical-align: -0.4em;
}
/* line 151, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text blockquote:after {
  content: "\201D";
  font-size: 5.5em;
  line-height: 0.1em;
  margin-left: 0.1em;
  vertical-align: -0.6em;
}
/* line 159, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text blockquote {
  border-left: 10px;
  border-right: 10px;
  margin: 1.5em 10px 1.5em 10px;
  padding: 0.5em 10px 0.5em 10px;
  quotes: "“" "”" "‘" "’";
  width: 80%;
  margin: 0 auto 0 auto;
}
@media only screen and (max-width: 767px) {
  /* line 159, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text blockquote {
    width: 100%;
  }
}
/* line 172, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text blockquote p {
  display: inline;
}
@media only screen and (max-width: 767px) {
  /* line 120, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text {
    font-size: 17px;
    line-height: 26px;
  }
}
/* line 182, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text > *:not(h2):not(h3):not(h4):not(h5):not(h6) {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  /* line 182, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text > *:not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-size: 17px;
    line-height: 26px;
  }
}
/* line 193, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text h2, .single-content > * > .entry-content .entry-content-text h3, .single-content > * > .entry-content .entry-content-text h4, .single-content > * > .entry-content .entry-content-text h5, .single-content > * > .entry-content .entry-content-text h6 {
  font-weight: bold;
}
/* line 198, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text p:first-child::first-letter {
  font-size: 44px;
  margin-top: 40px;
  display: inline;
  width: 40px;
  float: none;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  /* line 198, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text p:first-child::first-letter {
    font-size: 38px;
  }
}
/* line 214, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text blockquote p:first-child::first-letter {
  vertical-align: baseline !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  font-style: inherit !important;
  font-size: 100% !important;
  border: 0 none !important;
  outline: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: unset !important;
}
/* line 228, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text p a {
  text-decoration: underline;
}
/* line 232, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text iframe.twitter-tweet {
  margin: 0 auto !important;
}
/* line 237, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text img.aligncenter {
  margin: 5px auto;
}
/* line 240, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text img.alignright {
  float: right;
  margin-left: 10px;
}
/* line 244, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text img.alignleft {
  float: left;
  margin-right: 10px;
}
/* line 252, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text figure {
  max-width: 100%;
}
/* line 255, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text figure.aligncenter {
  margin: 5px auto;
}
/* line 258, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text figure.alignright {
  float: right;
  margin-left: 10px;
}
/* line 262, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text figure.alignleft {
  float: left;
  margin-right: 10px;
}
/* line 267, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text figure figcaption {
  font-size: 13px;
  text-align: center;
  line-height: 16px;
  margin-top: 2px;
}
@media only screen and (max-width: 767px) {
  /* line 267, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text figure figcaption {
    font-size: 12px;
  }
}
/* line 277, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content > * > .entry-content .entry-content-text .wp-caption {
  background-color: #f6f6f6;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 282, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content > * > .entry-content .entry-content-text iframe {
    width: 320px;
    max-width: 100%;
    height: auto;
  }
}
/* line 294, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content img.aligncenter {
  margin: 5px auto;
  text-align: center;
}
/* line 298, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content b {
  font-weight: bold;
}

/* line 304, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-header.media-above, .entry-header.media-fullwidth {
  padding-bottom: 30px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
/* line 309, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-header.media-above {
  padding-top: 20px;
}

/* line 314, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-excerpt {
  margin-bottom: 25px;
}

/* line 318, ../scss/contents/7.0-content/_7.3-single-post.scss */
.page-links {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
}

/* line 324, ../scss/contents/7.0-content/_7.3-single-post.scss */
.edit-link {
  display: inline-block;
  margin-top: 20px;
}

/* line 329, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tag-cat {
  margin-top: 40px;
}

/* line 333, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tags {
  font-size: 17px;
  margin-bottom: 10px;
}
/* line 336, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tags ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* line 342, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tags li {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
/* line 349, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tags .entry-tag-title {
  border: 2px none;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-right: 1px;
}
/* line 360, ../scss/contents/7.0-content/_7.3-single-post.scss */
.entry-tags a {
  border: none;
  display: inline-block;
  font-size: 17px;
  margin-right: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

/* line 371, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-avatar img {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

/* line 377, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-position {
  color: #999;
  margin-left: 15px;
}

/* line 382, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-desc {
  margin-top: 7px;
}

/* line 386, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-social {
  margin-top: 7px;
}
/* line 388, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-social a {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 5px;
}
/* line 393, ../scss/contents/7.0-content/_7.3-single-post.scss */
.author-box-social .plus {
  font-family: arial;
}

/* line 399, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 399, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-breadcrumbs {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 399, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-breadcrumbs {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 399, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-breadcrumbs {
    padding-left: 20px;
  }
}
/* line 413, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs .meta-cat {
  display: inline-block;
}
/* line 415, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs .meta-cat::after {
  font-family: "Lato", sans-serif;
  content: '>';
  font-size: 10px;
  line-height: 16px;
  color: #cecece;
  margin: 0 5px;
  display: inline-block;
}
/* line 424, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs .meta-cat:last-child::after {
  content: '';
}
/* line 428, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs a {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
/* line 434, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-breadcrumbs a:hover {
  text-decoration: none;
}
/* line 439, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-title {
  margin-top: 15px;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 439, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 439, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* line 451, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-title h1 {
  margin: 0;
  font-family: "Roboto Slab", serif;
  font-size: 50px;
  line-height: 54px;
  font-weight: bold;
}
/* line 457, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-title h1 i {
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  /* line 451, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-title h1 {
    font-size: 27px;
    line-height: 30px;
  }
}
/* line 466, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-excerpt {
  margin-top: 15px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 466, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-excerpt {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 466, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-excerpt {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/* line 478, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-excerpt p {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  line-height: 28px;
  color: #737373;
}
@media only screen and (max-width: 767px) {
  /* line 478, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-excerpt p {
    font-size: 18px;
    line-height: 26px;
  }
}
/* line 489, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-meta {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  /* line 489, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-meta {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 499, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 499, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social {
    padding-right: 20px;
  }
}
/* line 508, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-comments {
  float: right;
  margin-top: 5px;
}
/* line 511, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-comments a {
  font-style: italic;
  font-size: 16px;
  margin-left: 2px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 508, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-comments {
    display: none;
  }
}
/* line 521, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares {
  float: right;
  margin-left: 3px;
}
/* line 525, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares .printfriendly {
  float: left;
  padding-left: 10px;
  margin: -20px 0 0 10px;
  border-left: 1px solid #cdcdcd;
}
/* line 530, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares .printfriendly img {
  margin: 5px auto 5px auto;
}
/* line 533, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares .printfriendly a {
  color: #888;
  text-transform: uppercase;
  font-size: 10px;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 767px) {
  /* line 525, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-shares .printfriendly {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 521, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-shares {
    margin-left: 0;
    float: left;
    margin-top: 30px;
    margin-bottom: 1.5em;
  }
}
/* line 553, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares .fb-orig-like {
  float: left;
  position: relative;
  display: block;
  width: 71px;
  margin-top: -20px;
}
/* line 560, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares .fb-orig-like
span {
  overflow: visible !important;
  width: 450px !important;
  margin-right: -375px;
}
/* line 568, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a {
  width: 36px;
  height: 30px;
  border-radius: 3px;
  margin-left: 2px;
  float: left;
  position: relative;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 568, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-shares a {
    width: 37px;
  }
}
/* line 580, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  /* line 580, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-shares a:first-child {
    margin-right: 2px;
  }
}
/* line 587, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.fb {
  background-color: #3b5998;
}
/* line 590, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.tw {
  background-color: #55acee;
}
/* line 593, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.gp {
  background-color: #e02f2f;
}
/* line 596, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.wa {
  background-color: #65bc54;
}
/* line 600, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a i {
  color: #fff;
  font-size: 1.1em;
  margin-top: 8px;
}
/* line 605, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a span.count {
  height: 22px;
  left: 0;
  position: absolute;
  top: -20px;
  width: 36px;
  color: #818181;
  border-left-color: #dadada;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #dadada;
  border-top-color: #dadada;
  border-top-style: solid;
  border-top-width: 1px;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding-top: 3px;
  border-radius: 3px 3px 0 0;
}
@media only screen and (max-width: 767px) {
  /* line 605, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social .meta-shares a span.count {
    width: 37px;
  }
}
/* line 631, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a span.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  height: 0;
  position: absolute;
  top: 0;
  width: 0;
  left: 13px;
}
/* line 641, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.fb-like {
  background-color: #3b5998;
  width: 60px;
}
/* line 644, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.fb-like i {
  font-size: 12px;
  left: 9px;
  position: absolute;
  top: 1px;
  vertical-align: text-bottom;
}
/* line 651, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.fb-like span.count {
  width: 60px;
}
/* line 654, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social .meta-shares a.fb-like span.arrow {
  left: 25px;
}
/* line 660, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social.bottom {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 660, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social.bottom {
    margin-top: 20px;
  }
}
/* line 665, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-social.bottom .meta-shares {
  margin-left: 0;
  margin-right: 7px;
}
@media only screen and (max-width: 767px) {
  /* line 665, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-social.bottom .meta-shares {
    margin-bottom: 0;
  }
}
/* line 681, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-signature {
  clear: both;
  margin-bottom: 30px;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 685, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-signature .grid-4 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 691, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-signature .grid-4 {
    padding-left: 0;
  }
}
/* line 696, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-signature .author-title {
  margin-bottom: 5px;
}
/* line 698, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-signature .author-title a {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
  text-transform: capitalize;
  color: #000;
}
/* line 708, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-signature .author-social a {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-size: 15px;
  color: #333;
  margin-right: 15px;
}
/* line 717, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav {
  display: none;
  border-top: solid 1px #ddd;
  padding-top: 30px;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  /* line 717, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav {
    display: block;
  }
}
/* line 726, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav span.line1, .single-content div#thumbbottomnav span.line2 {
  float: left;
  position: relative;
  width: 100%;
  margin-top: -3px;
}
/* line 731, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav span.line1.line2, .single-content div#thumbbottomnav span.line2.line2 {
  margin-top: 13px;
}
/* line 736, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .imgnavbottom-left {
  min-width: 28px;
  height: 62px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 736, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .imgnavbottom-left {
    display: none;
  }
}
/* line 743, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .imgnavbottom-left img {
  width: 62px;
}
@media only screen and (max-width: 767px) {
  /* line 743, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .imgnavbottom-left img {
    display: none;
  }
}
/* line 750, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .imgnavbottom-right {
  min-width: 28px;
  height: 62px;
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 750, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .imgnavbottom-right {
    display: none;
  }
}
/* line 757, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .imgnavbottom-right img {
  width: 62px;
}
@media only screen and (max-width: 767px) {
  /* line 757, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .imgnavbottom-right img {
    display: none;
  }
}
/* line 764, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav p.titleprenav {
  font-size: 14px;
  font-weight: bold;
  height: 58px;
  overflow: hidden;
  line-height: 14px;
}
/* line 771, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav p.titleprenav span.bkg_overhad {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;0+0,1+100 */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-8 */
  position: absolute;
  bottom: 0;
  height: 36px;
  position: absolute;
  width: 190px;
}
/* line 784, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav p.titleprenav span.bkg_overhad.left {
  left: 70px;
}
/* line 787, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav p.titleprenav span.bkg_overhad.right {
  right: 70px;
}
@media only screen and (max-width: 767px) {
  /* line 771, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav p.titleprenav span.bkg_overhad {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 764, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav p.titleprenav {
    margin-top: 47px;
    overflow: visible;
    height: auto !important;
  }
}
/* line 800, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .prevtitlenav {
  font-weight: 700;
  margin-top: 13px;
  font-size: 17px;
  line-height: 8px;
}
@media only screen and (max-width: 767px) {
  /* line 800, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .prevtitlenav {
    line-height: 17px !important;
  }
}
/* line 809, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .fa-arrow-left {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 809, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .fa-arrow-left {
    position: absolute;
    top: 55px;
    left: 0px;
  }
}
/* line 817, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .fa-arrow-right {
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 817, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav .fa-arrow-right {
    position: absolute;
    top: 55px;
    right: 0px;
  }
}
/* line 825, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav .postnavi-left, .single-content div#thumbbottomnav .postnavi-right {
  width: 41%;
}
/* line 828, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbbottomnav #navthumbdivider {
  position: absolute;
  left: 50%;
  width: 1px;
  background-color: #ddd;
  height: 105px;
  margin-left: -1px;
}
@media only screen and (max-width: 767px) {
  /* line 828, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbbottomnav #navthumbdivider {
    display: none;
  }
}
/* line 840, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#titleForSmall {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 840, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#titleForSmall {
    display: block;
  }
}
/* line 846, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav {
  padding-top: 30px;
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  /* line 846, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav {
    display: none;
  }
}
/* line 854, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav span.line1, .single-content div#thumbtopnav span.line2 {
  position: relative;
  width: 44px;
  height: 59px;
  background-color: red;
  display: block;
  color: white;
  padding: 13px 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 865, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav span.line1.line2, .single-content div#thumbtopnav span.line2.line2 {
  margin-top: 13px;
}
/* line 869, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowleft {
  position: absolute;
  bottom: 0;
  left: 0;
}
/* line 873, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowleft .prevtitlenav {
  position: absolute;
  top: 0;
  right: -118px;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 873, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .arrowleft .prevtitlenav {
    right: -127px;
  }
}
/* line 882, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowleft:hover .prevtitlenav.left {
  display: block;
}
/* line 887, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowright {
  padding-right: 24px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 887, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .arrowright {
    padding-right: 0px;
  }
}
/* line 895, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowright .line1 {
  float: right;
}
/* line 898, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowright .prevtitlenav {
  position: absolute;
  top: 0;
  left: -117px;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 898, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .arrowright .prevtitlenav {
    left: -130px;
  }
}
/* line 907, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .arrowright:hover .prevtitlenav.right {
  display: block;
}
/* line 914, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .imgnavbottom-left {
  min-width: 28px;
  height: 62px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 914, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .imgnavbottom-left {
    display: none;
  }
}
/* line 921, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .imgnavbottom-left img {
  width: 62px;
}
@media only screen and (max-width: 767px) {
  /* line 921, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .imgnavbottom-left img {
    display: none;
  }
}
/* line 928, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .imgnavbottom-right {
  min-width: 28px;
  height: 62px;
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 928, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .imgnavbottom-right {
    display: none;
  }
}
/* line 935, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .imgnavbottom-right img {
  width: 62px;
}
@media only screen and (max-width: 767px) {
  /* line 935, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .imgnavbottom-right img {
    display: none;
  }
}
/* line 942, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav p.titleprenav {
  font-size: 14px;
  font-weight: bold;
  height: 58px;
  overflow: hidden;
  line-height: 14px;
}
/* line 949, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav p.titleprenav span.bkg_overhad {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;0+0,1+100 */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-8 */
  position: absolute;
  bottom: 0;
  height: 36px;
  position: absolute;
  width: 190px;
}
/* line 962, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav p.titleprenav span.bkg_overhad.left {
  left: 70px;
}
/* line 965, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav p.titleprenav span.bkg_overhad.right {
  right: 70px;
}
@media only screen and (max-width: 767px) {
  /* line 949, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav p.titleprenav span.bkg_overhad {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 942, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav p.titleprenav {
    margin-top: 47px;
    overflow: visible;
    height: auto !important;
  }
}
/* line 978, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .prevtitlenav {
  display: none;
  font-weight: 700;
  margin-top: 0px;
  font-size: 16px;
  width: 142px;
  height: 59px;
  color: #fff;
  background-color: red;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
  padding: 6px 15px;
  text-transform: uppercase;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  /* line 978, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .prevtitlenav {
    line-height: 17px !important;
  }
}
/* line 998, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .fa-arrow-left {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 998, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .fa-arrow-left {
    position: absolute;
    top: 55px;
    left: 0px;
  }
}
/* line 1006, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .fa-arrow-right {
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 1006, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav .fa-arrow-right {
    position: absolute;
    top: 55px;
    right: 0px;
  }
}
/* line 1014, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav .postnavi-left, .single-content div#thumbtopnav .postnavi-right {
  width: 41%;
}
/* line 1017, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content div#thumbtopnav #navthumbdivider {
  position: absolute;
  left: 50%;
  width: 1px;
  background-color: #ddd;
  height: 105px;
  margin-left: -1px;
}
@media only screen and (max-width: 767px) {
  /* line 1017, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content div#thumbtopnav #navthumbdivider {
    display: none;
  }
}
/* line 1029, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-mkt-bottom, .single-content .entry-adsense {
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1033, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-mkt-bottom img, .single-content .entry-adsense img {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 1039, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-mkt-bottom img, .single-content .entry-adsense img {
    margin: 0 auto;
  }
}
/* line 1048, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-customspace {
  margin-bottom: 20px;
}
/* line 1051, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-adsense {
  margin-bottom: 0;
}
/* line 1054, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-comment-calltoaction {
  margin-bottom: 30px;
  background-color: #333333;
  border-radius: 3px;
  height: 60px;
  text-align: center;
  padding-top: 15px;
  margin-right: 7px;
  width: 620px;
}
@media only screen and (max-width: 767px) {
  /* line 1054, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment-calltoaction {
    width: auto;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1054, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment-calltoaction {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 1054, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment-calltoaction {
    width: 100%;
  }
}
/* line 1076, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-comment-calltoaction a {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  text-transform: capitalize;
}
/* line 1083, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .related-post {
  margin-bottom: 30px;
  border-top: 2px solid #ededed;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1087, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .related-post img {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 1093, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .related-post img {
    width: 100%;
  }
}
/* line 1101, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .related-post.outbrain {
  width: 620px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1101, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .related-post.outbrain {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 1101, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .related-post.outbrain {
    width: 100%;
  }
}
/* line 1111, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .related-post .related-title {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* line 1119, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-comment {
  margin-bottom: 30px;
  border-top: 3px solid;
  width: 620px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 1119, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment {
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 1119, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1119, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment {
    width: auto;
    height: 60px;
  }
  /* line 1135, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .entry-comment .join-comment ul, .single-content .entry-comment .join-comment ol {
    margin-left: 0;
  }
}
/* line 1141, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .entry-comment .comments-title {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 10px;
}
/* line 1149, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .fullpageimages img {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 1148, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .single-content .fullpageimages {
    margin-bottom: 20px;
    margin-left: -24px;
    width: 118%;
  }
}
/* line 1159, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-content .big-post {
  margin-bottom: 40px;
  border: none !important;
}

/* line 1165, ../scss/contents/7.0-content/_7.3-single-post.scss */
.single-nav .sub-title {
  text-transform: uppercase;
}

/* line 1169, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-previous, .nav-next {
  width: 50%;
  display: inline-block;
}

/* line 1174, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-previous a, .nav-next a {
  display: block;
}

/* line 1178, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-previous {
  text-align: left;
  padding-right: 40px;
}

/* line 1183, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-next {
  text-align: right;
  padding-left: 40px;
}

/* line 1188, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-previous i {
  margin-right: 10px;
}

/* line 1192, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-next i {
  margin-left: 10px;
}

/* line 1196, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-thumb {
  width: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

/* line 1203, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-next .nav-thumb {
  margin-left: 15px;
}

/* line 1207, ../scss/contents/7.0-content/_7.3-single-post.scss */
.nav-previous .nav-thumb {
  margin-right: 15px;
}

/* line 1212, ../scss/contents/7.0-content/_7.3-single-post.scss */
.video-frame-gnet {
  width: 640px;
  height: 390px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 1212, ../scss/contents/7.0-content/_7.3-single-post.scss */
  .video-frame-gnet {
    margin: 20px 0;
    width: 272px;
    height: 153px;
  }
}

/* line 1, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav {
  overflow: auto;
  position: relative;
  margin: 16px 0;
}
/* line 5, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav > * {
  vertical-align: middle;
}
/* line 9, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav.fontTheme ._1, .theiaPostSlider_nav.fontTheme ._3 {
  margin: 0 4px;
  vertical-align: middle;
  font-weight: bold;
}
/* line 14, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav.fontTheme ._2 {
  display: inline-block;
  vertical-align: middle;
}
/* line 19, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._title {
  font-weight: bold;
}
/* line 21, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._title * {
  display: inline;
  margin: 0;
  padding: 0;
}
/* line 26, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._title ._helper {
  color: #888;
}
/* line 30, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._buttons {
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 1;
}
/* line 36, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._buttons > * {
  display: inline-block;
  vertical-align: middle;
}
/* line 40, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._buttons ._text {
  margin: 0 10px;
}
/* line 44, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._button {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  text-decoration: none;
  transition: none !important;
}
/* line 53, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._disabled {
  cursor: default;
}
/* line 56, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._left ._buttons, .theiaPostSlider_nav._right ._buttons {
  display: inline-block;
}
/* line 59, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._left {
  text-align: left;
}
/* line 61, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._left ._buttons {
  float: left;
}
/* line 64, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._left ._title {
  float: right;
}
/* line 68, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center {
  text-align: center;
}
/* line 70, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center ._title {
  line-height: inherit !important;
}
/* line 74, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center_full {
  text-align: center;
}
/* line 76, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center_full ._prev {
  float: left;
}
/* line 79, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center_full ._next {
  float: right;
}
/* line 82, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._center_full ._title {
  line-height: inherit !important;
}
/* line 86, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._right {
  text-align: right;
}
/* line 88, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._right ._buttons {
  float: right;
}
/* line 91, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav._right ._title {
  float: left;
}
/* line 95, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav ._loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 104, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_slides {
  position: relative;
  clear: left;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* line 111, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_slides > div {
  overflow: hidden;
}

/* line 117, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_footer {
  margin: 16px 0 0 0;
}

/* line 122, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav.fontTheme ._prev ._1, .theiaPostSlider_nav.fontTheme ._next ._3 {
  display: none;
}
/* line 125, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_nav.fontTheme ._button:focus {
  outline: none;
}

/* line 130, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 130, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.row div.fotoracconto-carosello-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 130, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.row div.fotoracconto-carosello-container {
    display: none;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 130, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.row div.fotoracconto-carosello-container {
    padding-left: 24px;
  }
}
/* line 144, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container a.arrow-navigation {
  float: left;
  position: relative;
  display: inline;
  width: 35px;
  height: 46px;
  border-radius: 2px;
}
/* line 151, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container a.arrow-navigation.disable {
  opacity: 0.5;
}
/* line 154, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container a.arrow-navigation .fa {
  margin-left: 10px;
  margin-top: 13px;
  color: #fff;
}
/* line 160, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 870px;
  display: block;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 160, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.row div.fotoracconto-carosello-container div.fotoracconto-carosello {
    width: 642px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 160, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.row div.fotoracconto-carosello-container div.fotoracconto-carosello {
    width: 1026px;
  }
}
/* line 174, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item {
  width: 97%;
  height: 50px;
  float: left;
  position: relative;
  display: block;
  margin-right: 3%;
}
/* line 181, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
/* line 187, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item a span {
  width: 100%;
  float: left;
  position: relative;
}
/* line 191, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item a span.title {
  text-align: center;
  height: 40px;
  overflow: hidden;
}
/* line 196, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item a span.bar {
  border-bottom: 3px solid;
  border-radius: 3px;
  height: 0;
  margin-top: 3px;
}
/* line 201, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.row div.fotoracconto-carosello-container div.fotoracconto-carosello div.item a span.bar.disactive {
  border-color: #cccccc;
}

/* line 214, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_header._header {
  float: left;
  position: relative;
  display: block;
  width: 460px;
  height: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 214, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  .theiaPostSlider_header._header {
    width: 552px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 214, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  .theiaPostSlider_header._header {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 214, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  .theiaPostSlider_header._header {
    width: 580px;
  }
}
/* line 232, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
.theiaPostSlider_header._header h4 {
  font-weight: bold;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  color: #000000;
  text-align: left;
}

/* line 242, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar {
  float: left;
  position: relative;
  display: block;
  width: 160px;
  height: 50px;
}
/* line 244, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar:last-child {
  clear: both;
}
@media only screen and (max-width: 767px) {
  /* line 242, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.navigation-bar {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/* line 257, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar ._buttons ._button {
  width: 20px;
  height: 50px;
  float: left;
  position: relative;
  display: block;
  line-height: 47px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  /* line 257, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.navigation-bar ._buttons ._button {
    width: 40px;
  }
}
/* line 268, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar ._buttons ._button._prev, div.navigation-bar ._buttons ._button._next {
  padding-left: 7px;
}
@media only screen and (max-width: 767px) {
  /* line 268, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.navigation-bar ._buttons ._button._prev, div.navigation-bar ._buttons ._button._next {
    text-align: center;
  }
}
/* line 274, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar ._buttons ._button._disabled {
  opacity: 0.6;
}
/* line 278, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar ._buttons .text-container {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #fff;
  height: 50px;
  width: 120px;
  float: left;
  position: relative;
  display: block;
  line-height: 47px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 278, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
  div.navigation-bar ._buttons .text-container {
    width: 192px;
  }
}
/* line 292, ../scss/contents/7.0-content/_7.17-fotoracconto.scss */
div.navigation-bar ._buttons .text-container .number {
  font-weight: bold;
}

/* line 1, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls {
  /* background-color: #ffffff; */
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  display: block;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
}
/* line 10, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .sondaggio-header {
  width: 100%;
  height: 50px;
  border-bottom: 3px solid;
  text-align: center;
}
/* line 15, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .sondaggio-header span.title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: #222222;
  text-transform: uppercase;
  line-height: 47px;
}
/* line 21, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .sondaggio-header span.title i {
  margin-right: 15px;
}
/* line 26, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans, .wp-polls .wp-polls-form {
  float: left;
  position: relative;
  display: block;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}
/* line 33, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans span.title-question, .wp-polls .wp-polls-form span.title-question {
  color: #58595c;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  text-align: center;
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  /* line 33, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .wp-polls-ans span.title-question, .wp-polls .wp-polls-form span.title-question {
    font-size: 14px;
  }
}
/* line 49, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul, .wp-polls .wp-polls-ans .wp-polls-ul, .wp-polls .wp-polls-ans .wp-polls-ans ul, .wp-polls .wp-polls-form .wp-polls ul, .wp-polls .wp-polls-form .wp-polls-ul, .wp-polls .wp-polls-form .wp-polls-ans ul {
  text-align: left;
  list-style: none;
  float: none;
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  display: block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 49, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .wp-polls-ans .wp-polls ul, .wp-polls .wp-polls-ans .wp-polls-ul, .wp-polls .wp-polls-ans .wp-polls-ans ul, .wp-polls .wp-polls-form .wp-polls ul, .wp-polls .wp-polls-form .wp-polls-ul, .wp-polls .wp-polls-form .wp-polls-ans ul {
    float: none;
  }
}
/* line 62, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul img, .wp-polls .wp-polls-ans .wp-polls ul label, .wp-polls .wp-polls-ans .wp-polls ul input, .wp-polls .wp-polls-ans .wp-polls-ul img, .wp-polls .wp-polls-ans .wp-polls-ul label, .wp-polls .wp-polls-ans .wp-polls-ul input, .wp-polls .wp-polls-ans .wp-polls-ans ul img, .wp-polls .wp-polls-ans .wp-polls-ans ul label, .wp-polls .wp-polls-ans .wp-polls-ans ul input, .wp-polls .wp-polls-form .wp-polls ul img, .wp-polls .wp-polls-form .wp-polls ul label, .wp-polls .wp-polls-form .wp-polls ul input, .wp-polls .wp-polls-form .wp-polls-ul img, .wp-polls .wp-polls-form .wp-polls-ul label, .wp-polls .wp-polls-form .wp-polls-ul input, .wp-polls .wp-polls-form .wp-polls-ans ul img, .wp-polls .wp-polls-form .wp-polls-ans ul label, .wp-polls .wp-polls-form .wp-polls-ans ul input {
  display: inline;
  border: 0px;
  padding: 0px;
  margin: 0px;
}
/* line 68, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul li, .wp-polls .wp-polls-ans .wp-polls-ul li, .wp-polls .wp-polls-ans .wp-polls-ans ul li, .wp-polls .wp-polls-form .wp-polls ul li, .wp-polls .wp-polls-form .wp-polls-ul li, .wp-polls .wp-polls-form .wp-polls-ans ul li {
  text-align: left;
  background-image: none;
  display: block;
  margin-bottom: 2px;
  padding: 0;
}
/* line 74, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul li:before, .wp-polls .wp-polls-ans .wp-polls-ul li:before, .wp-polls .wp-polls-ans .wp-polls-ans ul li:before, .wp-polls .wp-polls-form .wp-polls ul li:before, .wp-polls .wp-polls-form .wp-polls-ul li:before, .wp-polls .wp-polls-form .wp-polls-ans ul li:before {
  content: '';
}
/* line 78, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul li label, .wp-polls .wp-polls-ans .wp-polls-ul li label, .wp-polls .wp-polls-ans .wp-polls-ans ul li label, .wp-polls .wp-polls-form .wp-polls ul li label, .wp-polls .wp-polls-form .wp-polls-ul li label, .wp-polls .wp-polls-form .wp-polls-ans ul li label {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  /* line 78, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .wp-polls-ans .wp-polls ul li label, .wp-polls .wp-polls-ans .wp-polls-ul li label, .wp-polls .wp-polls-ans .wp-polls-ans ul li label, .wp-polls .wp-polls-form .wp-polls ul li label, .wp-polls .wp-polls-form .wp-polls-ul li label, .wp-polls .wp-polls-form .wp-polls-ans ul li label {
    font-size: 12px;
  }
}
/* line 86, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls ul li input, .wp-polls .wp-polls-ans .wp-polls-ul li input, .wp-polls .wp-polls-ans .wp-polls-ans ul li input, .wp-polls .wp-polls-form .wp-polls ul li input, .wp-polls .wp-polls-form .wp-polls-ul li input, .wp-polls .wp-polls-form .wp-polls-ans ul li input {
  margin-right: 5px;
}
/* line 92, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.vote, .wp-polls .wp-polls-ans p.guardavoti, .wp-polls .wp-polls-ans p.archiviototalemin, .wp-polls .wp-polls-form p.vote, .wp-polls .wp-polls-form p.guardavoti, .wp-polls .wp-polls-form p.archiviototalemin {
  text-align: center;
}
/* line 95, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.vote, .wp-polls .wp-polls-form p.vote {
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 95, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .wp-polls-ans p.vote, .wp-polls .wp-polls-form p.vote {
    margin-bottom: 25px;
  }
}
/* line 101, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.guardavoti, .wp-polls .wp-polls-form p.guardavoti {
  margin-top: 5px;
  margin-bottom: 0;
}
/* line 104, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.guardavoti a, .wp-polls .wp-polls-form p.guardavoti a {
  font-size: 15px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #eaeaea;
}
/* line 111, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.archiviototalemin, .wp-polls .wp-polls-form p.archiviototalemin {
  margin-top: 0;
}
/* line 113, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans p.archiviototalemin a, .wp-polls .wp-polls-form p.archiviototalemin a {
  font-size: 15px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #eaeaea;
}
/* line 121, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .percetualetotale {
  position: absolute;
  right: 0;
  bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
}
@media only screen and (max-width: 767px) {
  /* line 121, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .percetualetotale {
    right: 0;
    width: 100%;
    position: relative;
    text-align: center;
  }
}
/* line 135, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .percetualetotale strong {
  color: #000;
}
/* line 139, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .archiviototale {
  position: absolute;
  left: 0;
  bottom: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 139, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .archiviototale {
    left: 0;
    width: 100%;
    position: relative;
    text-align: center;
  }
}
/* line 150, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .archiviototale a {
  font-size: 14px;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
}
/* line 156, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .archiviototale a:hover {
  color: #000;
}

/* line 164, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-form .archiviototale {
  left: -15%;
}
/* line 167, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-form .percetualetotale {
  right: -15%;
}

/* line 175, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .wp-polls-ans .wp-polls-ul {
  margin-bottom: 50px;
}

/* line 181, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-archive {
  border: none;
}
/* line 183, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-archive .wp-polls-ans {
  border-bottom: 1px dashed #ededed;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
/* line 189, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-archive .archiviodata {
  display: block;
  float: left;
  margin-left: 65px;
  margin-top: -45px;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
  color: #666666 !important;
}

/* line 204, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls ul li:before, .wp-polls-ans ul li:before, #sidebar ul ul li:before {
  content: '';
}

/* line 208, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-loading IMG, .wp-polls-image IMG {
  display: inline;
  border: 0px;
  padding: 0px;
  margin: 0px;
}

/* line 215, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-ul {
  padding: 0px;
  margin: 0px 0px 10px 10px;
}

/* line 220, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-ans {
  width: 100%;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  /* background-color: #ffffff; */
}

/* line 228, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-loading {
  display: none;
  text-align: center;
  height: 16px;
  line-height: 16px;
}

/* line 235, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-image {
  border: 0px;
}

/* line 239, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls .Buttons {
  width: 80px;
  height: 30px;
  border: medium none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 5px;
  outline: medium none;
  padding: 9px 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: auto;
  line-height: 12px;
}
@media only screen and (max-width: 767px) {
  /* line 239, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
  .wp-polls .Buttons {
    padding: 9px 0px;
    width: 50px;
    font-size: 12px;
    -webkit-appearance: none;
  }
}

/* Polls Archive Paging */
/* line 275, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging a {
  padding: 2px 4px 2px 4px;
  margin: 2px;
  text-decoration: none;
  border: 1px solid #0066cc;
  color: #0066cc;
  background-color: #FFFFFF;
}
/* line 282, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging a:link, .wp-polls-paging a:visited {
  padding: 2px 4px 2px 4px;
  margin: 2px;
  text-decoration: none;
  border: 1px solid #0066cc;
  color: #0066cc;
  background-color: #FFFFFF;
}
/* line 290, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging a:hover {
  border: 1px solid #000000;
  color: #000000;
  background-color: #FFFFFF;
}
/* line 295, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging a:active {
  padding: 2px 4px 2px 4px;
  margin: 2px;
  text-decoration: none;
  border: 1px solid #0066cc;
  color: #0066cc;
  background-color: #FFFFFF;
}
/* line 305, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging span.pages {
  padding: 2px 4px 2px 4px;
  margin: 2px 2px 2px 2px;
  color: #000000;
  border: 1px solid #000000;
  background-color: #FFFFFF;
}
/* line 312, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging span.current {
  padding: 2px 4px 2px 4px;
  margin: 2px;
  font-weight: bold;
  border: 1px solid #000000;
  color: #000000;
  background-color: #FFFFFF;
}
/* line 320, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-polls-paging span.extend {
  padding: 2px 4px 2px 4px;
  margin: 2px;
  border: 1px solid #000000;
  color: #000000;
  background-color: #FFFFFF;
}

/* line 330, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-poll-ajax {
  overflow: hidden;
  clear: both;
}
/* line 333, ../scss/contents/7.0-content/_7.18-sondaggio.scss */
.wp-poll-ajax .wp-poll-loading {
  width: 100%;
  height: 200px;
  margin: 10px 0;
  background: #f4f4f4 url("/wp-content/themes/gazzanet/images/vegas-loading.gif?v=20201209103731") no-repeat 50% 45%;
  padding-top: 105px;
  text-align: center;
}

@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 3, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social.grid-8 {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 3, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social.grid-8 {
    width: 50%;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 11, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .articolo_successivo.grid-4 {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 11, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .articolo_successivo.grid-4 {
    width: 50%;
  }
}
/* line 21, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social {
  padding-top: 0;
  border-top: none;
  float: left !important;
  margin-top: 0;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 21, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 21, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 34, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-comments-container {
    padding: 0;
    margin: 0;
    border: 0;
  }
}
/* line 41, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-comments {
  float: right;
  margin-top: 5px;
  width: 130px;
}
/* line 45, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-comments a {
  font-style: italic;
  font-size: 16px;
  margin-left: 2px;
  margin-right: 10px;
  width: 120px;
}
/* line 52, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-comments i {
  font-size: 35px !important;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 41, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-comments {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 45px !important;
    overflow: visible !important;
    margin: 0 auto !important;
    padding-right: 0 !important;
    width: auto;
  }
  /* line 65, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-comments a {
    background: none !important;
    border: none !important;
    width: 50px;
    padding-right: 0;
  }
  /* line 70, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-comments a .commenttext {
    display: none !important;
  }
  /* line 73, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-comments a span {
    width: 2.5em !important;
    font-size: 0.9375em !important;
    display: block !important;
    text-align: center !important;
    top: -2px;
    left: -4px !important;
    width: 45px !important;
    color: white !important;
    background: none !important;
  }
}
@media only screen and (max-width: 767px) {
  /* line 88, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .entry-comment-calltoaction {
    background-color: transparent;
    padding-top: 0;
    float: left;
    position: relative;
    display: block;
    margin-left: 5px;
    border: 0;
  }
  /* line 96, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .entry-comment-calltoaction a {
    color: #000;
    text-transform: uppercase;
  }
  /* line 100, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .entry-comment-calltoaction i {
    font-size: 38px;
    transform: unset;
    line-height: 24px;
  }
  /* line 105, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .entry-comment-calltoaction .commentsnumtext {
    width: 30px;
    position: relative;
    text-align: center;
    display: block;
    float: left;
  }
  /* line 112, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .entry-comment-calltoaction .numcomments {
    color: #fff;
    position: absolute;
    width: 30px;
    z-index: 999;
    top: 20px;
    font-weight: bold;
    font-size: 18px;
    margin-top: -20px;
    text-align: center;
    margin-left: 4px;
    white-space: nowrap;
  }
}
/* line 127, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares {
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 127, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-shares {
    margin-left: 0;
    float: left;
    margin-top: 0;
    margin-bottom: 1.5em;
  }
}
/* line 137, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares .fb-orig-like {
  float: left;
  position: relative;
  display: block;
  width: 82px;
  margin-top: 0 !important;
}
/* line 144, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares .fb-orig-like
span {
  overflow: visible !important;
  width: 450px !important;
  margin-right: -375px;
}
/* line 152, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a {
  float: left;
  position: relative;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 152, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-shares a {
    width: 37px;
  }
}
/* line 161, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  /* line 161, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-shares a:first-child {
    margin-right: 2px;
  }
}
/* line 167, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.fb {
  background-color: #3b5998;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
/* line 172, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.tw {
  background-color: #55acee;
}
/* line 175, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.gp {
  background-color: #e02f2f;
}
/* line 178, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.wa {
  background-color: #65bc54;
}
/* line 181, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a i {
  color: #fff;
  font-size: 1.1em;
}
/* line 185, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a span.count {
  height: 22px;
  left: 0;
  position: absolute;
  top: -20px;
  width: 36px;
  color: #818181;
  border-left-color: #dadada;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #dadada;
  border-top-color: #dadada;
  border-top-style: solid;
  border-top-width: 1px;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding-top: 3px;
  border-radius: 3px 3px 0 0;
}
@media only screen and (max-width: 767px) {
  /* line 185, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social .meta-shares a span.count {
    width: 37px;
  }
}
/* line 210, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a span.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  height: 0;
  position: absolute;
  top: 0;
  width: 0;
  left: 13px;
}
/* line 220, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.fb-like {
  background-color: #3b5998;
  width: 60px;
}
/* line 223, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.fb-like i {
  font-size: 12px;
  left: 9px;
  position: absolute;
  top: 1px;
  vertical-align: text-bottom;
}
/* line 230, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.fb-like span.count {
  width: 60px;
}
/* line 233, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social .meta-shares a.fb-like span.arrow {
  left: 25px;
}
/* line 239, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social.bottom {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 239, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social.bottom {
    margin-top: 20px;
  }
}
/* line 245, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .sticky_socialbar .entry-social.bottom .meta-shares {
  margin-left: 0;
  margin-right: 7px;
}
@media only screen and (max-width: 767px) {
  /* line 245, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sticky_socialbar .entry-social.bottom .meta-shares {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 265, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .entry-social.grid-6 .meta-comments {
    display: inline-block !important;
    float: none;
    margin-top: 20px;
  }
}
/* line 274, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-shares a {
  border-radius: 2px;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 274, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .entry-social .meta-shares a {
    margin-left: 7px;
  }
}
/* line 284, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-shares .fb-orig-like {
  border-right: 1px solid #ddd;
  width: auto;
  padding-right: 8px;
  margin-top: 0;
}
/* line 290, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-shares a i {
  margin-top: 12px;
}
/* line 293, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-shares {
  float: none;
}
/* line 296, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin: 15px 0;
  float: none;
}
/* line 302, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social-bottom {
  border-top: none;
  float: right;
  margin: 0;
  padding: 0;
}
/* line 307, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social-bottom .meta-comments-container {
  float: right !important;
}
@media only screen and (max-width: 767px) {
  /* line 307, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .entry-social-bottom .meta-comments-container {
    float: none !important;
  }
}
@media only screen and (max-width: 767px) {
  /* line 302, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .entry-social-bottom {
    float: none;
  }
}
/* line 317, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social-bottom .meta-comments-container {
  border-left: none !important;
}
/* line 321, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .grid-6.entry-signature.entry-signature-bottom {
  padding-left: 0;
  clear: both;
}
/* line 325, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container {
  float: left;
  margin: 0 10px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  /* line 325, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .entry-social .meta-comments-container {
    float: none;
    text-align: center;
    margin: 0 10px 25px;
    padding-left: 0px;
    border-left: none;
  }
}
/* line 338, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments {
  border-left: none;
  margin: 0;
  background: #960f2e;
  border-radius: 3px;
  height: 40px;
  padding: 0 5px 0 10px;
}
/* line 346, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments .numcomments {
  color: #000;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -5px;
  font-weight: bold;
  font-size: 14px;
}
/* line 355, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments .commenttext {
  position: relative;
  top: -4px;
  font-size: 15px;
  margin-right: 7px;
}
/* line 361, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments .commentsnumtext {
  width: 35px;
  position: relative;
  text-align: center;
}
/* line 366, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments i {
  font-size: 35px;
}
/* line 369, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments a {
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  margin-right: 0;
}
/* line 374, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-social .meta-comments-container .meta-comments a:hover {
  color: #fff !important;
}
/* line 380, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-title {
  padding-left: 20px !important;
}
/* line 383, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-date-content {
  font-style: italic;
  font-weight: bold;
  margin: 35px 0 15px 0;
}
/* line 388, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video #comments .join-comment {
  padding: 0;
  margin: 0 0 30px;
}
/* line 391, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video #comments .join-comment span {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  /* line 391, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video #comments .join-comment span {
    line-height: 1.3em;
    font-size: 15px !important;
  }
}
/* line 399, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .generalMenuBackground-bottom {
  float: right !important;
}
/* line 403, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment {
  border-top: none;
}
/* line 407, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video #comments .join-comment ul li span, .single-video #comments .join-comment ul li a {
  font-size: 18px;
}
/* line 410, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment-calltoaction {
  background-color: transparent;
  border-top: 1px solid #ccc;
  padding-top: 0;
}
/* line 414, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment-calltoaction a {
  color: #000;
  text-transform: uppercase;
}
/* line 418, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment-calltoaction i {
  font-size: 68px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
/* line 427, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment-calltoaction .commentsnumtext {
  width: 68px;
  position: relative;
  text-align: center;
  display: inline-block;
  top: 8px;
  margin-right: 10px;
}
/* line 435, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .entry-comment-calltoaction .numcomments {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 20px;
  font-weight: bold;
  font-size: 22px;
}
/* line 446, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .single-content div#thumbtopnav {
  margin-top: 0px !Important;
  padding-top: 0px !important;
  margin-bottom: 0px !Important;
}
@media only screen and (max-width: 767px) {
  /* line 453, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .side-element.widget-side-colum.video-top {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 458, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .sidebarvideo {
    display: none;
  }
}
/* line 463, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .lista_tag {
  clear: both;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 20px;
  border-bottom: solid 1px #cdcdcd;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  /* line 463, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .lista_tag {
    overflow: hidden;
    padding-top: emCalc(30px);
    padding-bottom: emCalc(30px);
    border-top: solid 1px #cdcdcd;
    margin-top: emCalc(30px);
    margin-bottom: emCalc(20px);
  }
}
/* line 478, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
.single-video .lista_tag a.tag {
  padding: 0px 7px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  border-width: 3px;
  border-style: solid;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  width: auto;
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 478, ../scss/contents/7.0-content/_7.21-video-restyle.scss */
  .single-video .lista_tag a.tag {
    display: inline-block;
    float: left;
    line-height: emCalc(25px);
    margin-bottom: emCalc(10px);
  }
}

@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 3, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social.grid-8, .single-gallery .sticky_socialbar .entry-social.grid-8 {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 3, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social.grid-8, .single-gallery .sticky_socialbar .entry-social.grid-8 {
    width: 50%;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 12, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .articolo_successivo.grid-4, .single-gallery .sticky_socialbar .articolo_successivo.grid-4 {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 12, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .articolo_successivo.grid-4, .single-gallery .sticky_socialbar .articolo_successivo.grid-4 {
    width: 50%;
  }
}
/* line 22, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social, .single-gallery .sticky_socialbar .entry-social {
  padding-top: 0;
  border-top: none;
  float: left !important;
  margin-top: 0;
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 22, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social, .single-gallery .sticky_socialbar .entry-social {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 22, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social, .single-gallery .sticky_socialbar .entry-social {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 35, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-comments-container, .single-gallery .sticky_socialbar .entry-social .meta-comments-container {
    padding: 0;
    margin: 0;
    border: 0;
  }
}
/* line 42, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-comments, .single-gallery .sticky_socialbar .entry-social .meta-comments {
  float: right;
  margin-top: 5px;
  width: 130px;
}
/* line 46, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-comments a, .single-gallery .sticky_socialbar .entry-social .meta-comments a {
  font-style: italic;
  font-size: 16px;
  margin-left: 2px;
  margin-right: 10px;
  width: 120px;
}
/* line 53, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-comments i, .single-gallery .sticky_socialbar .entry-social .meta-comments i {
  font-size: 35px !important;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 42, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-comments, .single-gallery .sticky_socialbar .entry-social .meta-comments {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 45px !important;
    overflow: visible !important;
    margin: 0 auto !important;
    padding-right: 0 !important;
    width: auto;
  }
  /* line 66, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-comments a, .single-gallery .sticky_socialbar .entry-social .meta-comments a {
    background: none !important;
    border: none !important;
    width: 50px;
    padding-right: 0;
  }
  /* line 71, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-comments a .commenttext, .single-gallery .sticky_socialbar .entry-social .meta-comments a .commenttext {
    display: none !important;
  }
  /* line 74, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-comments a span, .single-gallery .sticky_socialbar .entry-social .meta-comments a span {
    width: 2.5em !important;
    font-size: 0.9375em !important;
    display: block !important;
    text-align: center !important;
    top: -2px;
    left: -4px !important;
    width: 45px !important;
    color: white !important;
    background: none !important;
  }
}
@media only screen and (max-width: 767px) {
  /* line 89, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .entry-comment-calltoaction, .single-gallery .sticky_socialbar .entry-social .entry-comment-calltoaction {
    background-color: transparent;
    padding-top: 0;
    float: left;
    position: relative;
    display: block;
    margin-left: 5px;
    border: 0;
  }
  /* line 97, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .entry-comment-calltoaction a, .single-gallery .sticky_socialbar .entry-social .entry-comment-calltoaction a {
    color: #000;
    text-transform: uppercase;
  }
  /* line 101, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .entry-comment-calltoaction i, .single-gallery .sticky_socialbar .entry-social .entry-comment-calltoaction i {
    font-size: 38px;
    transform: unset;
    line-height: 24px;
  }
  /* line 106, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .entry-comment-calltoaction .commentsnumtext, .single-gallery .sticky_socialbar .entry-social .entry-comment-calltoaction .commentsnumtext {
    width: 30px;
    position: relative;
    text-align: center;
    display: block;
    float: left;
  }
  /* line 113, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .entry-comment-calltoaction .numcomments, .single-gallery .sticky_socialbar .entry-social .entry-comment-calltoaction .numcomments {
    color: #fff;
    position: absolute;
    width: 30px;
    z-index: 999;
    top: 20px;
    font-weight: bold;
    font-size: 18px;
    margin-top: -20px;
    text-align: center;
    margin-left: 4px;
    white-space: nowrap;
  }
}
/* line 128, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares, .single-gallery .sticky_socialbar .entry-social .meta-shares {
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 128, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-shares, .single-gallery .sticky_socialbar .entry-social .meta-shares {
    margin-left: 0;
    float: left;
    margin-top: 0;
    margin-bottom: 1.5em;
  }
}
/* line 138, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares .fb-orig-like, .single-gallery .sticky_socialbar .entry-social .meta-shares .fb-orig-like {
  float: left;
  position: relative;
  display: block;
  width: 82px;
  margin-top: 0 !important;
}
/* line 145, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares .fb-orig-like
span, .single-gallery .sticky_socialbar .entry-social .meta-shares .fb-orig-like
span {
  overflow: visible !important;
  width: 450px !important;
  margin-right: -375px;
}
/* line 153, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a, .single-gallery .sticky_socialbar .entry-social .meta-shares a {
  float: left;
  position: relative;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 153, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-shares a, .single-gallery .sticky_socialbar .entry-social .meta-shares a {
    width: 37px;
  }
}
/* line 162, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a:first-child, .single-gallery .sticky_socialbar .entry-social .meta-shares a:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  /* line 162, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-shares a:first-child, .single-gallery .sticky_socialbar .entry-social .meta-shares a:first-child {
    margin-right: 2px;
  }
}
/* line 168, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.fb, .single-gallery .sticky_socialbar .entry-social .meta-shares a.fb {
  background-color: #3b5998;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
/* line 173, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.tw, .single-gallery .sticky_socialbar .entry-social .meta-shares a.tw {
  background-color: #55acee;
}
/* line 176, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.gp, .single-gallery .sticky_socialbar .entry-social .meta-shares a.gp {
  background-color: #e02f2f;
}
/* line 179, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.wa, .single-gallery .sticky_socialbar .entry-social .meta-shares a.wa {
  background-color: #65bc54;
}
/* line 182, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a i, .single-gallery .sticky_socialbar .entry-social .meta-shares a i {
  color: #fff;
  font-size: 1.1em;
}
/* line 186, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a span.count, .single-gallery .sticky_socialbar .entry-social .meta-shares a span.count {
  height: 22px;
  left: 0;
  position: absolute;
  top: -20px;
  width: 36px;
  color: #818181;
  border-left-color: #dadada;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #dadada;
  border-top-color: #dadada;
  border-top-style: solid;
  border-top-width: 1px;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding-top: 3px;
  border-radius: 3px 3px 0 0;
}
@media only screen and (max-width: 767px) {
  /* line 186, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social .meta-shares a span.count, .single-gallery .sticky_socialbar .entry-social .meta-shares a span.count {
    width: 37px;
  }
}
/* line 211, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a span.arrow, .single-gallery .sticky_socialbar .entry-social .meta-shares a span.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  height: 0;
  position: absolute;
  top: 0;
  width: 0;
  left: 13px;
}
/* line 221, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.fb-like, .single-gallery .sticky_socialbar .entry-social .meta-shares a.fb-like {
  background-color: #3b5998;
  width: 60px;
}
/* line 224, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.fb-like i, .single-gallery .sticky_socialbar .entry-social .meta-shares a.fb-like i {
  font-size: 12px;
  left: 9px;
  position: absolute;
  top: 1px;
  vertical-align: text-bottom;
}
/* line 231, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.fb-like span.count, .single-gallery .sticky_socialbar .entry-social .meta-shares a.fb-like span.count {
  width: 60px;
}
/* line 234, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social .meta-shares a.fb-like span.arrow, .single-gallery .sticky_socialbar .entry-social .meta-shares a.fb-like span.arrow {
  left: 25px;
}
/* line 240, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social.bottom, .single-gallery .sticky_socialbar .entry-social.bottom {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  /* line 240, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social.bottom, .single-gallery .sticky_socialbar .entry-social.bottom {
    margin-top: 20px;
  }
}
/* line 246, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .sticky_socialbar .entry-social.bottom .meta-shares, .single-gallery .sticky_socialbar .entry-social.bottom .meta-shares {
  margin-left: 0;
  margin-right: 7px;
}
@media only screen and (max-width: 767px) {
  /* line 246, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sticky_socialbar .entry-social.bottom .meta-shares, .single-gallery .sticky_socialbar .entry-social.bottom .meta-shares {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 266, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-social.grid-6 .meta-comments, .single-gallery .entry-social.grid-6 .meta-comments {
    display: inline-block !important;
    float: none;
    margin-top: 20px;
  }
}
/* line 275, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-shares a, .single-gallery .entry-social .meta-shares a {
  border-radius: 2px;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 275, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-social .meta-shares a, .single-gallery .entry-social .meta-shares a {
    margin-left: 7px;
  }
}
/* line 285, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-shares .fb-orig-like, .single-gallery .entry-social .meta-shares .fb-orig-like {
  border-right: 1px solid #ddd;
  width: auto;
  padding-right: 8px;
  margin-top: 0;
}
/* line 291, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-shares a i, .single-gallery .entry-social .meta-shares a i {
  margin-top: 12px;
}
/* line 294, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-shares, .single-gallery .entry-social .meta-shares {
  float: none;
}
/* line 297, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social, .single-gallery .entry-social {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin: 15px 0;
}
/* line 302, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social-bottom, .single-gallery .entry-social-bottom {
  border-top: none;
  float: right;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  /* line 302, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-social-bottom, .single-gallery .entry-social-bottom {
    float: none;
  }
}
/* line 310, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social-bottom .meta-comments-container, .single-gallery .entry-social-bottom .meta-comments-container {
  border-left: none !important;
  float: right !important;
}
@media only screen and (max-width: 767px) {
  /* line 310, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-social-bottom .meta-comments-container, .single-gallery .entry-social-bottom .meta-comments-container {
    float: none !important;
  }
}
/* line 318, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .grid-6.entry-signature.entry-signature-bottom, .single-gallery .grid-6.entry-signature.entry-signature-bottom {
  padding-left: 0;
  clear: both;
}
/* line 322, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container, .single-gallery .entry-social .meta-comments-container {
  float: left;
  margin: 0 10px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  /* line 322, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-social .meta-comments-container, .single-gallery .entry-social .meta-comments-container {
    float: none;
    text-align: center;
    margin: 0 10px 25px;
    padding-left: 0px;
    border-left: none;
  }
}
/* line 335, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments, .single-gallery .entry-social .meta-comments-container .meta-comments {
  border-left: none;
  margin: 0;
  background: #960f2e;
  border-radius: 3px;
  height: 40px;
  padding: 0 5px 0 10px;
}
/* line 343, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments .numcomments, .single-gallery .entry-social .meta-comments-container .meta-comments .numcomments {
  color: #000;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -5px;
  font-weight: bold;
  font-size: 14px;
}
/* line 352, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments .commenttext, .single-gallery .entry-social .meta-comments-container .meta-comments .commenttext {
  position: relative;
  top: -4px;
  font-size: 15px;
  margin-right: 7px;
}
/* line 358, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments .commentsnumtext, .single-gallery .entry-social .meta-comments-container .meta-comments .commentsnumtext {
  width: 35px;
  position: relative;
  text-align: center;
}
/* line 363, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments i, .single-gallery .entry-social .meta-comments-container .meta-comments i {
  font-size: 35px;
}
/* line 366, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments a, .single-gallery .entry-social .meta-comments-container .meta-comments a {
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  margin-right: 0;
}
/* line 371, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-social .meta-comments-container .meta-comments a:hover, .single-gallery .entry-social .meta-comments-container .meta-comments a:hover {
  color: #fff !important;
}
/* line 377, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-title, .single-gallery .entry-title {
  padding-left: 0px;
}
/* line 380, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-date-content, .single-gallery .entry-date-content {
  font-style: italic;
  font-weight: bold;
  margin: 35px 0 15px 0;
}
@media only screen and (max-width: 767px) {
  /* line 380, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .entry-date-content, .single-gallery .entry-date-content {
    margin: 0px;
  }
}
/* line 388, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post #comments .join-comment, .single-gallery #comments .join-comment {
  padding: 0;
  margin: 0 0 30px;
}
/* line 391, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post #comments .join-comment span, .single-gallery #comments .join-comment span {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  /* line 391, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post #comments .join-comment span, .single-gallery #comments .join-comment span {
    line-height: 1.3em;
    font-size: 15px !important;
  }
}
/* line 399, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment, .single-gallery .entry-comment {
  border-top: none;
}
/* line 402, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post #comments .join-comment ul li span, .single-post #comments .join-comment ul li a, .single-gallery #comments .join-comment ul li span, .single-gallery #comments .join-comment ul li a {
  font-size: 18px;
}
/* line 405, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment-calltoaction, .single-gallery .entry-comment-calltoaction {
  background-color: transparent;
  border-top: 1px solid #ccc;
  padding-top: 0;
}
/* line 409, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment-calltoaction a, .single-gallery .entry-comment-calltoaction a {
  color: #000;
  text-transform: uppercase;
}
/* line 413, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment-calltoaction i, .single-gallery .entry-comment-calltoaction i {
  font-size: 68px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
/* line 422, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment-calltoaction .commentsnumtext, .single-gallery .entry-comment-calltoaction .commentsnumtext {
  width: 68px;
  position: relative;
  text-align: center;
  display: inline-block;
  top: 8px;
  margin-right: 10px;
}
/* line 430, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-comment-calltoaction .numcomments, .single-gallery .entry-comment-calltoaction .numcomments {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 20px;
  font-weight: bold;
  font-size: 22px;
}
/* line 442, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .single-content div#thumbtopnav, .single-gallery .single-content div#thumbtopnav {
  margin-top: 0px !important;
  padding-top: 0px !important;
  margin-bottom: 0px !important;
}
/* line 449, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .entry-content-text, .single-gallery .entry-content-text {
  margin-top: 35px;
}
@media only screen and (max-width: 767px) {
  /* line 455, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .side-element.widget-side-colum.video-top, .single-gallery .side-element.widget-side-colum.video-top {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  /* line 460, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .sidebarvideo, .single-gallery .sidebarvideo {
    display: none;
  }
}
/* line 465, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .lista_tag, .single-gallery .lista_tag {
  clear: both;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  /* line 465, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .lista_tag, .single-gallery .lista_tag {
    overflow: hidden;
    padding-top: emCalc(30px);
    padding-bottom: emCalc(30px);
    border-top: solid 1px #cdcdcd;
    margin-top: emCalc(30px);
    margin-bottom: emCalc(20px);
  }
}
/* line 479, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.single-post .lista_tag a.tag, .single-gallery .lista_tag a.tag {
  padding: 0px 7px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  border-width: 3px;
  border-style: solid;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  width: auto;
  float: left;
}
@media only screen and (max-width: 767px) {
  /* line 479, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
  .single-post .lista_tag a.tag, .single-gallery .lista_tag a.tag {
    display: inline-block;
    float: left;
    line-height: emCalc(25px);
    margin-bottom: emCalc(10px);
  }
}

/* line 501, ../scss/contents/7.0-content/_7.22-single-post-restyle.scss */
.carosellofotoracconto {
  margin-bottom: 15px !important;
}

/**
 * 7.4 Comment
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-sidebar-none {
  background: #f8f8f8;
  border: none !important;
  margin-bottom: -60px;
}

/* line 13, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments {
  clear: both;
}
/* line 15, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment {
  display: none;
  text-align: center;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  float: left;
  box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.8);
}
/* line 26, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment ul li {
  float: left;
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 0;
}
/* line 32, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment ul li.login-call {
  display: none;
}
/* line 35, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment ul li span, #comments .join-comment ul li a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-height: 28px;
  font-weight: 700;
}
/* line 41, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment ul li a {
  text-decoration: underline;
}
/* line 44, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .join-comment ul li span {
  text-decoration: none !important;
}
/* line 52, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments #respond {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 25px;
  float: left;
}
/* line 58, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments #respond form.comment-form textarea {
  resize: none;
  white-space: pre-wrap;
}
/* line 63, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments #respond p.form-submit {
  float: right;
}
/* line 67, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments #respond div.text-hint p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  margin-bottom: 7px;
}
/* line 73, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments #respond div.text-runa, #comments #respond div.text-name, #comments #respond div.text-email {
  display: none;
}

/* line 80, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-respond {
  margin-bottom: 55px;
  overflow: hidden;
  float: left;
}
/* line 84, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-respond .form-submit {
  margin-bottom: 0;
}
/* line 87, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-respond .text-name, .comment-respond .text-email {
  width: 50%;
  display: inline;
}
/* line 91, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-respond .text-name {
  padding-right: 10px;
}

/* line 96, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-wrap {
  overflow: hidden;
  margin-bottom: 20px;
}

/* line 101, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist {
  list-style: none;
  margin: 0 !important;
  float: left;
  position: relative;
  display: block;
  width: 100%;
}
/* line 102, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist li {
  margin-left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 15px;
  border-top: 1px solid #dadada;
}
/* line 116, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist ol.children {
  padding: 0 0 0 50px;
  margin: 0;
}
/* line 119, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist ol.children li.comment {
  border-top: 1px dashed #dadada;
}
/* line 124, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist .comment-author {
  top: 0;
  left: 0;
}
/* line 127, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist .comment-author img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
/* line 134, ../scss/contents/7.0-content/_7.4-comment.scss */
.commentlist .comment-body code, .commentlist .comment-body pre {
  clear: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

/* line 144, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span {
  font-size: 85%;
  line-height: 1;
  font-weight: bold;
}
/* line 148, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.comment-like, .comment-body-foot > span.comment-dislike, .comment-body-foot > span.edit-comment {
  font-weight: normal;
}
/* line 151, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.pipe {
  margin-left: 10px;
  margin-right: 10px;
  border-left: 1px solid #dadada;
  height: 25px;
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  /* line 151, ../scss/contents/7.0-content/_7.4-comment.scss */
  .comment-body-foot > span.pipe {
    margin-left: 7px;
    margin-right: 2px;
  }
}
/* line 165, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.comment-like i {
  margin-right: 7px;
  color: #737373;
  float: left;
  position: relative;
  display: inline;
}
/* line 173, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.comment-like span {
  float: left;
  position: relative;
  display: inline;
}
/* line 181, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.comment-dislike i {
  margin-left: 7px;
  margin-right: 7px;
  color: #737373;
  float: left;
  position: relative;
  display: inline;
}
/* line 190, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot > span.comment-dislike span {
  float: left;
  position: relative;
  display: inline;
}

/* line 199, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-head > span {
  font-size: 95%;
  line-height: 1;
}
/* line 203, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-head .commenter-name {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
/* line 209, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-head .comment-date {
  color: #737373;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

/* line 216, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-text {
  margin-top: 6px;
}
/* line 218, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-text p {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  /* line 218, ../scss/contents/7.0-content/_7.4-comment.scss */
  .comment-body-text p {
    max-width: 280px;
  }
}

/* line 227, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-foot {
  margin-top: 20px;
  min-height: 25px;
}

/* line 231, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-body-head, .comment-body-text, .comment-body-foot {
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: auto;
}

/* line 239, ../scss/contents/7.0-content/_7.4-comment.scss */
.like-dislike-count {
  padding-left: 5px;
}

/* line 245, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-like, .comment-dislike {
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}
/* line 251, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-like span.like-dislike-count, .comment-dislike span.like-dislike-count {
  font-weight: bold;
}

/* line 256, ../scss/contents/7.0-content/_7.4-comment.scss */
.reply-comment {
  margin-right: 20px;
}
/* line 258, ../scss/contents/7.0-content/_7.4-comment.scss */
.reply-comment .comment-reply-link {
  border-radius: 3px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
}

/* line 271, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-awaiting-moderation, .comment-reply-title {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

/* line 277, ../scss/contents/7.0-content/_7.4-comment.scss */
.comment-navigation {
  overflow: hidden;
  padding: 12px 20px;
  margin-bottom: 50px;
  font-size: 95%;
}

/* line 284, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .pingback {
  margin-bottom: 30px;
}
/* line 286, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .pingback p {
  display: block;
  margin: 0;
}
/* line 290, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .pingback .url {
  text-decoration: underline;
}
/* line 292, ../scss/contents/7.0-content/_7.4-comment.scss */
#comments .pingback .url:hover {
  text-decoration: none;
}

/* line 298, ../scss/contents/7.0-content/_7.4-comment.scss */
.alert-msg {
  display: none !important;
  position: absolute !important;
  top: 22px;
  left: 0;
  color: #fff;
  padding: 5px 10px;
  line-height: 1;
  font-family: arial;
  font-size: 12px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
/* line 311, ../scss/contents/7.0-content/_7.4-comment.scss */
.alert-msg:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom-width: 5px;
  border-bottom-style: solid;
  position: absolute;
  top: -5px;
  left: 10px;
}

/**
 * 7.5 Pagination
 * -----------------------------------------------------------------------------
 */
/* line 5, ../scss/contents/7.0-content/_7.5-pagination.scss */
.pagination {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* line 10, ../scss/contents/7.0-content/_7.5-pagination.scss */
.pagination > * {
  display: inline-table;
  float: left;
  margin-right: 4px;
}

/* line 15, ../scss/contents/7.0-content/_7.5-pagination.scss */
.pagination span.current,
.pagination a {
  margin-bottom: 2px;
  height: 32px;
  min-width: 32px;
  line-height: 28px;
  padding: 0 10px;
  text-align: center;
  border-width: 2px;
  border-style: solid;
}

/* line 26, ../scss/contents/7.0-content/_7.5-pagination.scss */
.pagination span.current {
  color: #fff !important;
}

/* line 29, ../scss/contents/7.0-content/_7.5-pagination.scss */
.pagination span.pagi-desc {
  position: absolute;
  right: 0;
  top: 5px;
  float: none;
  margin: 0;
}

/* line 37, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation {
  overflow: hidden;
  clear: both;
  float: none;
  margin: 10px 0;
}
/* line 42, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation .nav-previous, .archive-navigation .nav-next {
  border-radius: 3px;
  width: 48%;
}
/* line 46, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation .nav-next a {
  text-align: right;
}
/* line 49, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation a {
  color: #fff;
  padding: 0;
  display: block;
  text-transform: uppercase;
}
/* line 56, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation a:hover {
  color: #fff !important;
}
/* line 59, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation a .fa {
  padding: 10px;
  font-size: 24px;
}
/* line 63, ../scss/contents/7.0-content/_7.5-pagination.scss */
.archive-navigation a span {
  position: relative;
  top: -3px;
}

/**
 * 7.6 Archive
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-wrap .block {
  margin-bottom: 0;
}

/* line 10, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-head {
  margin-bottom: 40px;
}
/* line 12, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-head.have-cat-slider {
  margin-bottom: 0;
}

/* line 17, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-title {
  position: relative;
  padding-bottom: 10px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  padding-right: 50px;
}
/* line 23, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-title h1 {
  font-size: 26px;
  text-transform: uppercase;
}
/* line 27, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-title .rss-link {
  font-size: 30px;
  position: absolute;
  right: 0;
  top: 2px;
}

/* line 35, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-desc {
  padding-top: 16px;
  font-style: italic;
}

/* line 40, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-author {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

/* line 47, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-search {
  margin-bottom: 30px;
}
/* line 49, ../scss/contents/7.0-content/_7.6-archive.scss */
.archive-search p {
  font-style: italic;
}

/* line 54, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post {
  margin-bottom: 40px;
  min-height: 55px;
}
/* line 57, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .entry-header {
  padding-left: 75px;
}
/* line 60, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .entry-title {
  font-size: 18px;
}
/* line 63, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .entry-meta {
  margin-top: 8px;
  color: #999;
}
/* line 67, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .entry-content {
  margin-top: 10px;
  padding-left: 75px;
}
/* line 71, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .search-number {
  font-size: 28px;
  width: 55px;
  height: 55px;
  line-height: 50px;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
/* line 83, ../scss/contents/7.0-content/_7.6-archive.scss */
.search-post .no-post {
  margin-top: 17px;
  line-height: 1;
}

/**
 * 7.6b Category
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap {
  margin-bottom: 0;
}
/* line 8, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 8, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head {
    margin-bottom: 5px;
  }
}
/* line 13, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .category-title {
  position: relative;
  float: left;
  width: 100%;
}
/* line 18, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .category-title h2, .category-wrap .category-head .category-title .title-tag-h1 {
  font-size: 50px;
  font-family: "Roboto Slab", serif;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 0;
  margin-left: 20px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  /* line 18, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .category-title h2, .category-wrap .category-head .category-title .title-tag-h1 {
    margin-left: -4px;
    margin-top: 10px;
    font-size: 25px;
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 18, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .category-title h2, .category-wrap .category-head .category-title .title-tag-h1 {
    margin-left: -4px;
    font-size: 40px;
  }
}
/* line 45, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head #new-search h2 {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  margin: 0;
  margin-top: 0px;
  width: 100%;
  text-align: left;
  color: black;
  float: left;
  width: auto !important;
  margin-top: 10px;
}
/* line 57, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head #new-search form#solrformnew {
  float: left !important;
  width: 86% !important;
  position: relative;
}
@media only screen and (max-width: 767px) {
  /* line 57, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head #new-search form#solrformnew {
    width: 75% !important;
    top: -3px;
  }
}
/* line 65, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head #new-search form#solrformnew li {
  position: absolute;
  top: 0.5em;
  right: 15px;
}
/* line 70, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head #new-search form#solrformnew input#searchform {
  font-weight: bold;
  font-size: 1.2em;
  float: left;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-left: 10px;
  padding: 9px 0 5px 0px;
  width: 98%;
}
/* line 82, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head #new-search form#solrformnew i {
  position: absolute;
  right: 0px;
  font-size: 30px;
  color: #A4A4A4;
}
/* line 90, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  /* line 90, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab {
    width: 98%;
  }
}
/* line 98, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li {
  display: inline-block;
  float: left;
  border-bottom: solid 1px #e6e6e6;
  margin-bottom: 0px;
  line-height: 45px;
  /*padding: 0px 40px 0px 40px;*/
  width: 225px;
  text-align: center;
}
/* line 107, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li:first-child {
  width: auto;
}
@media only screen and (max-width: 767px) {
  /* line 98, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab li {
    width: 50%;
    padding: 0;
    text-align: center;
    line-height: 43px;
    font-size: emCalc(16px);
  }
}
/* line 117, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li a {
  font-family: "Lato", sans-serif;
  color: #c1c1c1;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  /* line 117, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab li a {
    font-size: 12px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 117, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab li a {
    font-size: 20px;
  }
}
/* line 131, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li.label {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #000;
  /*padding:0 50px 0 10px;*/
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 131, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab li.label {
    width: 100%;
    border-bottom: none;
    text-align: left;
  }
}
/* line 143, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li.active {
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: none;
  padding: 0;
}
/* line 148, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .category-head .menu_tab li.active a {
  width: 225px;
  border-left: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
  /*padding: 0px 60px 0px 60px;*/
  line-height: 40px;
  display: inline-block;
  float: left;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 148, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category-wrap .category-head .menu_tab li.active a {
    padding: 0;
    width: 100%;
  }
}
/* line 166, ../scss/contents/7.0-content/_7.6b-category.scss */
.category-wrap .sidebarcategory {
  position: relative;
  padding-left: 10px;
}

/* line 173, ../scss/contents/7.0-content/_7.6b-category.scss */
.fullwidth-template {
  margin-bottom: 20px;
}
/* line 175, ../scss/contents/7.0-content/_7.6b-category.scss */
.fullwidth-template .fullwidth-title {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 180, ../scss/contents/7.0-content/_7.6b-category.scss */
.fullwidth-template .fullwidth-title h2 {
  font-size: 50px;
  font-family: "Roboto Slab", serif;
  text-transform: none;
  font-weight: bold;
  padding-bottom: 10px;
  margin: 0;
  margin-left: 20px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  /* line 180, ../scss/contents/7.0-content/_7.6b-category.scss */
  .fullwidth-template .fullwidth-title h2 {
    margin-left: -4px;
    margin-top: 10px;
    font-size: 25px;
    padding-bottom: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 180, ../scss/contents/7.0-content/_7.6b-category.scss */
  .fullwidth-template .fullwidth-title h2 {
    margin-left: -4px;
    font-size: 40px;
  }
}
/* line 205, ../scss/contents/7.0-content/_7.6b-category.scss */
.fullwidth-template a:link,
.fullwidth-template a:visited,
.fullwidth-template a:hover,
.fullwidth-template a:active {
  color: #ff8400;
}

@media only screen and (max-width: 767px) {
  /* line 218, ../scss/contents/7.0-content/_7.6b-category.scss */
  .category #oas_Frame1 {
    margin-left: -10px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
/**
 * 7.6c Register
 * -----------------------------------------------------------------------------
 */
/* line 1, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker {
  position: absolute;
  background: #FFF;
  border: 1px solid #999;
  z-index: 1200;
  padding: 5px;
  top: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 2, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker * {
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  margin: 0;
  padding: 0;
  color: #373737;
  background: transparent;
  border: none;
}
/* line 6, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker *:after, .Zebra_DatePicker *:before {
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
/* line 23, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker table {
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  table-layout: auto;
}
/* line 29, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td, .Zebra_DatePicker th {
  text-align: center;
  padding: 5px 0;
}
/* line 33, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td {
  cursor: pointer;
}
/* line 36, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_daypicker, .Zebra_DatePicker .dp_monthpicker, .Zebra_DatePicker .dp_yearpicker {
  margin-top: 3px;
}
/* line 40, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_daypicker td, .Zebra_DatePicker .dp_daypicker th {
  width: 30px;
}
/* line 44, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_monthpicker td, .Zebra_DatePicker .dp_yearpicker td {
  width: 30px;
}
/* line 50, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_header .dp_hover, .Zebra_DatePicker td.dp_selected, .Zebra_DatePicker .dp_footer .dp_hover, .Zebra_DatePicker td.dp_hover {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 55, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker.dp_visible {
  visibility: visible;
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
/* line 63, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker.dp_hidden {
  visibility: hidden;
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
/* line 72, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_header .dp_previous, .Zebra_DatePicker .dp_header .dp_next {
  width: 30px;
}
/* line 75, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_header .dp_caption {
  font-weight: bold;
}
/* line 78, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_header .dp_hover {
  background: #ff8400;
  color: #373737;
}
/* line 83, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_daypicker th {
  font-weight: bold;
}
/* line 87, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_not_in_month {
  color: #DEDEDE;
  cursor: default;
}
/* line 92, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_weekend_disabled {
  color: #DEDEDE;
  cursor: default;
}
/* line 96, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_selected {
  background: #ff8400;
  color: #FFF !important;
}
/* line 100, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_week_number {
  cursor: text;
  font-weight: bold;
}
/* line 105, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_monthpicker td, .Zebra_DatePicker .dp_yearpicker td {
  width: 33%;
}
/* line 108, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker .dp_footer {
  margin-top: 3px;
}
/* line 112, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_current, .Zebra_DatePicker td.dp_disabled_current {
  color: #ff8400;
}
/* line 115, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_disabled {
  color: #DEDEDE;
  cursor: default;
}
/* line 119, ../scss/vendor/_zebra-datepicker.scss */
.Zebra_DatePicker td.dp_hover {
  background: #DEDEDE;
}

/* line 125, ../scss/vendor/_zebra-datepicker.scss */
button.Zebra_DatePicker_Icon {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  text-indent: -9000px;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  vertical-align: top;
}
/* line 138, ../scss/vendor/_zebra-datepicker.scss */
button.Zebra_DatePicker_Icon {
  margin: 0 0 0 3px;
}
/* line 141, ../scss/vendor/_zebra-datepicker.scss */
button.Zebra_DatePicker_Icon_Inside {
  margin: 0 3px 0 0;
}

/* don't set vertical margins! */
/* @group Base */
/* line 9, ../scss/vendor/_chosen.scss */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
/* line 17, ../scss/vendor/_chosen.scss */
.chosen-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 20, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 2px solid #f1f1f1;
  border-top: 0;
  background: #fff;
}
/* line 30, ../scss/vendor/_chosen.scss */
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
/* line 33, ../scss/vendor/_chosen.scss */
.chosen-container a {
  cursor: pointer;
}
/* line 38, ../scss/vendor/_chosen.scss */
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
/* line 45, ../scss/vendor/_chosen.scss */
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
/* line 57, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single {
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid #f1f1f1;
  color: #555;
  display: block;
  line-height: 24px;
  margin-bottom: 11px;
  overflow: hidden;
  padding: 4px 30px 4px 12px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
/* line 71, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-default {
  color: #999;
}
/* line 74, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 81, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
/* line 84, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 30;
  height: 20px;
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/chosen-sprite.png?v=20201209103731") -42px 1px no-repeat;
  font-size: 1px;
}
/* line 93, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
/* line 97, ../scss/vendor/_chosen.scss */
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
/* line 100, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 100%;
}
/* line 107, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: 15px FontAwesome;
  padding-left: 7px;
  padding-top: 7px;
  transform: translate(0px, 0px);
  color: #fff;
}
/* line 118, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-single div b:before {
  content: "\f078";
}
/* line 124, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
/* line 130, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #fff url("/wp-content/themes/gazzanet/LIBS/css/assets/chosen-sprite.png?v=20201209103731") no-repeat 100% -20px;
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/chosen-sprite.png?v=20201209103731") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
/* line 145, ../scss/vendor/_chosen.scss */
.chosen-container-single .chosen-drop {
  margin-top: -12px;
  background-clip: padding-box;
}
/* line 149, ../scss/vendor/_chosen.scss */
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Results */
/* line 157, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
/* line 166, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
/* line 174, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
/* line 178, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* line 183, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.highlighted {
  background-color: #ff8400;
  color: #fff;
}
/* line 187, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
/* line 192, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
/* line 197, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
/* line 200, ../scss/vendor/_chosen.scss */
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
/* line 210, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIvPjxzdG9wIG9mZnNldD0iMTUlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}
/* line 223, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
/* line 226, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
/* line 230, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
/* line 245, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2YwZjBmMCIvPjxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjZThlOGU4Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWVlZWVlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
/* line 261, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
/* line 264, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/chosen-sprite.png?v=20201209103731") -42px 1px no-repeat;
  font-size: 1px;
}
/* line 273, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
/* line 278, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2YwZjBmMCIvPjxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjZThlOGU4Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWVlZWVlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
/* line 285, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
/* line 287, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
/* line 292, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
/* line 296, ../scss/vendor/_chosen.scss */
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
/* line 306, ../scss/vendor/_chosen.scss */
.chosen-container-active .chosen-single {
  border: 2px solid #f1f1f1;
}
/* line 310, ../scss/vendor/_chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 2px solid #f1f1f1;
}
/* line 316, ../scss/vendor/_chosen.scss */
.chosen-container-active.chosen-with-drop .chosen-single div b:before {
  content: "\f077";
}
/* line 322, ../scss/vendor/_chosen.scss */
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
/* line 325, ../scss/vendor/_chosen.scss */
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
/* line 333, ../scss/vendor/_chosen.scss */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
/* line 336, ../scss/vendor/_chosen.scss */
.chosen-disabled .chosen-single {
  cursor: default;
}
/* line 339, ../scss/vendor/_chosen.scss */
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  /* line 347, ../scss/vendor/_chosen.scss */
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/chosen-sprite@2x.png?v=20201209103731") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
/* @end */
/* line 1, ../scss/vendor/_strength-meter.scss */
.strength, .kv-meter-container {
  width: 84%;
}

/* line 5, ../scss/vendor/_strength-meter.scss */
.kv-meter-container {
  margin-top: -2px;
}

/* line 9, ../scss/vendor/_strength-meter.scss */
.strength {
  margin-bottom: 0;
}

/* line 13, ../scss/vendor/_strength-meter.scss */
.kv-meter {
  text-align: center;
}

/* line 17, ../scss/vendor/_strength-meter.scss */
.kv-disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* line 22, ../scss/vendor/_strength-meter.scss */
.kv-scorebar-border {
  border: 0;
  height: 2px;
  width: 100%;
  margin: 0 auto;
}

/* line 29, ../scss/vendor/_strength-meter.scss */
.kv-scorebar {
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/bg_strength_gradient.jpg?v=20201209103731");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  width: 84%;
  height: 2px;
  z-index: 0;
  margin-bottom: 10px;
}

/* line 40, ../scss/vendor/_strength-meter.scss */
.kv-score {
  font-weight: bold;
  font-size: 75%;
  position: absolute;
  width: 98px;
  z-index: 10;
  border-radius: 2px;
}

/* line 49, ../scss/vendor/_strength-meter.scss */
.kv-score-0, .kv-score-1, .kv-score-5 {
  color: #fff;
}

/* line 53, ../scss/vendor/_strength-meter.scss */
.kv-score-2, .kv-score-3, .kv-score-4 {
  color: #333;
}

/* line 57, ../scss/vendor/_strength-meter.scss */
.kv-verdict {
  width: 100%;
}

/* line 61, ../scss/vendor/_strength-meter.scss */
input[type=checkbox]#showpass {
  display: none;
}

/* line 65, ../scss/vendor/_strength-meter.scss */
input[type=checkbox]#showpass + label {
  font: normal normal normal 22px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 4px);
  font-size: 25px;
  color: #ccc;
  height: 30px;
  width: 30px;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 0px;
}
/* line 73, ../scss/vendor/_strength-meter.scss */
input[type=checkbox]#showpass + label:before {
  content: "\f06e";
}

/* line 86, ../scss/vendor/_strength-meter.scss */
input[type=checkbox]:checked#showpass + label:before {
  content: "\f070";
}

/* line 10, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap {
  display: block;
  float: left;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
/* line 17, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap .register-head {
  margin-bottom: 40px;
  position: relative;
  display: block;
}
/* line 21, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap .register-head .register-title {
  position: relative;
}
/* line 23, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap .register-head .register-title h2 {
  font-size: 44px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  margin: 0 auto;
  position: relative;
  display: block;
  max-width: 450px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  /* line 38, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    width: 100%;
    position: relative;
    float: left;
  }
}
/* line 51, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .label {
  clear: both;
  display: block;
  float: left;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 100%;
}
/* line 62, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .label.first {
  margin-top: 0;
}
/* line 65, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .label.tiny {
  margin-top: 3px;
  font-size: 12px;
  margin-bottom: 7px;
}
/* line 71, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-dati {
  padding-left: 13%;
  padding-right: 5%;
  border-right: 1px solid #eeeeee;
}
@media only screen and (max-width: 767px) {
  /* line 71, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-dati {
    padding: 0;
    border: none;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
  }
}
/* line 83, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login {
  padding-right: 13%;
  padding-left: 5%;
}
@media only screen and (max-width: 767px) {
  /* line 83, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-social-login {
    padding: 0;
    border: none;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
  }
}
/* line 94, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button {
  border-radius: 3px;
  display: block;
  float: left;
  height: 45px;
  margin-bottom: 10px;
  position: relative;
  width: 220px;
  cursor: pointer;
  text-align: center;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 94, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-social-login .social-button {
    width: 100%;
  }
}
/* line 109, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button.fb {
  background-color: #3b5997;
}
/* line 112, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button.gp {
  background-color: #cf3e2d;
}
/* line 115, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button.disactive {
  opacity: 0.2;
  cursor: not-allowed;
}
/* line 119, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button a {
  width: 100%;
  position: relative;
  display: block;
  float: left;
  height: 100%;
}
/* line 125, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button a i {
  color: #fff;
  font-size: 1.3em;
  margin-right: 5px;
}
/* line 130, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-social-login .social-button a span {
  font-size: 14px;
  color: #fff;
}
/* line 137, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy {
  padding-right: 13%;
  padding-left: 13%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  /* line 137, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-privacy {
    padding: 0;
    border: none;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    box-ordinal-group: 3;
  }
}
/* line 149, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table {
  border-color: #f1f1f1;
}
@media only screen and (max-width: 767px) {
  /* line 149, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-privacy table {
    float: left;
  }
}
/* line 155, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table td {
  padding: 10px;
}
/* line 157, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table td p {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: #757575;
}
/* line 163, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table h3 {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #696969;
  margin-bottom: 5px;
}
/* line 171, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy textarea, .register-wrap #gazzanet-registration-form .area-privacy div.textarea {
  height: 150px;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 12px;
  margin: 10px 0 0;
  padding: 5px;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ccc;
  color: black;
  white-space: normal;
}
/* line 182, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy div.textarea {
  overflow: scroll;
}
/* line 185, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: #757575;
}
/* line 189, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col {
  padding: 5px;
  width: 120px;
  position: relative;
}
/* line 193, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col fieldset {
  border: none;
  padding: 10px 10px;
  margin-bottom: 0;
}
/* line 198, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col div {
  position: relative;
}
/* line 201, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col input, .register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col label {
  position: relative;
  display: inline-block;
}
/* line 205, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions td.accepet-col label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #000;
  margin-left: 5px;
}
/* line 212, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy table.conditions textarea {
  height: 50px;
}
/* line 216, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy div.g-recaptcha {
  display: block;
  margin: 20px auto 0;
  position: relative;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  /* line 216, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-privacy div.g-recaptcha {
    width: 270px;
    float: left;
    margin-left: -15px;
  }
}
/* line 227, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy button.button-login {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  width: 300px;
  cursor: pointer;
}
/* line 233, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .area-privacy button.button-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media only screen and (max-width: 767px) {
  /* line 227, ../scss/contents/7.0-content/_7.6c-register.scss */
  .register-wrap #gazzanet-registration-form .area-privacy button.button-login {
    width: 270px;
    float: left;
    margin-bottom: 20px;
  }
}
/* line 244, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
/* line 249, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group.pwcontrol {
  padding-bottom: 10px;
}
/* line 252, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group.gender {
  font-size: 14px;
}
/* line 254, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group.gender input {
  margin-right: 4px;
}
/* line 257, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group.gender input.female {
  margin-left: 15px;
}
/* line 263, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group input.ok {
  border-bottom-color: #509B1C;
}
/* line 266, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group input.ko {
  border-bottom-color: #FE0C00;
}
/* line 271, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group label i {
  position: absolute;
  cursor: pointer;
  top: 13px;
  right: 15px;
  display: block;
  color: #ccc;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  vertical-align: middle;
}
/* line 282, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group label i.ok {
  color: #509B1C;
}
/* line 285, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group label i.ko {
  color: #FE0C00;
}
/* line 289, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group label.lockpw {
  display: inline-block;
  right: 40px;
  position: absolute;
  top: -2px;
}
/* line 296, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group .message {
  font-family: "Lato", sans-serif;
  color: red;
  font-size: 13px;
  margin-bottom: 10px;
  float: left;
}
/* line 304, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group .dateins {
  width: 20%;
  margin-right: 1%;
}
/* line 307, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group .dateins.big {
  width: 40%;
}
/* line 310, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group .dateins.placeholder {
  cursor: pointer;
  display: inline-block;
  height: 35px;
  margin-right: 0;
  margin-top: 0;
  padding-top: 8px;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
/* line 320, ../scss/contents/7.0-content/_7.6c-register.scss */
.register-wrap #gazzanet-registration-form .input-group .dateins.placeholder i {
  color: #fff;
  font-size: 1.3em;
}

/**
 * 7.6d Profile
 * -----------------------------------------------------------------------------
 */
/* line 6, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu {
  padding-left: 10%;
  padding-right: 10%;
}
@media only screen and (max-width: 767px) {
  /* line 6, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .nav-menu {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 13, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .nav-menu ul {
    margin-left: 0;
  }
}
/* line 18, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu ul li {
  width: 49%;
  display: inline-block;
  height: 35px;
  background-color: #363636;
  cursor: pointer;
}
/* line 24, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu ul li .step-number {
  border-right: 1px dashed;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 15%;
  float: left;
  color: gray;
}
/* line 34, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu ul li .step-title {
  color: gray;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 85%;
  float: left;
}
/* line 43, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu ul li.active {
  color: #fff;
  background-color: #ff8400;
}
/* line 46, ../scss/contents/7.0-content/_7.6d-profile.scss */
.nav-menu ul li.active .step-title, .nav-menu ul li.active .step-number {
  color: #fff;
}

/* line 54, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column {
  display: block;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 54, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column {
    padding-left: 4%;
    padding-right: 3%;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 54, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column {
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 54, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column {
    padding-left: 21%;
    padding-right: 21%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 71, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column h1 {
    font-size: 20px;
  }
}
/* line 78, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column.hide {
  display: none !important;
}
/* line 81, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .subtitle {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  float: left;
  width: 100%;
  position: relative;
}
/* line 91, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column h4 {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
/* line 96, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column h5 {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 96, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column h5 {
    margin-top: 10px;
    margin-bottom: 4px;
  }
}
/* line 105, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector, .form-column .team-selector, .form-column .area-confirm {
  margin-top: 15px;
  float: left;
  width: 100%;
  position: relative;
}
/* line 111, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .area-confirm {
  text-align: center;
}
/* line 115, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul {
  margin: 0;
}
/* line 117, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li {
  float: left;
  position: relative;
  display: block;
  margin-right: 6px;
}
@media only screen and (max-width: 767px) {
  /* line 117, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .sport-selector ul li {
    margin-bottom: 5px;
    margin-right: 9px;
  }
  /* line 125, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .sport-selector ul li:nth-child(4), .form-column .sport-selector ul li:nth-child(8) {
    margin-right: 0;
  }
}
/* line 130, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li.last {
  margin-right: 0;
}
/* line 133, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sport {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  fill: currentColor;
}
/* line 139, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE602 {
  width: 2.013671875em;
}
/* line 142, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE607 {
  width: 2.0009765625em;
}
/* line 145, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE608 {
  width: 2.837890625em;
}
/* line 148, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE609 {
  width: 2.48046875em;
}
/* line 151, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE60C {
  width: 2.8671875em;
}
/* line 154, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li .icon-sportuniE615 {
  width: 2.0009765625em;
}
/* line 157, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox] {
  display: none;
}
/* line 160, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox] + label {
  background: #363636 none repeat scroll 0 0;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  height: 77px;
  padding-bottom: 6px;
  padding-top: 6px;
  position: relative;
  width: 77px;
}
@media only screen and (max-width: 767px) {
  /* line 160, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .sport-selector ul li input[type=checkbox] + label {
    width: 60px;
    height: 60px;
  }
}
/* line 175, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox] + label .icon {
  color: #eaeaea;
  height: 42px;
  left: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 9px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 175, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .sport-selector ul li input[type=checkbox] + label .icon {
    top: 4px;
  }
}
/* line 188, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox] + label .sport-text {
  bottom: 0;
  color: #eaeaea;
  font-family: "Lato", sans-serif;
  font-size: 9px;
  left: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 60px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  /* line 188, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .sport-selector ul li input[type=checkbox] + label .sport-text {
    top: 47px;
  }
}
/* line 204, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox]:checked + label {
  background-color: #ff8400;
}
/* line 206, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox]:checked + label .icon {
  color: #fff;
}
/* line 209, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .sport-selector ul li input[type=checkbox]:checked + label .sport-text {
  color: #fff;
}
/* line 217, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul {
  margin: 0;
}
/* line 219, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li {
  display: inline-block;
  float: none;
  margin-right: 2px;
  margin-top: 2px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  /* line 219, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .team-selector ul li {
    margin-bottom: 3px;
    margin-top: 3px;
    margin-right: 6px;
  }
  /* line 229, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .team-selector ul li:nth-child(4), .form-column .team-selector ul li:nth-child(8), .form-column .team-selector ul li:nth-child(12), .form-column .team-selector ul li:nth-child(16), .form-column .team-selector ul li:nth-child(20) {
    margin-right: 0;
  }
  /* line 232, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .team-selector ul li:nth-child(21) {
    margin-left: 70px;
  }
}
/* line 237, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] {
  display: none;
}
/* line 240, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox].serieb + label {
  padding-left: 0;
  padding-right: 0;
  width: 55px;
}
@media only screen and (max-width: 767px) {
  /* line 240, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column .team-selector ul li input[type=checkbox].serieb + label {
    width: 61px;
  }
}
/* line 248, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label {
  border: 1px solid gray;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  height: 61px;
  padding: 2px;
  position: relative;
  width: 61px;
}
/* line 257, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span {
  display: block;
  height: 100%;
  text-indent: -9999px;
  width: 100%;
}
/* line 262, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag {
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/Loghi-SerieA-SerieB-Europa.svg?v=20201209103731") no-repeat transparent left top/4200px 60px;
}
/* line 264, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.atalanta {
  background-position: 10px -2px;
}
/* line 267, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.bologna {
  background-position: -40px -2px;
}
/* line 270, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.cagliari {
  background-position: -94px -2px;
}
/* line 273, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.catania {
  background-position: -155px -2px;
}
/* line 276, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.chievo {
  background-position: -221px -2px;
}
/* line 279, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.fiorentina {
  background-position: -280px -2px;
}
/* line 282, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.genoa {
  background-position: -330px -2px;
}
/* line 285, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.inter {
  background-position: -384px -2px;
}
/* line 288, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.juventus {
  background-position: -436px -2px;
}
/* line 291, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.lazio {
  background-position: -501px -2px;
}
/* line 294, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.livorno {
  background-position: -578px -2px;
}
/* line 297, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.milan {
  background-position: -635px -2px;
}
/* line 300, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.napoli {
  background-position: -691px -2px;
}
/* line 303, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.palermo {
  background-position: -753px -2px;
}
/* line 306, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.parma {
  background-position: -807px -2px;
}
/* line 309, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.pescara {
  background-position: -862px -2px;
}
/* line 312, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.roma {
  background-position: -920px -2px;
}
/* line 315, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.sampdoria {
  background-position: -977px -2px;
}
/* line 318, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.sassuolo {
  background-position: -1035px -2px;
}
/* line 321, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.siena {
  background-position: -826px -2px;
}
/* line 324, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.torino {
  background-position: -1148px -2px;
}
/* line 327, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.udinese {
  background-position: -1208px -2px;
}
/* line 330, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.verona {
  background-position: -1270px -2px;
}
/* line 333, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.empoli {
  background-position: -1375px -2px;
}
/* line 336, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.cesena {
  background-position: -1324px -2px;
}
/* line 339, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.carpi {
  background-position: -1428px -2px;
}
/* line 342, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.frosinone {
  background-position: -1478px -2px;
}
/* line 345, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.avellino {
  background-position: -1538px -2px;
}
/* line 348, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.bari {
  background-position: -1606px -2px;
}
/* line 351, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.como {
  background-position: -1668px -2px;
}
/* line 354, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.crotone {
  background-position: -1723px -2px;
}
/* line 357, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.latina {
  background-position: -1796px -2px;
}
/* line 360, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.modena {
  background-position: -1871px -2px;
}
/* line 363, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.novara {
  background-position: -1938px -2px;
}
/* line 366, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.perugia {
  background-position: -2010px -2px;
}
/* line 369, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.pro-vercelli {
  background-position: -2080px -2px;
}
/* line 372, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.salernitana {
  background-position: -2153px -2px;
}
/* line 375, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.spezia {
  background-position: -2239px -2px;
}
/* line 378, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.teramo {
  background-position: -2314px -2px;
}
/* line 381, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.ternana {
  background-position: -2380px  -2px;
}
/* line 384, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.trapani {
  background-position: -2446px -2px;
}
/* line 387, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.vicenza {
  background-position: -2520px -2px;
}
/* line 390, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.virtus-lanciano {
  background-position: -2590px -2px;
}
/* line 393, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.benevento {
  background-position: -3556px -2px;
}
/* line 396, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.spal {
  background-position: -3627px -2px;
}
/* line 399, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.cremonese {
  background-position: -3694px -2px;
}
/* line 402, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.venezia {
  background-position: -3767px -2px;
}
/* line 405, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.foggia {
  background-position: -3840px -2px;
}
/* line 408, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.ascoli {
  background-position: -3905px -2px;
}
/* line 411, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.cittadella {
  background-position: -3971px -2px;
}
/* line 414, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.brescia {
  background-position: -4038px -2px;
}
/* line 417, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox] + label span.flag.virtus-entella {
  background-position: -4102px -2px;
}
/* line 423, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column .team-selector ul li input[type=checkbox]:checked + label {
  background-color: #ff8400;
}
/* line 429, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset {
  border: 0;
}
@media only screen and (max-width: 767px) {
  /* line 429, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
  }
}
/* line 439, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset legend {
  padding: 0;
}
/* line 441, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset legend h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 0;
  font-family: "Roboto Slab", serif;
}
/* line 449, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row {
  clear: both;
  margin-bottom: 15px;
  position: relative;
}
/* line 453, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .inline-label {
  display: inline-block;
  line-height: 40px;
  vertical-align: top;
  width: 141px;
  font-weight: 400px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 767px) {
  /* line 453, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .inline-label {
    font-weight: 600px;
    width: 100%;
    line-height: 20px;
  }
}
/* line 467, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .inline-label input.newslettercheck + label {
  margin-left: 8px;
}
/* line 471, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper {
  display: inline-block;
  margin-left: 20px;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  /* line 471, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .field-wrapper {
    width: 270px;
    margin-left: 0;
  }
}
/* line 480, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper input[type="text"], .form-column fieldset .form-row .field-wrapper input[type="password"], .form-column fieldset .form-row .field-wrapper input[type="email"], .form-column fieldset .form-row .field-wrapper input[type="number"], .form-column fieldset .form-row .field-wrapper input[type="search"], .form-column fieldset .form-row .field-wrapper input[type="tel"] {
  width: 100%;
}
/* line 483, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper input.male, .form-column fieldset .form-row .field-wrapper input.female {
  margin-right: 10px;
}
/* line 486, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper.text-block {
  display: inline-block;
  line-height: 40px;
  vertical-align: top;
}
/* line 491, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper.address {
  width: 226px;
}
@media only screen and (max-width: 767px) {
  /* line 491, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .field-wrapper.address {
    width: 198px;
  }
}
/* line 497, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper.left-offset {
  margin-left: 164px;
}
@media only screen and (max-width: 767px) {
  /* line 497, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .field-wrapper.left-offset {
    margin-left: 0;
  }
}
/* line 503, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper.civic-number {
  margin-left: 10px;
  width: 50px;
}
/* line 507, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .field-wrapper p {
  font-size: 13px;
  font-family: "Lato", sans-serif;
  line-height: 43px;
}
@media only screen and (max-width: 767px) {
  /* line 507, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .field-wrapper p {
    display: none;
  }
}
/* line 516, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .hint {
  display: block;
  font-size: 12px;
  padding: 2px;
  text-align: left;
  font-size: 11px;
  font-family: "Lato", sans-serif;
}
/* line 524, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .message {
  font-family: "Lato", sans-serif;
  color: red;
  font-size: 13px;
  margin-bottom: 10px;
  float: left;
}
/* line 531, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .dateins {
  width: 20%;
  margin-right: 1%;
}
/* line 534, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .dateins.big {
  width: 40% !important;
}
/* line 537, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .dateins.placeholder {
  cursor: pointer;
  display: inline-block;
  height: 35px;
  margin-right: 0;
  margin-top: 0;
  padding-top: 8px;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
/* line 547, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .dateins.placeholder i {
  color: #fff;
  font-size: 1.3em;
}
/* line 553, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button {
  border-radius: 3px;
  display: block;
  float: left;
  height: 45px;
  margin-bottom: 10px;
  position: relative;
  width: 220px;
  cursor: pointer;
  text-align: center;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  /* line 553, ../scss/contents/7.0-content/_7.6d-profile.scss */
  .form-column fieldset .form-row .social-button {
    width: 100%;
  }
}
/* line 568, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button.fb {
  background-color: #3b5997;
}
/* line 571, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button.gp {
  background-color: #cf3e2d;
}
/* line 574, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button.disactive {
  opacity: 0.2;
  cursor: not-allowed;
}
/* line 578, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button a {
  width: 100%;
  position: relative;
  display: block;
  float: left;
  height: 100%;
}
/* line 584, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button a i {
  color: #fff;
  font-size: 1.3em;
  margin-right: 5px;
}
/* line 589, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column fieldset .form-row .social-button a span {
  font-size: 14px;
  color: #fff;
}
/* line 598, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column #privacy-policy .inline-label {
  line-height: 16px;
  vertical-align: top;
  font-weight: 400px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  width: auto;
}
/* line 606, ../scss/contents/7.0-content/_7.6d-profile.scss */
.form-column #privacy-policy td.selection {
  width: 150px;
}

/**
* 7.7 404 Page
* -----------------------------------------------------------------------------
*/
/* line 5, ../scss/contents/7.0-content/_7.7-404.scss */
.error-wrap {
  padding: 150px 0;
  min-height: 500px;
}

/* line 9, ../scss/contents/7.0-content/_7.7-404.scss */
.error-wrap h1 {
  font-size: 60px;
}

/* line 12, ../scss/contents/7.0-content/_7.7-404.scss */
.error-wrap p {
  font-size: 20px !important;
  margin-top: 20px;
}

/* line 16, ../scss/contents/7.0-content/_7.7-404.scss */
.error-button {
  margin-top: 30px;
}

/**
* 7.8 Users Page Author
* -----------------------------------------------------------------------------
*/
/* line 6, ../scss/contents/7.0-content/_7.8-users-page.scss */
.lists-user-box {
  margin-top: 15px;
}

/* line 10, ../scss/contents/7.0-content/_7.8-users-page.scss */
.list-user-box {
  margin-bottom: 40px;
}

/* line 14, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-head {
  margin-bottom: 10px;
}

/* line 18, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail {
  width: 60%;
  float: left;
  margin-left: 3%;
  margin-top: 15px;
  clear: both;
  position: relative;
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 18, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .author-box-detail {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 18, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .author-box-detail {
    width: 100%;
    margin: 0;
  }
}
/* line 36, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail .author-box-title-position {
  width: 100%;
  float: left;
  position: relative;
  display: block;
  margin-bottom: 25px;
}
/* line 43, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail .author-box-title-position a span {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  font-size: 50px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  /* line 43, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .author-box-detail .author-box-title-position a span {
    font-size: 30px;
  }
}
/* line 54, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail .author-box-avatar {
  width: 30%;
  margin-right: 5%;
  float: left;
  position: relative;
  display: block;
}
/* line 61, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail .author-box-desc {
  width: 65%;
  float: left;
  position: relative;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  /* line 61, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .author-box-detail .author-box-desc {
    font-size: 14px;
    line-height: 16px;
  }
}
/* line 74, ../scss/contents/7.0-content/_7.8-users-page.scss */
.author-box-detail .author-box-desc .author-box-social a {
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  /* line 74, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .author-box-detail .author-box-desc .author-box-social a {
    font-size: 14px;
  }
}

/* line 86, ../scss/contents/7.0-content/_7.8-users-page.scss */
.main-wrap.author .author-title {
  border-bottom: 3px solid;
  padding-top: 9px;
  padding-bottom: 9px;
}
/* line 90, ../scss/contents/7.0-content/_7.8-users-page.scss */
.main-wrap.author .author-title span {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  /* line 90, ../scss/contents/7.0-content/_7.8-users-page.scss */
  .main-wrap.author .author-title span {
    font-size: 18px;
  }
}

/**
 * 7.9 Contact Page
 * -----------------------------------------------------------------------------
//  */
/**
* 7.10 Review
* -----------------------------------------------------------------------------
*/
/* line 5, ../scss/contents/7.0-content/_7.10-review.scss */
.rating-star,
.rating-star .rating-value {
  background-position: 0 -52px;
  background-image: url("/wp-content/themes/gazzanet/images/sprite.png?v=20201209103731");
  background-repeat: no-repeat;
  height: 16px;
}

/* line 12, ../scss/contents/7.0-content/_7.10-review.scss */
.rating-star {
  display: inline-block;
  position: relative;
  width: 94px;
  background-position: 0 -68px;
}

/* line 18, ../scss/contents/7.0-content/_7.10-review.scss */
.rating-star .rating-value {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 23, ../scss/contents/7.0-content/_7.10-review.scss */
.post-review.top {
  margin-bottom: 40px;
}

/* line 26, ../scss/contents/7.0-content/_7.10-review.scss */
.post-review.bottom {
  margin-top: 20px;
}

/* line 29, ../scss/contents/7.0-content/_7.10-review.scss */
.review-head .review-title {
  margin-bottom: 25px;
  margin-top: 0;
  text-transform: uppercase;
}

/* line 34, ../scss/contents/7.0-content/_7.10-review.scss */
.star .review-content {
  border-top-width: 2px;
  border-top-style: solid;
  padding-top: 10px;
}

/* line 39, ../scss/contents/7.0-content/_7.10-review.scss */
.review-content .review-criteria {
  margin-bottom: 10px;
  position: relative;
}

/* line 43, ../scss/contents/7.0-content/_7.10-review.scss */
.review-content .review-criteria.criteria-star {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  padding-bottom: 10px;
  overflow: hidden;
}

/* line 49, ../scss/contents/7.0-content/_7.10-review.scss */
.review-content .review-criteria.criteria-star:last-child {
  margin-bottom: 0;
}

/* line 52, ../scss/contents/7.0-content/_7.10-review.scss */
.review-criteria .criteria-title {
  display: block;
  font-size: 14px;
}

/* line 56, ../scss/contents/7.0-content/_7.10-review.scss */
.review-criteria .review-table-right {
  padding: 0 20px;
}

/* line 59, ../scss/contents/7.0-content/_7.10-review.scss */
.review-content .review-criteria.criteria-star .criteria-title {
  font-size: 15px;
}

/* line 62, ../scss/contents/7.0-content/_7.10-review.scss */
.review-criteria .rating-bar {
  display: block;
  height: 20px;
  background: #f8f8f8;
}

/* line 67, ../scss/contents/7.0-content/_7.10-review.scss */
.review-criteria .rating-bar .rating-value {
  height: 20px;
  display: block;
}

/* line 71, ../scss/contents/7.0-content/_7.10-review.scss */
.review-foot {
  margin-top: 20px;
  border-top-width: 2px;
  border-top-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  padding: 20px 0;
}

/* line 79, ../scss/contents/7.0-content/_7.10-review.scss */
.star .review-foot {
  margin-top: 0;
  border-top: none;
}

/* line 83, ../scss/contents/7.0-content/_7.10-review.scss */
.review-foot .summary-title {
  font-size: 18px;
  margin-bottom: 10px;
}

/* line 87, ../scss/contents/7.0-content/_7.10-review.scss */
.review-foot .review-summary {
  border-right-width: 2px;
  border-right-style: solid;
  padding-right: 20px;
}

/* line 92, ../scss/contents/7.0-content/_7.10-review.scss */
.review-foot .review-total-score {
  font-size: 55px;
  padding: 0 20px;
}

/* line 96, ../scss/contents/7.0-content/_7.10-review.scss */
.review-foot .total-score-star {
  display: block;
  margin-bottom: 10px;
}

/* line 100, ../scss/contents/7.0-content/_7.10-review.scss */
.review-table {
  display: table !important;
  width: 100%;
}

/* line 104, ../scss/contents/7.0-content/_7.10-review.scss */
.review-table-left {
  display: table-cell !important;
  width: 85%;
}

/* line 108, ../scss/contents/7.0-content/_7.10-review.scss */
.review-table-right {
  width: 15%;
  display: table-cell !important;
  text-align: center;
  vertical-align: middle;
}

/* line 1, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team {
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/Loghi-SerieA-SerieB-Europa.svg?v=20201209103731") no-repeat transparent left top/3573px 60px;
}
/* line 3, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.atalanta {
  background-position: 10px -2px;
}
/* line 6, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.bologna {
  background-position: -40px -2px;
}
/* line 9, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.cagliari {
  background-position: -94px -2px;
}
/* line 12, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.catania {
  background-position: -155px -2px;
}
/* line 15, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.chievo {
  background-position: -221px -2px;
}
/* line 18, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.fiorentina {
  background-position: -280px -2px;
}
/* line 21, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.genoa {
  background-position: -330px -2px;
}
/* line 24, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.inter {
  background-position: -384px -2px;
}
/* line 27, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.juventus {
  background-position: -436px -2px;
}
/* line 30, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.lazio {
  background-position: -501px -2px;
}
/* line 33, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.livorno {
  background-position: -578px -2px;
}
/* line 36, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.milan {
  background-position: -635px -2px;
}
/* line 39, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.napoli {
  background-position: -691px -2px;
}
/* line 42, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.palermo {
  background-position: -753px -2px;
}
/* line 45, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.parma {
  background-position: -807px -2px;
}
/* line 48, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.pescara {
  background-position: -862px -2px;
}
/* line 51, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.roma {
  background-position: -920px -2px;
}
/* line 54, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.sampdoria {
  background-position: -977px -2px;
}
/* line 57, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.sassuolo {
  background-position: -1035px -2px;
}
/* line 60, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.siena {
  background-position: -826px -2px;
}
/* line 63, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.torino {
  background-position: -1148px -2px;
}
/* line 66, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.udinese {
  background-position: -1208px -2px;
}
/* line 69, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.verona {
  background-position: -1270px -2px;
}
/* line 72, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.empoli {
  background-position: -1375px -2px;
}
/* line 75, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.cesena {
  background-position: -1324px -2px;
}
/* line 78, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.carpi {
  background-position: -1428px -2px;
}
/* line 81, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.frosinone {
  background-position: -1478px -2px;
}
/* line 84, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.avellino {
  background-position: -1538px -2px;
}
/* line 87, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.bari {
  background-position: -1606px -2px;
}
/* line 90, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.como {
  background-position: -1668px -2px;
}
/* line 93, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.crotone {
  background-position: -1723px -2px;
}
/* line 96, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.latina {
  background-position: -1796px -2px;
}
/* line 99, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.modena {
  background-position: -1871px -2px;
}
/* line 102, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.novara {
  background-position: -1938px -2px;
}
/* line 105, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.perugia {
  background-position: -2010px -2px;
}
/* line 108, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.pro-vercelli {
  background-position: -2080px -2px;
}
/* line 111, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.salernitana {
  background-position: -2153px -2px;
}
/* line 114, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.spezia {
  background-position: -2239px -2px;
}
/* line 117, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.teramo {
  background-position: -2314px -2px;
}
/* line 120, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.ternana {
  background-position: -2380px  -2px;
}
/* line 123, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.trapani {
  background-position: -2446px -2px;
}
/* line 126, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.vicenza {
  background-position: -2520px -2px;
}
/* line 129, ../scss/contents/7.0-content/_7.11-logos.scss */
.flag-team.virtus-lanciano {
  background-position: -2590px -2px;
}

/* line 134, ../scss/contents/7.0-content/_7.11-logos.scss */
.logo-seriea {
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/serie-a.png?v=20201209103731") no-repeat 0 0;
  width: 43px;
  height: 40px;
  display: block;
}

/* line 141, ../scss/contents/7.0-content/_7.11-logos.scss */
.logo-championsleague {
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/champions-league.png?v=20201209103731") no-repeat 0 0;
  width: 45px;
  height: 45px;
  display: block;
}

/* line 148, ../scss/contents/7.0-content/_7.11-logos.scss */
.logo-europaleague {
  background: url("/wp-content/themes/gazzanet/LIBS/css/assets/europa-league.png?v=20201209103731") no-repeat 0 0;
  width: 31px;
  height: 43px;
  display: block;
}

/* line 1, ../scss/contents/7.0-content/_7.12-opta.scss */
.opta-widget-box {
  margin: 10px 0;
}
/* line 3, ../scss/contents/7.0-content/_7.12-opta.scss */
.opta-widget-box h3 {
  font-weight: bold;
  border-top-width: 2px;
  border-top-style: solid;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 15px;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
}

/* line 15, ../scss/contents/7.0-content/_7.12-opta.scss */
body h3.fc-opta-widget-title {
  font-weight: bold;
  border-top-width: 2px;
  border-top-style: solid;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 15px;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
  color: #000;
}

/* line 27, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container {
  margin: 0;
}
/* line 29, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container h2 {
  border-radius: 0;
  font-size: 22px;
  height: auto;
  padding: 10px 0;
  font-family: "Roboto Slab", serif;
}
/* line 36, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container table {
  margin-bottom: 0;
  border-top: none;
  border: 1px solid #ddd;
}
/* line 41, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container tbody td {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 12px;
}
/* line 45, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container tbody td.position {
  color: #000;
}
/* line 48, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container tbody td .image-spacer {
  margin-right: 0;
}
/* line 52, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container thead th {
  border-bottom: none;
}
/* line 55, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus {
  border-radius: 0;
  border: none;
}
/* line 58, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus td.home-team-name .crest, body .opta-widget-container .fixtures-plus td.away-team-name .crest {
  right: 0;
}
/* line 59, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus tbody.grouping td {
  background: #333;
  border-top: none;
  color: #fff;
  border: 1px solid #333;
  font-size: 14px;
}
/* line 66, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus td.away-team-name .team-name, body .opta-widget-container .fixtures-plus td.home-team-name .team-name {
  padding-left: 33px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: "Roboto Slab", serif;
}
/* line 73, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus td.home-team-name .team-name {
  padding-right: 35px;
}
/* line 76, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus tr.scoreline td {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: "Roboto Slab", serif;
}
@media only screen and (max-width: 767px) {
  /* line 76, ../scss/contents/7.0-content/_7.12-opta.scss */
  body .opta-widget-container .fixtures-plus tr.scoreline td {
    font-size: 12px;
    right: 4px;
  }
}
/* line 88, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table {
  border: none;
}
/* line 90, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table tbody {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
/* line 94, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table thead {
  background: #333;
}
/* line 96, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table thead th {
  color: #fff;
  padding: 13px 10px 12px;
  border-bottom: none;
  border-right: 1px solid #333;
  font-size: 14px;
  border-top: none;
  font-family: "Roboto Slab", serif;
  white-space: nowrap;
}
/* line 108, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table td.team {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
}
/* line 116, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table td.position {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  /* line 116, ../scss/contents/7.0-content/_7.12-opta.scss */
  body .opta-widget-container.opta-standings table td.position {
    font-size: 13px;
  }
}
/* line 125, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings table td.st_played, body .opta-widget-container.opta-standings table td.st_points {
  font-size: 14px;
}
/* line 129, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-standings .standings-container {
  border: none;
  border-radius: 0;
}
/* line 137, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-squad td.jersey, body .opta-widget-container.opta-squad th.jersey {
  width: 4em;
}
/* line 141, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-squad td.name img, body .opta-widget-container.opta-squad th.name img {
  float: left;
}
/* line 145, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-squad td img.flag, body .opta-widget-container.opta-squad th img.flag {
  text-align: center;
  margin: 0 auto;
}
/* line 152, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking table.colchart.horizontal tbody tr td span.rating {
  text-shadow: unset;
}
/* line 155, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking .tabs-active div.opta-dropdown span {
  height: 27px;
}
/* line 159, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc div.team-ranking-red-cards {
  background-color: #E02F2F !important;
}
/* line 162, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc div.team-ranking-yellow-cards {
  background-color: #ffe865 !important;
}
/* line 166, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.disciplinary-card-stat {
  font-size: 18px;
}
/* line 169, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc.disciplinary-card-stat span {
  font-size: 18px;
}
/* line 175, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-playerranking table.colchart tbody tr td span.rating {
  text-shadow: unset;
}
/* line 183, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container.opta-playerprofile div.profile-container div.profile img.flag {
  display: none;
}
/* line 191, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container p:first-child::first-letter {
  vertical-align: baseline !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  font-style: inherit !important;
  font-size: 100% !important;
  border: 0 none !important;
  outline: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: unset !important;
}

/* line 211, ../scss/contents/7.0-content/_7.12-opta.scss */
.entry-content .opta-widget-container.opta-playerprofile div.profile-container div.profile dt.player-weight {
  padding-left: 1em;
  width: 51px;
}

/* line 224, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus tbody tr.scoreline td.match-time span {
  padding: 0 0 8px 24px;
  background: transparent url("/wp-content/themes/gazzanet/LIBS/css/assets/football-fixtures.png?v=20201209103731") no-repeat 4px -76px;
}
/* line 228, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion {
  top: -11px;
}
/* line 230, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed {
  font: normal normal normal 22px/1 FontAwesome;
  background: none;
  border: none;
}
/* line 234, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed:before {
  content: "\f107";
}
/* line 237, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed:hover {
  color: inherit;
}
/* line 241, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded {
  border: none;
  font: normal normal normal 22px/1 FontAwesome;
  background: none;
  border: none;
}
/* line 246, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded:before {
  content: "\f106";
}
/* line 249, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded:hover {
  background: none;
  color: inherit;
}
/* line 254, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-loading {
  top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 228, ../scss/contents/7.0-content/_7.12-opta.scss */
  body .opta-widget-container .fixtures-plus button.expansion {
    right: -8px;
  }
}

/* line 263, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget {
  border: none;
}
/* line 267, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget div.opta-widget-container h2 {
  font-size: 14px !important;
  padding: 5px 0;
}
/* line 277, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl {
  margin-left: 115px;
}
/* line 279, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl dt, .side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl dd {
  font-size: 10px !important;
}
/* line 282, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl .player-height {
  float: none;
}
/* line 285, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl .player-weight {
  padding-left: 1em !important;
  width: 48px !important;
}
/* line 290, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile .team-logo {
  width: 115px;
  height: 100%;
}
/* line 299, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element.widget-side-colum.opta-widget table.colchart.horizontal tbody tr td span.rating {
  font-size: 17px !important;
  top: 7px !important;
}

@media only screen and (max-width: 767px) {
  /* line 314, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
    width: 320px;
    float: none;
  }
}
/* line 326, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline h2 {
  display: none;
}
/* line 329, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline {
  border-radius: 0 !important;
}
@media only screen and (max-width: 767px) {
  /* line 333, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt:nth-child(n+5) {
    display: none;
  }
  /* line 336, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd:nth-child(n+5) {
    display: none;
  }
  /* line 340, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd {
    font-size: 9px;
    margin-right: 5px;
  }
  /* line 344, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt {
    font-size: 9px;
  }
  /* line 347, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt:after {
    margin-right: 2px;
  }
  /* line 350, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock {
    font-size: 22px;
    padding-right: 6px;
  }
}
/* line 355, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details {
  min-height: 80px !important;
}
@media only screen and (max-width: 767px) {
  /* line 358, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .score-line {
    margin-bottom: 15px;
  }
  /* line 361, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .hometeam-crest {
    left: 45px;
  }
  /* line 364, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .awayteam-crest {
    right: 45px;
  }
  /* line 367, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .ht-score {
    margin-bottom: 5px;
  }
}
/* line 373, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.team {
  font-size: 22px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  /* line 373, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.team {
    display: none;
  }
}
/* line 381, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.score {
  font-size: 23px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
/* line 387, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .ht-score {
  font-size: 14px;
  font-family: "Roboto Slab", serif;
}
/* line 392, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-home .player, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-away .player {
  font-size: 11px;
  font-family: "Roboto Slab", serif;
}
@media only screen and (max-width: 767px) {
  /* line 392, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-home .player, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-away .player {
    font-size: 10px;
  }
}
/* line 401, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container {
  margin: 7px auto 0;
}
/* line 403, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container dt.home-events, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container dt.away-events {
  font-family: "Lato", sans-serif;
}
/* line 408, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd {
  font-family: "Lato", sans-serif;
}
/* line 412, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock {
  background-image: none !important;
  border-radius: 35px 0 0;
}
/* line 415, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock .clock-period {
  background-image: none !important;
  border-radius: 35px 0 9px;
}
/* line 424, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller {
  border: none;
  height: 110px;
}
/* line 428, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller.previous {
  border-right: 1px solid #fff;
}
/* line 431, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller.next {
  border-left: 1px solid #fff;
}
/* line 439, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller-active.previous span {
  margin: 4px 0 0 0;
}
/* line 445, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer {
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 445, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer {
    width: 267px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 445, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer {
    width: 715px !important;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 445, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer {
    width: 924px !important;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 445, ../scss/contents/7.0-content/_7.12-opta.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer {
    width: 1084px !important;
  }
}
/* line 469, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus-strip .fixture .scoreLine span {
  color: #000;
  font-family: "Lato", sans-serif;
}
/* line 473, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus-strip .fixture .timings {
  font-family: "Lato", sans-serif;
}
/* line 479, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container a.linkcontainer-opta-widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
/* line 488, ../scss/contents/7.0-content/_7.12-opta.scss */
body section.opener-wrap .opta-widget-container a:hover {
  color: #fff !important;
}
@media only screen and (max-width: 767px) {
  /* line 495, ../scss/contents/7.0-content/_7.12-opta.scss */
  body .opta-widget-container .fixtures-plus td.away-team-name, body .opta-widget-container .fixtures-plus td.home-team-name {
    width: auto;
  }
}

/* line 502, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element .opta-widget-container.opta-teamprofile .profile dl {
  margin-left: 150px;
}

/* line 506, ../scss/contents/7.0-content/_7.12-opta.scss */
.side-element .opta-widget-container .profile, .side-element .opta-widget-container .stats {
  min-height: 150px;
}

/* line 509, ../scss/contents/7.0-content/_7.12-opta.scss */
body .opta-widget-container .fixtures-plus-sidescroll .fixture.hover-effect .scoreLine span a,
body .opta-widget-container .fixtures-plus-sidescroll .fixture.hover-effect .timings a,
body .opta-widget-container .fixtures-plus-strip .fixture.hover-effect .scoreLine span a,
body .opta-widget-container .fixtures-plus-strip .fixture.hover-effect .timings a {
  text-decoration: none;
  color: inherit !important;
}

/* line 2, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.opta-widget-box h3 {
  font-weight: bold;
  border-top-width: 2px;
  border-top-style: solid;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 15px;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
}

/* line 14, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body h3.fc-opta-widget-title {
  font-weight: bold;
  border-top-width: 2px;
  border-top-style: solid;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 15px;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
  color: #000;
}

/* line 26, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container {
  margin: 0;
}
/* line 28, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container h2 {
  border-radius: 0;
  font-size: 22px;
  height: auto;
  padding: 10px 0;
  font-family: "Roboto Slab", serif;
}
/* line 35, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container table {
  margin-bottom: 0;
  border-top: none;
  border: 1px solid #ddd;
}
/* line 40, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container tbody td {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 12px;
}
/* line 44, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container tbody td.position {
  color: #000;
}
/* line 47, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container tbody td .image-spacer {
  margin-right: 0;
}
/* line 51, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container thead th {
  border-bottom: none;
}
/* line 54, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus, body .opta-widget-container.opta-fixtures {
  border-radius: 0;
  border: none;
}
/* line 57, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus td.home-team-name .crest, body .opta-widget-container .fixtures-plus td.away-team-name .crest, body .opta-widget-container.opta-fixtures td.home-team-name .crest, body .opta-widget-container.opta-fixtures td.away-team-name .crest {
  right: 0;
}
/* line 58, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus tbody.grouping td, body .opta-widget-container .fixtures-plus tbody td.Opta-title h3, body .opta-widget-container.opta-fixtures tbody.grouping td, body .opta-widget-container.opta-fixtures tbody td.Opta-title h3 {
  background: #333;
  border-top: none;
  color: #fff;
  border: 1px solid #333;
  font-size: 14px;
}
/* line 65, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus td.away-team-name .team-name, body .opta-widget-container .fixtures-plus td.home-team-name .team-name, body .opta-widget-container.opta-fixtures td.away-team-name .team-name, body .opta-widget-container.opta-fixtures td.home-team-name .team-name {
  padding-left: 33px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: "Roboto Slab", serif;
}
/* line 72, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus td.home-team-name .team-name, body .opta-widget-container.opta-fixtures td.home-team-name .team-name {
  padding-right: 35px;
}
/* line 75, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus tr.scoreline td, body .opta-widget-container .fixtures-plus tr.Opta-Scoreline td, body .opta-widget-container.opta-fixtures tr.scoreline td, body .opta-widget-container.opta-fixtures tr.Opta-Scoreline td {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: "Roboto Slab", serif;
}
/* line 80, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus tr.scoreline td span, body .opta-widget-container .fixtures-plus tr.Opta-Scoreline td span, body .opta-widget-container.opta-fixtures tr.scoreline td span, body .opta-widget-container.opta-fixtures tr.Opta-Scoreline td span {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  font-family: "Roboto Slab", serif;
}
@media only screen and (max-width: 767px) {
  /* line 75, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body .opta-widget-container .fixtures-plus tr.scoreline td, body .opta-widget-container .fixtures-plus tr.Opta-Scoreline td, body .opta-widget-container.opta-fixtures tr.scoreline td, body .opta-widget-container.opta-fixtures tr.Opta-Scoreline td {
    font-size: 12px;
    right: 4px;
  }
}
/* line 93, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table {
  border: none;
}
/* line 95, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table tbody {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
/* line 99, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table tbody tr th {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
  font-weight: bold;
  text-align: center;
}
/* line 110, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table thead {
  background: #333;
}
/* line 112, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table thead th {
  color: #fff;
  border-bottom: none;
  border-right: 1px solid #333;
  background: #333;
  font-size: 14px;
  border-top: none;
  font-family: "Roboto Slab", serif;
  white-space: nowrap;
  text-align: center;
  padding: 13px 7px 12px;
}
/* line 125, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table thead th abbr {
  font-weight: bold;
  font-size: 14px;
}
/* line 131, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table td.team, body .opta-widget-container.opta-standings table td.Opta-Team {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
}
/* line 139, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table td {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
}
/* line 146, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table td.position {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  /* line 146, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body .opta-widget-container.opta-standings table td.position {
    font-size: 13px;
  }
}
/* line 155, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table td.st_played, body .opta-widget-container.opta-standings table td.st_points {
  font-size: 14px;
}
/* line 159, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings .standings-container {
  border: none;
  border-radius: 0;
}
/* line 167, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-squad td.jersey, body .opta-widget-container.opta-squad th.jersey {
  width: 4em;
}
/* line 171, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-squad td.name img, body .opta-widget-container.opta-squad th.name img {
  float: left;
}
/* line 175, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-squad td img.flag, body .opta-widget-container.opta-squad th img.flag {
  text-align: center;
  margin: 0 auto;
}
/* line 182, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking table.colchart.horizontal tbody tr td span.rating {
  text-shadow: unset;
}
/* line 185, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking .tabs-active div.opta-dropdown span {
  height: 27px;
}
/* line 189, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc div.team-ranking-red-cards {
  background-color: #E02F2F !important;
}
/* line 192, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc div.team-ranking-yellow-cards {
  background-color: #ffe865 !important;
}
/* line 196, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.disciplinary-card-stat {
  font-size: 18px;
}
/* line 199, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-teamranking table.colchart tbody td.rating-disc.disciplinary-card-stat span {
  font-size: 18px;
}
/* line 205, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-playerranking table.colchart tbody tr td span.rating {
  text-shadow: unset;
}
/* line 213, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-playerprofile div.profile-container div.profile img.flag {
  display: none;
}
/* line 221, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container p:first-child::first-letter {
  vertical-align: baseline !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  font-style: inherit !important;
  font-size: 100% !important;
  border: 0 none !important;
  outline: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: unset !important;
}

/* line 241, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.entry-content .opta-widget-container.opta-playerprofile div.profile-container div.profile dt.player-weight {
  padding-left: 1em;
  width: 51px;
}

/* line 254, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus tbody tr.scoreline td.match-time span, body .opta-widget-container.opta-fixtures tbody tr.scoreline td.match-time span {
  padding: 0 0 8px 24px;
  background: transparent url("/wp-content/themes/gazzanet/LIBS/css/assets/football-fixtures.png?v=20201209103731") no-repeat 4px -76px;
}
/* line 258, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion, body .opta-widget-container.opta-fixtures button.expansion {
  top: -11px;
}
/* line 260, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed, body .opta-widget-container.opta-fixtures button.expansion.details-collapsed {
  font: normal normal normal 22px/1 FontAwesome;
  background: none;
  border: none;
}
/* line 264, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed:before, body .opta-widget-container.opta-fixtures button.expansion.details-collapsed:before {
  content: "\f107";
}
/* line 267, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-collapsed:hover, body .opta-widget-container.opta-fixtures button.expansion.details-collapsed:hover {
  color: inherit;
}
/* line 271, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded, body .opta-widget-container.opta-fixtures button.expansion.details-expanded {
  border: none;
  font: normal normal normal 22px/1 FontAwesome;
  background: none;
  border: none;
}
/* line 276, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded:before, body .opta-widget-container.opta-fixtures button.expansion.details-expanded:before {
  content: "\f106";
}
/* line 279, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-expanded:hover, body .opta-widget-container.opta-fixtures button.expansion.details-expanded:hover {
  background: none;
  color: inherit;
}
/* line 284, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus button.expansion.details-loading, body .opta-widget-container.opta-fixtures button.expansion.details-loading {
  top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 258, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body .opta-widget-container .fixtures-plus button.expansion, body .opta-widget-container.opta-fixtures button.expansion {
    right: -8px;
  }
}

/* line 293, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget {
  border: none;
}
/* line 297, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget div.opta-widget-container h2 {
  font-size: 14px !important;
  padding: 5px 0;
}
/* line 307, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl {
  margin-left: 115px;
}
/* line 309, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl dt, .side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl dd {
  font-size: 10px !important;
}
/* line 312, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl .player-height {
  float: none;
}
/* line 315, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile dl .player-weight {
  padding-left: 1em !important;
  width: 48px !important;
}
/* line 320, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget .opta-playerprofile div.profile-container div.profile .team-logo {
  width: 115px;
  height: 100%;
}
/* line 329, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element.widget-side-colum.opta-widget table.colchart.horizontal tbody tr td span.rating {
  font-size: 17px !important;
  top: 7px !important;
}

@media only screen and (max-width: 767px) {
  /* line 344, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    box-ordinal-group: 1;
    width: 320px;
    float: none;
  }
}
/* line 355, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .OptaLiveHeader {
  position: relative;
}
/* line 357, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .OptaLiveHeader a.linkcontainer-opta-widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
/* line 366, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .OptaLiveHeader a:hover {
  color: #fff !important;
}
/* line 373, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline h2 {
  display: none;
}
/* line 376, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline {
  border-radius: 0 !important;
}
@media only screen and (max-width: 767px) {
  /* line 380, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt:nth-child(n+5) {
    display: none;
  }
  /* line 383, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd:nth-child(n+5) {
    display: none;
  }
  /* line 387, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd {
    font-size: 9px;
    margin-right: 5px;
  }
  /* line 391, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt {
    font-size: 9px;
  }
  /* line 394, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt:after {
    margin-right: 2px;
  }
  /* line 397, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock {
    font-size: 22px;
    padding-right: 6px;
  }
}
/* line 402, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details {
  min-height: 80px !important;
}
@media only screen and (max-width: 767px) {
  /* line 405, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .score-line {
    margin-bottom: 15px;
  }
  /* line 408, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .hometeam-crest {
    left: 45px;
  }
  /* line 411, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .awayteam-crest {
    right: 45px;
  }
  /* line 414, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .ht-score {
    margin-bottom: 5px;
  }
}
/* line 420, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.team {
  font-size: 22px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  /* line 420, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.team {
    display: none;
  }
}
/* line 428, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details div.score-line span.score {
  font-size: 23px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
/* line 434, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .ht-score {
  font-size: 14px;
  font-family: "Roboto Slab", serif;
}
/* line 439, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-home .player, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-away .player {
  font-size: 11px;
  font-family: "Roboto Slab", serif;
}
@media only screen and (max-width: 767px) {
  /* line 439, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-home .player, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-score-details .goal-scorers-away .player {
    font-size: 10px;
  }
}
/* line 448, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container {
  margin: 7px auto 0;
}
/* line 450, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container dt.home-events, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .timeline-container dt.away-events {
  font-family: "Lato", sans-serif;
}
/* line 455, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dt, body section.opener-wrap .opta-widget-container.opta-timeline .timeline .match-details dd {
  font-family: "Lato", sans-serif;
}
/* line 459, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock {
  background-image: none !important;
  border-radius: 35px 0 0;
}
/* line 462, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container.opta-timeline .timeline .clock .clock-period {
  background-image: none !important;
  border-radius: 35px 0 9px;
}
/* line 471, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller, body section.opener-wrap .opta-widget-container.opta-fixtures .scroller {
  border: none;
  height: 110px;
}
/* line 475, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller.previous, body section.opener-wrap .opta-widget-container.opta-fixtures .scroller.previous {
  border-right: 1px solid #fff;
}
/* line 478, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller.next, body section.opener-wrap .opta-widget-container.opta-fixtures .scroller.next {
  border-left: 1px solid #fff;
}
/* line 486, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus .scroller-active.previous span, body section.opener-wrap .opta-widget-container.opta-fixtures .scroller-active.previous span {
  margin: 4px 0 0 0;
}
/* line 492, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer, body section.opener-wrap .opta-widget-container.opta-fixtures div.fixtures-viewer {
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 492, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer, body section.opener-wrap .opta-widget-container.opta-fixtures div.fixtures-viewer {
    width: 267px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 492, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer, body section.opener-wrap .opta-widget-container.opta-fixtures div.fixtures-viewer {
    width: 715px !important;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1439px) {
  /* line 492, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer, body section.opener-wrap .opta-widget-container.opta-fixtures div.fixtures-viewer {
    width: 924px !important;
  }
}
@media only screen and (min-width: 1440px) {
  /* line 492, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body section.opener-wrap .opta-widget-container .fixtures-plus div.fixtures-viewer, body section.opener-wrap .opta-widget-container.opta-fixtures div.fixtures-viewer {
    width: 1084px !important;
  }
}
/* line 516, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus-strip .fixture .scoreLine span {
  color: #000;
  font-family: "Lato", sans-serif;
}
/* line 520, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container .fixtures-plus-strip .fixture .timings {
  font-family: "Lato", sans-serif;
}
/* line 526, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container a.linkcontainer-opta-widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
/* line 535, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body section.opener-wrap .opta-widget-container a:hover {
  color: #fff !important;
}
@media only screen and (max-width: 767px) {
  /* line 542, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
  body .opta-widget-container .fixtures-plus td.away-team-name, body .opta-widget-container .fixtures-plus td.home-team-name {
    width: auto;
  }
}

/* line 549, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element .opta-widget-container.opta-teamprofile .profile dl {
  margin-left: 150px;
}

/* line 553, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.side-element .opta-widget-container .profile, .side-element .opta-widget-container .stats {
  min-height: 150px;
}

/* line 556, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .fixtures-plus-sidescroll .fixture.hover-effect .scoreLine span a,
body .opta-widget-container .fixtures-plus-sidescroll .fixture.hover-effect .timings a,
body .opta-widget-container .fixtures-plus-strip .fixture.hover-effect .scoreLine span a,
body .opta-widget-container .fixtures-plus-strip .fixture.hover-effect .timings a {
  text-decoration: none;
  color: inherit !important;
}

/* line 564, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta .Opta-Table-Scroll td.Opta-Table-Scroll-Fixed-Column, .Opta .Opta-Table-Scroll th.Opta-Table-Scroll-Fixed-Column {
  position: static !important;
  z-index: 10;
  width: auto !important;
  padding: 0 0 0 0;
}

/* line 571, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta .Opta-Table-Scroll table {
  margin-left: 0 !important;
}

/* line 575, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta .Opta_F_S.Opta_F_S_N .Opta-Table-Scroll td.Opta-Team, .Opta .Opta_F_S.Opta_F_S_N .Opta-Table-Scroll th.Opta-Team {
  padding-right: 2px !important;
}

/* line 579, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table td {
  text-align: center;
}

/* line 583, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta .Opta_F_S.Opta_F_S_N .Opta-Table-Scroll td.Opta-Team, .Opta .Opta_F_S.Opta_F_S_N .Opta-Table-Scroll th.Opta-Team {
  text-align: left;
}

/* line 591, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta .Opta-Table-Scroll table {
  border-collapse: collapse !important;
  overflow: auto !important;
}

/* line 596, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.opta-standings table tbody tr th {
  border-bottom: 1px solid #ddd;
}

/* line 600, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.widget_type_standings .Opta td:first-child, .widget_type_standings .Opta th:first-child {
  padding-left: 5px !important;
  text-align: right !important;
}

/* line 605, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.opta-widget-container-v3 h3.fc-opta-widget-title {
  margin-bottom: -10px;
}

/* line 609, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.opta-widget-container-v3.widget_type_standings .Opta td:first-child, .opta-widget-container-v3.widget_type_standings .Opta th:first-child {
  max-width: 25px;
}

/* line 613, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.opta-widget-container-v3 .Opta .Opta-facts {
  border: 1px solid #ddd;
}

/* line 617, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.opta-widget-container-v3 .Opta .Opta-facts li {
  padding: 8px 8px 8px 22px;
  background: url(http://widget.cloud.opta.net/2.0/assets/images/backgrounds/bg-list-bullet.png) 8px 10px no-repeat;
  color: #4f5155;
}

/* line 623, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile {
  background-color: #fff;
}

/* line 627, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile .Opta-One-Profile tr:first-child td, body .Opta .Opta_W .Opta-Profile .Opta-One-Profile tr:first-child th {
  border-top: none;
  background-color: #fff;
}

/* line 632, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile .Opta-One-Profile tr th {
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  color: #404040;
}

/* line 638, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile .Opta-One-Profile tr td {
  font-weight: normal;
}

/* line 642, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile .Opta-Image {
  border-right: 1px solid #ddd;
}

/* line 646, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta_W .Opta-Profile td.Opta-Image {
  padding: 10px 5px 10px 10px !important;
}

/* line 650, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta-Profile td, body .Opta .Opta-Profile th {
  padding: 0px 5px !important;
}

/* line 655, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .Opta-Profile table {
  border: none;
}

/* line 660, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .Opta-Profile tbody {
  border: 1px solid #ddd;
}

/* line 665, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container.widget_type_temporeale .Opta-Team,
body .opta-widget-container.widget_type_temporeale .Opta-Versus abbr,
body .opta-widget-container.widget_type_temporeale .Opta-Score span {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
  font-weight: bold;
}

/* line 675, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .Opta-fixture .Opta-Scoreline .Opta-Time {
  padding: 5px 0 5px 24px;
  background-image: url("/wp-content/themes/gazzanet/LIBS/css/assets/football-fixtures.png?v=20201209103731");
  background-repeat: no-repeat;
  background-position: 4px -69px;
  width: 110px !important;
  max-width: 110px !important;
  color: #000 !important;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
  font-weight: bold;
}
/* line 687, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .Opta-fixture .Opta-Scoreline .Opta-Time abbr {
  color: #000;
  font-size: 14px;
  font-family: "Roboto Slab", serif;
  line-height: 1.6em;
  font-weight: bold;
}

/* line 696, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .opta-widget-container .Opta .Opta-fixtures-list .Opta-Even td {
  background-color: #fff;
}

/* line 700, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta-MatchHeader.Opta-MatchHeader-Crested td.Opta-Team {
  font-size: 22px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #000;
}

/* line 707, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta-MatchHeader .Opta-Score .Opta-Team-Score {
  background-color: transparent;
  color: #000;
  font-size: 22px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}

/* line 715, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta .Opta-MatchHeader .Opta-Score.Opta-Away .Opta-Team-Score {
  background-color: transparent;
  color: #000;
  font-size: 22px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}

/* line 723, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta_F_TL.Opta_F_TL_N .Opta-Events {
  height: auto;
}

/* line 727, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body div.Opta-Matchdata dt {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  text-decoration: underline;
}

/* line 734, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
.Opta_F_F.Opta_F_F_S .Opta-Scroll .Opta-Window .Opta-Room .Opta-fixture .Opta-Team .Opta-TeamName {
  color: #000;
  font-size: 12px;
}

/* line 739, ../scss/contents/7.0-content/_7.12-opta-v3.scss */
body .Opta_F_F.Opta_F_F_S .Opta-Scroll .Opta-Window .Opta-Room .Opta-fixture .Opta-Team {
  background-color: #fff;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* line 1, ../scss/contents/7.0-content/_7.19-sitemap-page.scss */
.sitemap-html-list {
  margin: 0;
}
/* line 3, ../scss/contents/7.0-content/_7.19-sitemap-page.scss */
.sitemap-html-list li {
  list-style-type: disc;
  margin: 5px 20px;
}
/* line 6, ../scss/contents/7.0-content/_7.19-sitemap-page.scss */
.sitemap-html-list li.heading_list {
  list-style-type: none;
  margin: 20px 0;
}
/* line 10, ../scss/contents/7.0-content/_7.19-sitemap-page.scss */
.sitemap-html-list li h4 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 14, ../scss/contents/7.0-content/_7.19-sitemap-page.scss */
.sitemap-html-list li h4 a {
  color: #960f2e;
}

/* line 1, ../scss/contents/7.0-content/_7.14-network-page.scss */
.category-wrap .category-head.network-sites-title .category-title h2 {
  font-size: 23px;
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  /* line 1, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .category-wrap .category-head.network-sites-title .category-title h2 {
    margin-bottom: 20px;
  }
}

/* line 11, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-page .ns-description {
  margin-bottom: 40px;
}

/* line 15, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container {
  margin: 40px 0;
}
/* line 17, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul {
  overflow: hidden;
  margin: 0;
}
/* line 20, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item {
  width: 50%;
  float: left;
  margin-bottom: 0;
  padding-bottom: 30px;
  padding-right: 5px;
}
@media only screen and (max-width: 767px) {
  /* line 20, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item {
    width: 100%;
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 20, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item {
    padding-right: 20px;
  }
}
/* line 33, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item:nth-child(odd) {
  border-right: 1px solid #dfdfdf;
}
@media only screen and (max-width: 767px) {
  /* line 33, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item:nth-child(odd) {
    border-right: none;
  }
}
/* line 39, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item:nth-child(even) {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  /* line 39, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item:nth-child(even) {
    padding-left: 0;
  }
}
/* line 45, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box {
  box-shadow: 3px 3px 0 1px #d1d1d1;
  padding: 0 20px;
  width: 80%;
  height: 130px;
  display: table;
  table-layout: fixed;
  text-align: center;
  background: #000;
  border: 1px solid #fff;
}
/* line 55, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box a {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
}
/* line 61, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box img {
  margin: 0 auto;
  max-height: 128px;
  width: 100%;
  height: auto;
}
/* line 67, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box .networklogoimg {
  padding: 10px;
  min-height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
/* line 74, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-violanews {
  background: #45286b;
}
/* line 77, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-forzaroma {
  background: #303030;
  padding: 0;
}
/* line 80, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-forzaroma img {
  width: auto;
}
/* line 84, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-cittaceleste {
  background: #015c95;
}
/* line 87, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-toronews {
  background: #2f0506;
}
/* line 90, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-juvenews {
  background: #000;
}
/* line 93, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-ilmilanista {
  background: #000;
}
/* line 96, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-passioneinter {
  background: #2a6ebb;
}
/* line 99, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-pianetamilan {
  background: #fff;
}
/* line 102, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-hellas1903 {
  background: #23365e;
}
/* line 105, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-chiamarsibomber {
  background: #fff;
}
/* line 108, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-tenniscircus {
  background: #fff;
}
/* line 111, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-tuttomodenaweb {
  background: #eaeceb;
}
/* line 113, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-tuttomodenaweb img {
  max-height: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 45, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item .ns-image-box {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 45, ../scss/contents/7.0-content/_7.14-network-page.scss */
  .network-sites-container ul li.ns-item .ns-image-box {
    width: 100%;
  }
}
/* line 121, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-mediagol {
  background: #cc3333;
}
/* line 124, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-tuttobolognaweb {
  background: #eaeceb;
}
/* line 126, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-tuttobolognaweb img {
  max-height: 100px;
}
/* line 127, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-nbareligion {
  background: #ffffff;
}
/* line 129, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-image-box.ns-site-nbareligion img {
  max-height: 85px;
}
/* line 132, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-site-title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto Slab", serif;
  margin-top: 20px;
}
/* line 138, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-site-subtitle {
  margin-bottom: 10px;
}
/* line 141, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials {
  overflow: hidden;
  margin: 0;
}
/* line 144, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li {
  float: left;
  margin-right: 5px;
  width: 35px;
  height: 60px;
  text-align: center;
}
/* line 150, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a {
  display: block;
  border-radius: 2px;
  padding: 6px 0;
}
/* line 154, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a.fb {
  background: #3b5b98;
}
/* line 157, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a.tw {
  background: #52aef1;
}
/* line 160, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a.ig {
  background: #316597;
}
/* line 163, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a.gp {
  background: #dc3a2b;
}
/* line 166, ../scss/contents/7.0-content/_7.14-network-page.scss */
.network-sites-container ul li.ns-item .ns-socials li a i {
  color: #fff;
}

/* line 8, ../scss/style.scss */
.privacy-page .category-wrap .category-head .category-title h2 {
  max-width: inherit;
}

/* line 12, ../scss/style.scss */
.privacy-page .category-wrap {
  overflow: hidden;
  padding: 20px;
}

/* line 17, ../scss/style.scss */
.privacy-page h3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  /* line 22, ../scss/style.scss */
  .privacy-page .hide-for-small {
    display: none !important;
  }
}
/* line 27, ../scss/style.scss */
.privacy-page .show-for-small {
  display: none;
}
@media only screen and (max-width: 767px) {
  /* line 27, ../scss/style.scss */
  .privacy-page .show-for-small {
    display: block !important;
  }
}

/* line 35, ../scss/style.scss */
.category .category-wrap .entry-excerpt p {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  line-height: 28px;
  color: #737373;
  background-color: white;
}

/* line 172, ../scss/static-pages.scss */
/* line 44, ../scss/style.scss */
#privacy-tabs .tabs-container ul li {
  color: black;
  font-size: 14px;
  list-style-type: disc;
  list-style-position: inside;
}

/* line 180, ../scss/static-pages.scss */
/* line 52, ../scss/style.scss */
#privacy-tabs .tabs-container > div {
  display: none;
}

/* line 182, ../scss/static-pages.scss */
/* line 57, ../scss/style.scss */
#privacy-tabs .tabs-container > div.active {
  display: block;
}

/* line 189, ../scss/static-pages.scss */
/* line 62, ../scss/style.scss */
#privacy-tabs .dropdown-menu-container .dropdown-menu li a {
  color: #000;
}

/* line 192, ../scss/static-pages.scss */
/* line 67, ../scss/style.scss */
#privacy-tabs .dropdown-menu-container .dropdown-menu ul.title {
  margin-bottom: 9px;
  margin-left: 0;
}

/* line 194, ../scss/static-pages.scss */
/* line 73, ../scss/style.scss */
#privacy-tabs .dropdown-menu-container .dropdown-menu ul.title a {
  width: 79%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 20px 0 10px;
  line-height: 50px;
  color: #fff;
}

/* line 203, ../scss/static-pages.scss */
/* line 84, ../scss/style.scss */
#privacy-tabs .dropdown-menu-container .dropdown-menu ul.title .dropdown-icon {
  padding: 0 5px 0 12px;
  line-height: 53px;
  width: 20%;
  padding: 0 5px 0 12px;
}

/* line 211, ../scss/static-pages.scss */
/* line 92, ../scss/style.scss */
#privacy-tabs .tabs-nav {
  overflow: hidden;
  margin-bottom: 1.25em;
  border-bottom: 1px solid #000;
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 211, ../scss/static-pages.scss */
  /* line 100, ../scss/style.scss */
  #privacy-tabs .tabs-nav {
    margin-top: 1.25em;
  }
}
/* line 218, ../scss/static-pages.scss */
/* line 106, ../scss/style.scss */
#privacy-tabs .tabs-nav div {
  float: left;
}

/* line 220, ../scss/static-pages.scss */
/* line 111, ../scss/style.scss */
#privacy-tabs .tabs-nav div a {
  display: block;
  padding: 0 20px 10px;
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
  /* line 220, ../scss/static-pages.scss */
  /* line 118, ../scss/style.scss */
  #privacy-tabs .tabs-nav div a {
    padding: 0 10px 10px;
  }
}
/* line 226, ../scss/static-pages.scss */
/* line 124, ../scss/style.scss */
#privacy-tabs .tabs-nav div a.active {
  border-bottom: 3px solid #000;
}

@media only screen and (max-width: 767px) {
  /* line 128, ../scss/style.scss */
  .dropdown-menu-container {
    border-bottom: 1px solid;
    margin-bottom: 15px;
    padding-bottom: 3px;
  }
}

/* line 136, ../scss/style.scss */
.dropdown-menu {
  min-height: 60px;
}
/* line 139, ../scss/style.scss */
.dropdown-menu ul {
  list-style-type: none;
}
/* line 142, ../scss/style.scss */
.dropdown-menu .title {
  text-transform: uppercase;
  margin-bottom: 1px;
}
/* line 147, ../scss/style.scss */
.dropdown-menu .title li {
  cursor: pointer;
}
/* line 149, ../scss/style.scss */
.dropdown-menu .title li a {
  padding: 15px 20px;
  font: 16px;
  display: inline-block;
}
/* line 156, ../scss/style.scss */
.dropdown-menu .title li.active .dropdown-icon:after, .dropdown-menu .title li.active .dropdown-icon:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
/* line 166, ../scss/style.scss */
.dropdown-menu .title li.active .dropdown-icon:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #f1a6ad;
  border-width: 7px;
  margin-left: -7px;
}
/* line 172, ../scss/style.scss */
.dropdown-menu .title li.active .dropdown-icon:before {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #f1a6ad;
  border-width: 8px;
  margin-left: -8px;
}
/* line 180, ../scss/style.scss */
.dropdown-menu .title li .dropdown-icon {
  background: #ff9c31;
  display: inline-block;
  color: #fff;
  float: none;
  padding: 13px 18px;
  margin: 0;
  float: right;
  font-size: 30px;
  position: relative;
  z-index: 10;
}
/* line 195, ../scss/style.scss */
.dropdown-menu ul.menu-item {
  background-color: #fff;
  z-index: 9;
  margin-left: 0;
  position: relative;
  display: none;
}
/* line 201, ../scss/style.scss */
.dropdown-menu ul.menu-item li {
  background: #ff9c31;
  margin-bottom: 1px;
  height: auto;
}
/* line 205, ../scss/style.scss */
.dropdown-menu ul.menu-item li a {
  padding: 13px;
  display: block;
  text-transform: uppercase;
  font: 16px;
}

/* line 219, ../scss/style.scss */
#searchPage .category-wrap {
  padding-left: 20px;
}
/* line 225, ../scss/style.scss */
#searchPage .category-wrap .category-head #new-search h2 {
  float: left;
  width: auto !important;
  margin-top: 10px;
}
/* line 231, ../scss/style.scss */
#searchPage .category-wrap .category-head #new-search form#solrformnew {
  float: left !important;
  width: 85% !important;
  position: relative;
}
/* line 236, ../scss/style.scss */
#searchPage .category-wrap .category-head #new-search form#solrformnew input#searchform {
  font-weight: bold;
  font-size: 1.2em;
  float: left;
  border: none;
  border-bottom: solid 1px #e6e6e6;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-left: 10px;
  padding: 9px 0 5px 0px;
  width: 98%;
}
/* line 248, ../scss/style.scss */
#searchPage .category-wrap .category-head #new-search form#solrformnew i {
  position: absolute;
  right: 0px;
  font-size: 25px;
  color: #A4A4A4;
  line-height: 35px;
}
/* line 258, ../scss/style.scss */
#searchPage .category-wrap .category-head .category-title {
  margin-bottom: 30px;
}
/* line 261, ../scss/style.scss */
#searchPage .category-wrap .category-head .category-title h2 {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  margin: 0;
  width: 100%;
  text-align: left;
  color: black;
  text-transform: none;
  font-weight: normal;
  padding-right: 10px;
}
/* line 273, ../scss/style.scss */
#searchPage .category-wrap .category-head .grid-8 {
  float: left;
  margin-left: 0;
  padding: 0;
  width: 66.6667%;
}
@media only screen and (max-width: 979px) and (min-width: 768px) {
  /* line 281, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search {
    width: 100%;
  }
  /* line 284, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search form#solrformnew {
    width: 100% !important;
  }
  /* line 286, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search form#solrformnew input#searchform {
    clear: both;
    width: 100% !important;
  }
  /* line 296, ../scss/style.scss */
  #searchPage .category-wrap .category-head .category-title h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 304, ../scss/style.scss */
  #searchPage .category-wrap .category-head .category-title {
    margin-bottom: 30px;
  }
  /* line 307, ../scss/style.scss */
  #searchPage .category-wrap .category-head .category-title h2 {
    font-size: 16px;
  }
  /* line 312, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search {
    width: 100%;
  }
  /* line 315, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search form#solrformnew {
    width: 65% !important;
    top: -3px;
  }
  /* line 318, ../scss/style.scss */
  #searchPage .category-wrap .category-head #new-search form#solrformnew input#searchform {
    clear: none;
    width: 96% !important;
  }
  /* line 326, ../scss/style.scss */
  #searchPage .category-wrap .category-head .main-grid {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  /* line 338, ../scss/style.scss */
  #searchPage .main-grid {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
  }
  /* line 345, ../scss/style.scss */
  #searchPage .sidebar {
    float: left;
    margin: 0px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    width: 100%;
  }
  /* line 352, ../scss/style.scss */
  #searchPage .sidebar .widget_rubriche {
    right: 10px;
    position: relative;
  }
}
