/*
=====================================================

0. HTML SETUP
    . Heads
    . Text
    . Links
    . Tables
    . Misc
    . Button
    . Helpers

1. STRUTTURA
    . Wrapper
    . Header / Footer
    . Main

2. HEADER
    . Panel
    . Header
    . Logo
    . Menu

3. SIDEBAR
4. FOOTER

5. GENERIC ELEMENTS
    . Label
    . Title
    . Explore
    . Aside
    . Detail Wrap
    
6. GENERIC LAYOUT BLOCKS
    . Big Slider
    . Hot Topic
    . Treading Block
    . Pagetitle Block

7. CUSTOM PAGES

8. EXTERNAL LIBS ADAPT

=====================================================
*/


/*
=====================================================
0. HTML SETUP
=====================================================
*/


body {
    position:relative;
    padding: 0;
    margin: 0;
    
    background-color: #fff;
    background-image: url(../img/bg/body.jpg);
    background-repeat: repeat-x;
    background-position: top center;
    
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    line-height: 28px;
    color: #666;
    
    cursor: default;
    overflow-x: hidden; 
    min-width: 300px;
}

body.expo-noscript {}
body.expo-loading {
    overflow: hidden;
}
body.expo-resizing {}

/* wrapper animation */
body #wrapper{
    opacity: 1;
    transition: opacity .6s ease;
}
body.expo-noscript #wrapper{
    opacity: 0;
}
body.expo-loading #wrapper{
    opacity: 0;
}
body.expo-resizing #wrapper{
}

/* body overlay */
body:after{
}
body.expo-noscript:after,
body.expo-loading:after,
body.expo-resizing:after{
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgba(255,255,255,0.2);
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .25s ease;
    z-index: 300;
}

body.expo-noscript:after{
    background-image: url('../img/skin/no-image.jpg');
}
body.expo-loading:after{
    background-image: url('../img/skin/dom-loading.gif');
    /*background-color: #FFF;*/
}
body.expo-resizing:after{
    background-image: url('../img/skin/no-image.jpg');
}



/* HEADS
----------------------------------------------------*/
h1, 
h2, 
h3,
h4, 
h5, 
h6 {
    font-family: 'Noto Serif', 'Times New Romans', serif;
    color: #000;
    line-height: 1.2
}

/* LINKS
----------------------------------------------------*/
a {
    color: #000;
    text-decoration: none;
    cursor: pointer !important;
    transition: color .25s ease;
}
a:hover {
    color: #000;
    text-decoration: none;
}
.panel a {
    color: #FFF;
}
.panel a:hover {
    color: #FFF200;
}
a.boldlink,
a.boldlink:hover{
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
a.boldlink:hover{
    text-decoration: underline;
}







/* TABLES
----------------------------------------------------*/
table {
    background: none;
    margin:0;
}
table tbody tr td, 
table tfoot tr td, 
table tfoot tr th, 
table thead tr th, 
table tr td{
    background: none;
    margin:0;
    padding: 0 4px 10px 0;
    border: none;
}
tr,
tr.even, 
table tr:nth-of-type(2n),
table tr{
    background: none;
}


/* MISC
----------------------------------------------------*/
strong {
    color: #000;
}

hr {
    border: none;  
    margin: 40px 0 40px;
    background-image: linear-gradient(to right, #dbdbdb 40%, rgba(255, 255, 255, 0) 20%);
    background-position: top;
    background-size: 4px 1px;
    background-repeat: repeat-x;
    content: "";
    display: block;
    height: 1px;
}


/* BUTTON
----------------------------------------------------*/
.button {
    display: inline-block;
    position: relative;
    margin: 0 0 15px;
    padding: 10px 25px;
    
    background-image: none;
    border: 1px solid transparent;
    
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
    
    font-family: 'Noto Serif', 'Times New Romans', serif;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    
    transition: all .25s ease;
    
    cursor: pointer;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button i{
    line-height: 20px;
    vertical-align: middle;
}
.button:focus, 
.button:active:focus, 
.button.active:focus {
  outline: none;
}

.button:hover, 
.button:focus {
  color: #333333;
  text-decoration: none;
}

.button:active, 
.button.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.125);
}

.button.disabled, 
.button[disabled], 
fieldset[disabled] .button {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* default */
.button {
  background: #606060;
  color: #fff;
  border: none;
}
.button:hover, 
.button:focus, 
.button:active, 
.button.active {
  background: #787878;
  color: #fff;
  border: none;
}

.button.disabled, 
.button.disabled:hover, 
.button.disabled:focus, 
.button.disabled:active, 
.button.disabled.active, 
.button[disabled], 
.button[disabled]:hover, 
.button[disabled]:focus, 
.button[disabled]:active, 
.button[disabled].active, 
fieldset[disabled] .button, 
fieldset[disabled] .button:hover, 
fieldset[disabled] .button:focus, 
fieldset[disabled] .button:active, 
fieldset[disabled] .button.active {
  background-color: #95a5a6;
}

/* white */
.button.white {
  background-color: #f5f6f8;
  border: 1px solid #e8e9ed;
  color: #4f4f4f;
}
.button.white:hover, 
.button.white:focus,
.button.white:active, 
.button.white.active{
  background-color: #fcfcfc;
  border: 1px solid #e8e9ed;
  color: #4f4f4f;
}
.button.white:active, 
.button.white.active {
  background-image: none;
}

.white.disabled, .white.disabled:hover, .white.disabled:focus, .white.disabled:active, .white.disabled.active, .white[disabled], .white[disabled]:hover, .white[disabled]:focus, .white[disabled]:active, .white[disabled].active, fieldset[disabled] .white, fieldset[disabled] .white:hover, fieldset[disabled] .white:focus, fieldset[disabled] .white:active, fieldset[disabled] .white.active {
  background-color: white;
  border-color: #cccccc;
}

/* yellow */
.button.yellow {
  background-color: #Fff200;
  color: #4f4f4f;
  border: none;
}
.button.yellow:hover, 
.button.yellow:focus,
.button.yellow:active, 
.button.yellow.active {
  background-color: #ffdc53;
  color: #4f4f4f;
  border: none;
}
.button.yellow:active, 
.button.yellow.active {
  background-image: none;
}

.yellow.disabled, .yellow.disabled:hover, .yellow.disabled:focus, .yellow.disabled:active, .yellow.disabled.active, .yellow[disabled], .yellow[disabled]:hover, .yellow[disabled]:focus, .yellow[disabled]:active, .yellow[disabled].active, fieldset[disabled] .yellow, fieldset[disabled] .yellow:hover, fieldset[disabled] .yellow:focus, fieldset[disabled] .yellow:active, fieldset[disabled] .yellow.active {
  background-color: #f1c40f;
}

/* link */
.button-link {
  color: #95a5a6;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}

.button-link, 
.button-link:active, 
.button-link[disabled], 
fieldset[disabled] .button-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.button-link, 
.button-link:hover, 
.button-link:focus, 
.button-link:active {
  border-color: transparent;
}
.button-link:hover, 
.button-link:focus {
  color: #6d8082;
  text-decoration: underline;
  background-color: transparent;
}
.button-link[disabled]:hover, .button-link[disabled]:focus, fieldset[disabled] .button-link:hover, fieldset[disabled] .button-link:focus {
  color: #999999;
  text-decoration: none;
}

/* large */
.button.large {
  padding: 13px 32px;
  font-size: 18px;
  line-height: 26px;
}
.button.large i{
    line-height: 26px;
}

/* small */
.button.small {
    padding: 12px 20px;
    font-size: 14px;
}

/* tiny */
.button.tiny {
    padding: 8px 15px;
    font-size: 13px;
    line-height: 14px;
}
.button.tiny i{
    line-height: 14px;
}

/* block */
.button-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}


/* HELPERS
----------------------------------------------------*/
.img-left {margin:1px 33px 11px 0;}
.img-right {margin:1px 0 11px 33px;}
.img-center {margin:5px auto 11px;}

.mb15{margin-bottom:15px !important}
.mb30{margin-bottom:30px !important}
.mb60{margin-bottom:60px !important}
.mt15{margin-top:15px !important}
.mt30{margin-top:30px !important}
.mt60{margin-top:60px !important}
.pb15{padding-bottom:15px !important}
.pb30{padding-bottom:30px !important}
.pb60{padding-bottom:60px !important}
.pt15{padding-top:15px !important}
.pt30{padding-top:30px !important}
.pt60{padding-top:60px !important}

.sep{
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 4px solid #f0f0f0;
}


.video-hover{
    display: block;
    position: relative;
    z-index: 100;
}
.video-hover:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
    background-image: url('../img/skin/btn-video-play.png');
    background-position: center center;
    background-repeat: no-repeat;
    
    z-index: 500;
    opacity: 0.8;
    
    transition: background .6s ease;
}
a:hover .video-hover:after,
.video-hover:hover:after{
    background-color: rgba(0,0,0,0.6);
    opacity:1;
}
.video-hover.video-hover-small:after{
    background-image: url('../img/skin/btn-video-play-small.png');
}
a:hover .video-hover.video-hover-small:after,
.video-hover.video-hover-small:hover:after{
}

/*
=====================================================
1. STRUTTURA
=====================================================
*/


/* WRAPPER
----------------------------------------------------*/
#wrapper {
    display: block;
    position: relative;
    margin: auto;
    z-index: 1;
    padding: 122px 0 0;
}
.row .row {
    margin: 0 -15px;
}
.columns {
    padding: 0 15px;
}

/* MAIN
----------------------------------------------------*/
#main{
    display: block;
    position: relative;
    margin: 0 auto 60px;
    z-index: 30;
    overflow: hidden;
}
header .container,
#main{
    max-width: 1220px;
}


/*
=====================================================
2. HEADER
=====================================================
*/


header {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    
    margin: 0 auto;
    padding: 33px 0;
    z-index: 200;

    background-color: #FFF;
    transition: box-shadow .3s ease, padding .3s ease;
}
header .container {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;  
    margin: auto;
    padding: 0 15px;
}
header .side {
    flex: 0 0 33%;
}
header button {
    background: none;
    border: none;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}
header button .burger {
    display: inline-block;
    width: 29px;
    margin-right: 10px;
}
header button .burger div {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000;
}
header button span {
    display: inline-block;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    vertical-align: top;
}
header button .burger div + div {
    margin-top: 5px;
}
header .brand {
    flex: 1 1 auto;
}
header .brand img {
    display: block;
    max-width: 100%;
    margin: auto;
    margin-bottom: -10px;
    transition: height .3s ease;
}
header .social {
    text-align: right;
}
header .social a {
    display: inline-block;
    padding: 12px;
}


header.bee-scrolled{
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
header.bee-scrolled .brand img {
    max-height: 40px;
}


/* Offcanvas
------------------------------------------------------------ */

.bee-offcanvas .bee-offcanvas-bar{
    width: 50%;
}

/* Scroll Bar */
.bee-offcanvas .bee-offcanvas-bar::-webkit-scrollbar {width: 5px;}
.bee-offcanvas .bee-offcanvas-bar::-webkit-scrollbar-track {background: #f1f1f1;}
.bee-offcanvas .bee-offcanvas-bar::-webkit-scrollbar-thumb {background: #888;}

/* Close Button */
.bee-offcanvas .bee-offcanvas-bar .section .offcanvas-close,
.extra-data-window .offcanvas-close{
    display: inline-block;
    position: relative;
    width: 38px;
    height: 38px;
    padding: 0;
    border:none;
    background: none;
}
.bee-offcanvas .bee-offcanvas-bar .section .offcanvas-close:before,
.bee-offcanvas .bee-offcanvas-bar .section .offcanvas-close:after,
.extra-data-window .offcanvas-close:before,
.extra-data-window .offcanvas-close:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -7px;
    width: 53px;
    height: 1px;
    background-color: #000;
    opacity: 0;
    transform: rotate(0);
    transition: opacity .3s ease, transform .3s ease;
}
.extra-data-window.alt .offcanvas-close:before,
.extra-data-window.alt .offcanvas-close:after{
    background-color: #FFF;
}
.bee-offcanvas .bee-offcanvas-bar.bee-offcanvas-open .section .offcanvas-close:before,
.extra-data-window.open .offcanvas-close:before{
    opacity: 1;
    transform: rotate(45deg);
}
.bee-offcanvas .bee-offcanvas-bar.bee-offcanvas-open .section .offcanvas-close:after,
.extra-data-window.open .offcanvas-close:after{
    opacity: 1;
    transform: rotate(-45deg);
}

/* Common */
.bee-offcanvas .bee-offcanvas-bar .section + .section {
    margin-top: 40px;
}
.bee-offcanvas .bee-offcanvas-bar .bee-offcanvas-content {
    padding: 60px;
}


/* Offcanvas: Main
------------------------------------------------------------ */

.bee-offcanvas .bee-offcanvas-bar.menu-main {
    text-align: right;
}

/* Main Nav */
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a{
    display: block;
    position: relative;
    color: #000;
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    transition: padding .3s ease;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main > li + li {
    margin-top: 15px;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
    background-color: #000;
    transition: height .6s ease;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a.active,
html.no-touch .bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a:hover {
    padding-right: 15px;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a.active:after,
html.no-touch .bee-offcanvas .bee-offcanvas-bar.menu-main .section.main a:hover:after  {
    height: 100%;
}

/* Main Nav > Sub */
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main ul.children a{
    color: #00AEEF;
    font-size: 36px;
    line-height: 36px;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main ul.children a:after {
    background-color: #00AEEF;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main ul.children li {
    margin-top: 8px;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.main ul.children li:first-child {
    margin-top: 20px;
}

/* Social Nav */
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.social a {
    padding: 10px;
}

/* Second Nav */
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.second a{
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.bee-offcanvas .bee-offcanvas-bar.menu-main .section.second img {
    margin-left: 5px;
}
html.no-touch .bee-offcanvas .bee-offcanvas-bar.menu-main .section.second a:hover {
    color: #00AEEF;
}

/*
=====================================================
3. SIDEBAR
=====================================================
*/

aside {
    color: #a9a8a8;
    margin-bottom: 30px;
    clear: both;
}

aside.separed {
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

aside.separed-top {
    padding: 30px 0 0;
    border-top: 1px solid #f0f0f0;
}

aside h3 {
    margin-bottom: 15px;
}
aside ul.list-type li,
aside ul.list-type li a{
    color: #666;
    line-height: 30px;
}

aside ul.list-type li a:hover {
    color:#8c8c8c;
    text-decoration:none;
}
aside ul.list-type li a.current {
    color:#000;
    font-weight: bold;
}
aside ul.list-type38 li:before {
    color: #999;
}
aside ul.list-type li ul{
    margin: 0 0 30px 30px;
}
aside .aside-box {
    display :inline-block;
    position: relative;
    padding: 0;
    margin: 0;
    border: 1px solid #DDD;
    
    overflow: hidden;
}
aside .box-trasporto .box-content{
    display: block;
    position: absolute;
    
    bottom: 0;
    left:0;
    
    width: 100%;
    height: 50px;
    
    padding: 6px 50px 6px 25px;
}
aside .box-trasporto .box-content .box-text{
    display: block;
    position: relative;
    
    font-size: 13px;
    line-height: 18px;
    text-align: left;
}
aside .box-trasporto .box-content .box-text span{
    display: block;
    position: relative;
    
    margin: 0;
    padding: 0;
    
    color: #FFF;
    transition: padding .6s ease;
}
aside .box-trasporto .box-content .box-text span.yellow{
    color: #FFF200;
}
aside .box-trasporto:hover .box-content .box-text span {
   padding-left: 10px;
}
aside .box-trasporto:hover .box-content .box-text span.yellow {
   padding-left: 15px;
}
aside .box-trasporto .box-content .box-icon{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    
    font-size: 27px;
    color: #FFF200;
    transition: font-size .2s ease;
}
aside .box-trasporto:hover .box-content .box-icon{
    font-size: 32px;
}
aside .box-trasporto .box-content .box-icon i{
    display: block;
    
}


/* LIST VIDEO
----------------------------------------------------*/
.list-video{
    
}
.list-video .video-item{
    display: block;
    position: relative;
    padding: 0;
    margin: 0 0 15px;
}
.list-video .video-item .video-item-inner{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    
    border: 1px solid #DDD;
    transition: background-color .6s ease;
}
.list-video .video-item:hover .video-item-inner{
    background: #F9F9F9;
}
.list-video .video-item a,
.list-video .video-item a:hover{
    display: block;
    position: relative;
    background: none;
}
.list-video .video-item .video-img{
    display: block;
    position: relative;
    float:left;
    width: 120px;
    height: 120px;
    
    background-repeat: none;
    background-position: center center;
    background-size: cover;
}
.list-video .video-item .video-content{
    display: block;
    position: relative;
    min-height: 90px;
    margin-left: 120px;
    padding: 10px;
}
.list-video .video-item .video-content h6{
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 5px;
    transition: padding-left .6s ease;
}
.list-video .video-item:hover .video-content h6{
    padding-left: 10px;
}
.list-video .video-item .video-content p{
    font-size: 14px;
    line-height: 22px;
    color: #999;
    margin: 0;
    transition: padding-left .6s ease;
}
.list-video .video-item:hover .video-content p{
    padding-left: 15px;
}



/* POPUP2 */
.infopopup2{
    color: #000;
}
.infopopup2 .bee-dialog-main > * + *{
    margin-top: 10px;
}
.infopopup2 .bee-dialog-inner {
    max-width: 60 !important;
}
.infopopup2 .title{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.infopopup2 ol > li + li{
    margin-top: 1.4rem;
}
.infopopup2 ul > li + li{
    margin-top: 1rem;
}
.infopopup2 ol ul{
    margin-left: 0;
    margin-top: 1.25rem;
}

.infopopup2 i{
    font-style: italic;
}




/* POPUP */
.infopopup{
    color: #000;
}
.infopopup .bee-dialog-main > * + *{
    margin-top: 20px;
}
.infopopup .bee-dialog-inner {
    max-width: 600px !important;
}
.infopopup .image-wrapper img{
    display: block;
    margin: 0 auto;
    width: 550px;
    margin-top: 15px!important;
    /*max-width: 100%;*/
}
.infopopup .title{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.infopopup ol > li + li{
    margin-top: 1.4rem;
}
.infopopup ul > li + li{
    margin-top: 1rem;
}
.infopopup ol ul{
    margin-left: 0;
    margin-top: 1.25rem;
}

.popup-risorsa {
    overflow: hidden;
}

.popup-risorsa .bee-dialog-inner {
    max-width: 700px;
    padding: 40px 20px;
    height: calc(100% - 120px);
    overflow: hidden;
}

.popup-risorsa .bee-dialog-inner .bee-dialog-main {
    overflow-y: auto;
    max-height: 100%;
}

.popup-risorsa .bee-dialog-inner .post .post-media .post-media-main-wrap.has-aside{
    width: 100%;
    float: none;
}
.popup-risorsa .bee-dialog-inner .post .post-media .post-media-main-wrap .post-media-slider .slide{
    overflow: hidden;
}
.popup-risorsa .bee-dialog-inner .post .post-media .post-media-main-wrap .post-media-slider .slide img{
    display: block;
    position: relative;
    width: auto;
    max-width: none;
    height: 350px;
}
.popup-risorsa .bee-dialog-inner .post .post-media .post-media-aside-wrap{
    display: none;
}
.popup-risorsa .bee-dialog-inner .post .post-media .post-media-main-wrap .post-media-title{
    left: 15px;
    margin-right: 50px;
}
.popup-risorsa .bee-dialog-inner .post .post-aside {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
    padding: 15px; 
}
.popup-risorsa .bee-dialog-inner .post .post-aside .post-aside-author  {
    display: none;
}
.popup-risorsa .bee-dialog-inner .post .post-aside {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}
.popup-risorsa .bee-dialog-inner .post .post-aside .post-aside-row {
    display: inline-block;
    width: auto;
    min-width: 80px;
    padding: 0 10px 0 10px;
    font-size: 11px;
}
.popup-risorsa .bee-dialog-inner .post .post-aside .post-aside-row  i{
    display: block;
    position: relative;
    font-size: 24px;
    line-height: 24px;
    height: 24px;
    margin-bottom: 5px;
}
.popup-risorsa .bee-dialog-inner .post .post-thumb{
    display: block;
    position: relative;
    width: auto;
    margin: 0 0 15px 0;
    float: none;
    text-align: center;
}
.popup-risorsa .bee-dialog-inner .post .post-thumb a,
.popup-risorsa .bee-dialog-inner .post .post-thumb a:hover{
    display: inline-block;
    position: relative;
    margin: 0 auto;
}


/*
=====================================================
4. FOOTER
=====================================================
*/

footer{
    display: block;
    position: relative;    
    width: 100%;
    margin: 0;
    padding: 0;
    padding: 72px 0;
    background-color: #000;
    color: #a9a8a8;
    z-index: 20;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
footer .gotop,
footer .gotop:hover {
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    float: right;
    top: -72px;
    
    margin: 0;
    padding: 0;
        
    background-color: #fff200;
    color: #4f4f4f;
    text-align: center;
    text-decoration: none;
    line-height: 44px;
}

footer p {
    font-size: 16px;
    color: #a9a8a8;
    line-height: 26px;
    margin-bottom: 15px; 
}
footer a{
    color: #fff200;
}
footer a:hover{
    color: #fff200;
    text-decoration: underline;
}
footer .separed{
    margin-top: 72px;
}
footer .separed-bottom{
    margin-bottom: 72px;
}
footer .mo-social a,
footer .mo-social a:hover {
    text-decoration: none;
}
footer h1, footer h2, footer h3,
footer h4, footer h5, footer h6 {
    color: #fff;
}
footer hr {
    background-image: linear-gradient(to right, #949494 40%, rgba(255, 255, 255, 0) 20%);
}
footer .address-footer i {
    display: inline-block;
    font-size: 32px;
    color: #fff200;
    position: relative;	
}
footer .address-footer .wico {
    line-height: 32px;
}
footer .address-footer .wico i,
footer .address-footer .wico p{
    line-height: 32px;
    vertical-align: middle;
}
footer .row .separed-col {
    background-image: linear-gradient(to bottom, #949494 40%, rgba(255, 255, 255, 0) 20%);
    background-position: right;
    background-size: 1px 4px;
    background-repeat: repeat-y;
}
footer .row .separed-col:last-child {
    background:none;
}
footer .address-footer {
    line-height: 22px;
    min-height: 125px;
}

.address-footer p {
    line-height: 22px;
}
.address-footer p{
    font-size: 14px;
}

footer .credits {
    font-size: 12px;
}
footer .credits a{
    color: #a9a8a8;
    font-weight: bold;
}
footer .credits a:hover{
    color: #fff200;
    text-decoration: none;
}

/*
=====================================================
5. GENERIC ELEMENTS
=====================================================
*/


/* title
----------------------------------------------------*/
.expo-title{
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
}
.expo-title.nom{
    margin-bottom: 5px;
}
a:hover .expo-title{
}
.expo-desc{
    font-size: 14px;
    line-height: 18px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-bottom: 15px;
}
.expo-desc strong{
    color: #FFF;
}


/* title line
----------------------------------------------------*/
.title-line {
    display: block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.title-line span,
.title-line:after{
    display: inline-block;
    position:relative;
    line-height: 50px;
    vertical-align: middle;
}
.title-line span {
    padding-right:10px;
}
.title-line:after {
    content: '';
    width: 100%;
    height:4px;
    background:#f0f0f0;
}
aside .title-line{
    white-space: normal;
}
aside .title-line span {
    font-size: 28px;
    padding-right:0;
}
aside .title-line span,
aside .title-line:after{
    line-height: 28px;
}


/* title label
----------------------------------------------------*/
.title-label {
    display: inline-block;
    position: relative;
    width:100%;
    padding-bottom:5px;
    margin:15px 0;
    
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: bold;
    border-bottom:4px solid #000;
}
.title-label span {
    padding:6px 13px;
    background-color:#000;
    color:#FFF;
}


/* label
----------------------------------------------------*/
.expo-label {
    display: inline-block;
    position: relative;
    
    padding: 5px 12px;
    margin: 0;
    
    background-color: #fff200;
    color: #4f4f4f;
    
    font-size: 11px;
    line-height: 15px;
    text-transform: uppercase;
}


/* explore
----------------------------------------------------*/
.expo-explore{
    color: #FFF;
    font-size: 12px;
    line-height: 12px;
    vertical-align: middle;
}
a:hover .expo-explore{
    color: #fff200;
    text-decoration: none;
}
.expo-explore i{
    font-size: 11px;
    margin-right: 5px;
}

.expo-explore.dark,
a:hover .expo-explore.dark{
    color: #000;
    text-decoration: none;
}


/* aside
----------------------------------------------------*/
.expo-aside {
    display: block;
    position: relative;
    background: #fff200;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.expo-aside a{
}
.expo-aside .expo-content {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    overflow: hidden;
}
.expo-aside .expo-content.expo-logo {
    display: block;
    position: relative;
}
.expo-aside .expo-content .expo-description{
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    
    overflow: hidden;
    text-overflow: ellipsis;
}
.expo-aside .expo-content .expo-description h4{
    overflow: hidden;
    text-overflow: ellipsis;
}
.expo-aside a:hover h4{
    color: #000;
    text-decoration: none;
}


/* detail wrap
----------------------------------------------------*/
.detail-wrap {  
    display: block;
    position:absolute;
    height:100%;
    width:100%;
    top:0;
    left: 0;
    padding:25px;
    
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(20%, rgba(0,0,0,0)), color-stop(70%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0.5)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );

    transition: all 1s ease;
    background-size: 600px;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.detail-wrap .detail-content{
    display: block;
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
}
.detail-wrap .detail-content h3 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* attachments-list
----------------------------------------------------*/
.attachments-list{
    display: block;
    position: relative;
    margin-bottom: 60px;
}
.attachments-list li{
    display: block;
    position: relative;
    margin-bottom: 5px;
}
.attachments-list li a{
    display: block;
    position: relative;
    padding: 5px 35px 5px 5px;
    background: #f0f0f0; 
    
    transition: background .6s ease;
}
.attachments-list li a:hover{
    background: #fff200;
    text-decoration: none;
}
.attachments-list li a span{
    
}
.attachments-list li a .attachment-icon{
    display: inline-block;
    position: relative;
    
    width:44px;
    height: 33px;
    margin-right: 5px;
    
    background-image: url('../img/skin/icon-attachment.png');
    background-repeat: no-repeat;
    background-position: center top;
}
.attachments-list li a:hover .attachment-icon{
    background-position: center bottom;
}
.attachments-list li a,
.attachments-list li a .attachment-icon,
.attachments-list li a span{
    font-size: 14px;
    line-height: 33px;
    vertical-align: middle;   
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* EFFECTS
----------------------------------------------------*/

/* img zoom */
.effect img {
   opacity:1;
   -moz-transform:scale(1);
   -webkit-transform:scale(1);
   -o-transform:scale(1);
   -ms-transform:scale(1);
   transform:scale(1);
   -webkit-transition: all 0.35s ease-in;
   -moz-transition: all 0.35s ease-in;
   -o-transition: all 0.35s ease-in;
   -ms-transition: all 0.35s ease-in;
   transition: all 0.35s ease-in;
}
.effect:hover img {
	opacity:1;
   -webkit-transform: scale(1.2,1.2) rotate(3deg);
   -moz-transform: scale(1.1,1.1) rotate(3deg);
   -o-transform: scale(1.1,1.1) rotate(3deg);
   -ms-transform: scale(1.1,1.1) rotate(3deg);
   transform: scale(1.1,1.1) rotate(3deg);
}

/* opacity mask */
.effect .mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   opacity: 0;
   overflow:visible;
   
   -webkit-transition: all 0.35s ease-in-out;
   -moz-transition: all 0.35s ease-in-out;
   -o-transition: all 0.35s ease-in-out;
   -ms-transition: all 0.35s ease-in-out;
   transition: all 0.35s ease-in-out;
}
.effect:hover .mask {
   opacity: 1;
   background: rgba(0,0,0,0.5) !important;
}

/* content in */
.effect div.content {
   opacity:0;
   -moz-transform:translateX(350px);
   -webkit-transform:translateX(350px);
   -o-transform:translateX(350px);
   -ms-transform:translateX(350px);
   transform:translateX(350px);
   -webkit-transition: all 0.35s ease-in-out;
   -moz-transition: all 0.35s ease-in-out;
   -o-transition: all 0.35s ease-in-out;
   -ms-transition: all 0.35s ease-in-out;
   transition: all 0.35s ease-in-out;
   position: relative;
}
.effect:hover div.content {
   opacity:1;
   -moz-transform:translateX(0);
   -webkit-transform:translateX(0);
   -o-transform:translateX(0);
   -ms-transform:translateX(0);
   transform:translateX(0);
   top: 41.2%;
   right: -5px;
   position: relative;
}


/* Chosen Select
----------------------------------------------------*/
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    min-width: 200px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.chosen-container .chosen-single {
    display: block;
    position: relative;
    height: 45px;
    line-height: 45px;
    padding: 0;
    margin: 0;
    color: #000;
    background: #F5F5F5;
    border: 1px solid #ccc;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition: box-shadow .2s ease
}
.chosen-container .chosen-single:hover {
    box-shadow: 0 1px 6px rgba(0,0,0,0.15);
}
.chosen-container .chosen-single span {
    display: block;
    margin: 0 26px 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chosen-container .chosen-single div {
    display: block;
    position: absolute;
    width: 12px;
    height: 100%;
    top: 0;
    right: 15px;
    background: none;
}
.chosen-container .chosen-single div b {
    display: none;
    background: none;
}
.chosen-container .chosen-single div:after {
    content: '';
    
    display: block;
    position: absolute;
    background: none;
    
    width: 0;
    height: 0;
    top: 50%;
    right: 0;
    margin-top: -2px;
    margin-right: 0;
    
    border: 5px solid transparent;
    border-top-color: #666;
    
    transition: all 1s ease
}
.chosen-container-active.chosen-with-drop .chosen-single div:after {
    border-top-color: #DDD;
    margin-top: -7px;
    transform: rotate(180deg);
}
.chosen-container .chosen-drop {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    background: #FFF;
    box-shadow: 1px 3px 3px rgba(0,0,0,0.3);
    z-index: 100;
}
.chosen-container.chosen-with-drop .chosen-drop {
    display: block;
    left: 0;
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}
.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: white url('../lib/chosen/chosen-sprite.png') no-repeat 100% -20px;
    background: url('../lib/chosen/chosen-sprite.png') no-repeat 100% -20px;
    font-size: 1em;
    line-height: normal;
    border-radius: 0;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px;
}
.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding:0;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
    display: none;
    padding: 10px 15px;
    margin: 0;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
    
    transition: all .6s ease;
}
.chosen-container .chosen-results li:hover,
.chosen-container .chosen-results li.result-selected {
    background: #FFF200;
}
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default;
}
.chosen-container .chosen-results li.no-results {
    color: #777;
    display: list-item;
    background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: bold;
    cursor: default;
}
.chosen-container .chosen-results li.group-option {
    padding-left: 15px;
}
.chosen-container .chosen-results em {
    font-weight: bold;
    font-style: normal;
}

/* AUTOCOMPLETE INPUT
----------------------------------------------------*/
.autocomplete {}
.autocomplete .autocomplete-result-wrapper{
    display: block;
    position: absolute;
    
    width: 400px;
    top: 46px;
    left: 0;
    
    background: #FFF;
    box-shadow: 1px 3px 3px rgba(0,0,0,0.3);
    z-index: 100;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item{
    padding: 10px 15px;
    margin: 0;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item:hover,
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item.result-selected {
    background: #FFF200;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item a{
    display: block;
    position: relative;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item img{
    display: block;
    float: left;
    width: 40px;
    margin-right: 15px;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-result .result-item a .title{
    overflow: hidden;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-foot{
    padding: 0 15px;
    font-size: 12px;
    line-height: 30px;
    color: #999;
    background: #F5F5F5;
    border-top: 1px solid #ddd;
    
    cursor: pointer;
    
    transition: all .6s ease;
}
.autocomplete .autocomplete-result-wrapper .autocomplete-foot:hover{
    color:#000;
    background: #FFF200;
}


/*
=====================================================
6. GENERIC LAYOUT BLOCKS
=====================================================
*/


/* BIG SLIDER
----------------------------------------------------*/
.slider-big{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    overflow: hidden;
}
.slider-big .slider-main-wrap{
    display: block;
    position: relative;
    float:left;
    width: 80%;
}
.slider-big .slider-main{
    display: block;
    position: relative;
}
.slider-big .slider-main .slide{
    display: block;
    position: relative;
}
.slider-big .slider-main .slide a{
    display: block;
    position: relative;
}
.slider-big .slider-main .slide .slide-img{
    display: block;
    position:relative;
    overflow: hidden;
    text-align: center;
}
.slider-big .slider-main .slide .slide-img img{
    display: inline-block;
    position:relative;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slider-big .slider-main .slide .slide-content{
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    padding: 25px;
    
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(20%, rgba(0,0,0,0)), color-stop(70%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0.5)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}
.slider-big .slider-main .slide .slide-content a{
}
.slider-big .slider-main .slide .slide-content a:hover{
}
.slider-big .slider-main .slide .slide-content .slide-label{
    display: block;
    position: relative;
}
.slider-big .slider-main .slide .slide-content .slide-title{
    display: block;
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
}

.slider-big .slider-aside-wrap{
    display: block;
    position: relative;
    float:left;
    width: 20%;
}
.slider-big .slider-aside-inner{
    display: block;
    position: relative;
    margin-left: 15px;
}
.slider-big .slider-aside{
    display: block;
    position: relative;
}
.slider-big .slider-aside .slide{
    display: block;
    position: relative;
}


/* HOT TOPICS
----------------------------------------------------*/
.hot-topics {
    margin-bottom: 60px;
}
.hot-topics .news-title {
    display: block;
    float: left;
    
    width: 25%;
    height: 60px;
    overflow: hidden;
}
.hot-topics .news-title h3{
    padding: 0 20px;
    line-height: 60px;
    margin: 0 15px 0 0;
    
    background-color: #fff200;
}
.hot-topics .news-ticker { 
    display: block;
    position: relative;
    float:left;
    
    width: 75%;
    height: 60px;
    padding: 0;
    margin: 0; 
    
    background:#000;
    overflow: hidden;
}
.hot-topics .news-ticker .mask { 
    display: block;
    position: relative;
    
    width: auto;
    height: 60px;
    padding: 0;
    margin: 0 15px;
    
    overflow: hidden;
}
.hot-topics .news-ticker ul#newsticker { 
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: auto;
    height:60px;
    line-height: 60px;
    margin: 0;
    padding: 0;
    
    list-style-type: none;
    white-space: nowrap;
}
.hot-topics .news-ticker ul#newsticker li {
    display: block;
    float:left;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    height:60px;
    line-height: 60px;	 
    color: #fff;
}
.hot-topics .news-ticker ul#newsticker li:before {
    font-family: 'list';
    content: "\e213b";
    font-size: 12px;
    color: #fff;
    margin-right: 8px;
    position: relative;
    top: 0px;
}
.hot-topics .news-ticker ul#newsticker a {
    white-space: nowrap;
    padding: 0;
    margin: 0 50px 0 0;
    color: #fff;
} 
.hot-topics .news-ticker ul#newsticker a:hover {
    color: #fff200;
} 
.hot-topics .news-ticker ul#newsticker span {
    margin: 0 10px 0 0;
}


/* VIP SLIDER
----------------------------------------------------*/
.vip-slider {
    display: block;
    position: relative;
    margin-bottom: 30px;
    background: #000;
    border: 1px solid #999;
}
.vip-slider .vip-navi {
    display: block;
    position: absolute;
    width: 84px;
    height: 100%;
    top:0;
    left: 0;
}
.vip-slider .vip-navi .vip-controls{
    display: block;
    position: relative;
    margin: 0;
    padding: 0;    
    border-right: 1px solid #999;
}
.vip-slider .vip-navi .vip-controls li {
    display: block;
    position: relative;
    float: left;
    width: 50%;
    height: 64px;
    line-height: 64px;
    margin: 0;
    padding: 0;
    color: #000;
    text-align: center;
    
    cursor: pointer;
}
.vip-slider .vip-navi .vip-controls li:hover {
    background-color: #ffdc53;
    color: #4f4f4f;
}


.vip-slider .vip-navi .vip-location{
    display: block;
    position: absolute;
    width: 100%;
    bottom: 50px;
}
.vip-slider .vip-navi .vip-location span{
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 0 auto;
    line-height: 55px;
    vertical-align: middle;
    
    text-align: center;
    color: #FFF;
    
    border: 4px solid #FFF;
    border-radius: 50%;
}
.vip-slider .vip-navi .vip-location:hover span{
    color: #FFF200;
    border-color: #FFF200;
}
.vip-slider .vip-navi .vip-location span i{
}
.vip-slider .vip-main {
    display: block;
    position: relative;
    margin-left: 84px;
    background: #FFF;
}
.vip-slider .vip-main .vip-slide {
    padding: 15px;
}
.vip-slider .vip-main .vip-slide .vip-video {
    margin-bottom: 15px;
}
.vip-slider .vip-main .vip-slide .vip-video iframe{
    width: 100%;
    height: 368px;
}
.vip-slider .vip-main .vip-slide .vip-title {
    margin-bottom: 15px;
}
.vip-slider .vip-main .vip-slide .vip-content {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}
.vip-slider .vip-main .vip-slide a {
    margin-bottom: 0;
}


/* TREADING BLOCK
----------------------------------------------------*/
.treading-block {	
    position:relative;
    display:block;
    margin:0 0 30px 0;
    padding: 0;
    overflow:hidden;
    
    background: #000;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.treading-block a{
    position:relative;
    display:block;
}
.treading-block img{
    width: 100%;
}
.treading-block:hover img{
    opacity: 0.5;
}
.treading-block .detail-wrap .detail-content h3  {
    font-size: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.treading-block a:hover .detail-wrap .detail-content h3  {
}


/* PAGE TITLE BLOCK
----------------------------------------------------*/
.pagetitle {
    display: block;
    position: relative;
    width: 100%;
    /* height: 225px; */
    min-height: 225px;
    padding: 0;
    margin: 0 0 60px 0;
    
    background-image: url(../img/bg/pagetitle/bga.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: hidden;
}

.pagetitle.pagetitle-bga{
}
.pagetitle.pagetitle-evento{
    background-image: url(../img/bg/pagetitle/evento.jpg);
}
.pagetitle.pagetitle-racconto{
    background-image: url(../img/bg/pagetitle/racconto.jpg);
}
.pagetitle.pagetitle-territorio{
    background-image: url(../img/bg/pagetitle/pagina_territorio.jpg);
}
.pagetitle.pagetitle-trasporti{
    background-image: url(../img/bg/pagetitle/pagina_trasporti.jpg);
}
.pagetitle.pagetitle-unesco{
    background-image: url(../img/bg/pagetitle/pagina_unesco.jpg);
}
.pagetitle.pagetitle-videoricette{
    background-image: url(../img/bg/pagetitle/pagina_videoricette.jpg);
}
.pagetitle.pagetitle-vip{
    background-image: url(../img/bg/pagetitle/vip.jpg);
}

.pagetitle.pagetitle-fiere-atrtufo{
    height: 450px!important;
}

.pagetitle.pagetitle-ospitalita-marchio-q{
    height: 450px!important;
}

.pagetitle h1, .pagetitle h2, .pagetitle h3,
.pagetitle h4, .pagetitle h5, .pagetitle h6 {
    margin: 60px 0px 10px;
    padding: 0 70px 0 70px;
    color: #fff;
    text-overflow: ellipsis;
}

.pagetitle p {
    padding: 0 70px 0 70px;
    
    font-size: 14px;
    line-height: 18px;
    
    word-break: keep-words;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #DDD;
}
.pagetitle .backurl {
    display: block;
    position: absolute;
    width: 142px;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    
    padding: 8px 10px;
    background: #FFF200;
    text-align: center;
}
.pagetitle .backurl li {
    display:inline-block;
    position: relative;
    font-size: 13px;
    color:#6e6e6e;
    text-align: center;
}
.pagetitle .backurl li a{
}
.pagetitle .backurl li a, 
.pagetitle .backurl li a:visited {
    color: #6e6e6e;
    text-decoration:none;  
}
.pagetitle .backurl li a:hover {
    color: #000;
}
.pagetitle .breadcrumb {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    
    padding: 8px 10px;
    background: #FFF200;
}
.pagetitle .breadcrumb li {
    display:inline-block;
    position: relative;
    font-size: 11px;
    color:#6e6e6e;
}
.pagetitle .breadcrumb li:after {
    display:inline-block;
    position:relative;
    content:"\2F";
    margin:0 8px;
    color:#6e6e6e;
}
.pagetitle .breadcrumb li:last-child:after {
    content:"";
    margin:0;
}
.pagetitle .breadcrumb li a,
.pagetitle .breadcrumb li span{
    text-transform: uppercase;
}
.pagetitle .breadcrumb li a, 
.pagetitle .breadcrumb li a:visited {
    color: #6e6e6e;
    text-decoration:none;  
    text-transform: uppercase;
}
.pagetitle .breadcrumb li a:hover {
    color: #000;
}
.pagetitle .breadcrumb li.current-page a, 
.pagetitle .breadcrumb li.current-page a:visited {
    color: #6e6e6e;
    text-decoration:none;
}
.pagetitle .condensed-breadcrumb {
    display: none;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    
    padding: 8px 10px;
    background: #FFF200;
    text-align: center;
}
.pagetitle .condensed-breadcrumb li {
    display:block;
    float: left;
    position: relative;
    font-size: 13px;
    color:#6e6e6e;
    text-align: center;
}
.pagetitle .condensed-breadcrumb li.right{
    float: right
}
.pagetitle .condensed-breadcrumb li a{
}
.pagetitle .condensed-breadcrumb li a, 
.pagetitle .condensed-breadcrumb li a:visited {
    color: #6e6e6e;
    text-decoration:none;  
}
.pagetitle .condensed-breadcrumb li a:hover {
    color: #000;
}


/* FILTER BLOCK
----------------------------------------------------*/
ul.filter {
    display: block;
    position: relative;
    list-style: none;
    margin: 0 0 15px 0;
}
ul.filter > li{
    display: block;
    position: relative;
    float:left;
    margin-right: 15px;
}

ul.filter > li input,
ul.filter > li select {
    
    display: block;
    position: relative;
    width: 300px;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    margin: 0;
    color: #000;
    background: #F5F5F5;
    border: 1px solid #ccc;
    
    font-size: 16px;
    color: #000;
    text-decoration: none;
    
    
    white-space: nowrap;
    overflow: hidden;
    transition: box-shadow .2s ease
}

input.single_filter {
    /*width: 120px;*/
    width: 100%;
    max-width: 100%;
    line-height: 43px;
    padding: 0 15px;
    margin: 0;
    color: #000;
    background: #F5F5F5;
    border: 1px solid #ccc;
    
    font-size: 13px;
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
#datatable .chosen-container {
    /*min-width: 120px;*/
    /*max-width: 150px;*/
    width: 100%;
    min-width: 120px;
    max-width:100%;
    font-size: 13px;
}

#datatable .extrali {
    display: none;
}

#datatable thead {
    background: black;
    color: white;
    text-align: center;
}

#datatable thead .filter input, #datatable thead .filter .chosen-container, #datatable thead .filter select {
    margin-bottom: 12px;
}
/*
#datatable th { text-align: center; }
*/
#datatable td, #datatable th{
    font-size: 13px;
    line-height: 21px;
}

#datatable { max-width:100%; }

ul.filter > li select {
    width: 200px;
}

ul.filter > li input[placeholder] {
    color: #000;
    opacity: 1 !important;
}

ul.filter > li input:hover,
ul.filter > li input:focus,
ul.filter > li select:hover,
ul.filter > li select:focus {
    box-shadow: 0 1px 6px rgba(0,0,0,0.15);
}


/* POST
----------------------------------------------------*/

/* list */
.post-list {
    display: block;
    position: relative;
}

/* post */
.post{
    display: block;
    position: relative;
    padding:0;
    margin: 0;
}
.post-list .post{
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 4px solid #f0f0f0;
}

/* media */
.post .post-media {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 10;
}
.post .post-media .post-media-main-wrap{
    display: block;
    position: relative;
    float: none;
    z-index: 20;
}
.post .post-media .post-media-main-wrap.has-aside{
    width: 80%;
    float: left;
}
.post .post-media .post-media-main-wrap .post-media-slider{
    display: block;
    z-index: 30;
}
.post .post-media .post-media-main-wrap.slide-filter .post-media-slider .slide a:after{
    content: '';
    display: block;
    position: absolute;
    
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    
    background: rgba(0,0,0,0);
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(20%, rgba(0,0,0,0)), color-stop(70%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0.5)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );

}
.post .post-media .post-media-main-wrap .post-media-slider .slide img{
    min-width: 100%;
}
.post .post-media .post-media-main-wrap .post-media-title{
    display: block;
    position: absolute;
    bottom: 15px;
    left: 153px;
    margin-right: 150px;
    z-index: 40;
}
.post .post-media .post-media-aside-wrap{
    display: block;
    position: relative;
    width: 20%;
    float: left;
    z-index: 20;
}
.post .post-media .post-media-aside-wrap .post-media-aside{
    display: block;
    position: relative;
    margin-left: 15px;
    z-index: 30;
}

/* aside */
.post .post-aside {
    display: block;
    position: relative;
    float: left;
    width: 142px;
    margin:0 30px 60px 0;
    padding: 15px 0;
    font-size: 13px;
    color: #FFF;
    background-color: #000;
    text-align: center;
    z-index: 20;
}
.post .post-aside strong{
    color: #FFF;
}
.post .post-aside .post-aside-row {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.post .post-aside .post-aside-row  i{
    display: block;
    position: relative;
    font-size: 32px;
    line-height: 32px;
    height: 32px;
    margin-bottom: 5px;
}
.post .post-aside .post-aside-row a, 
.post .post-aside .post-aside-row a:visited {
    color: #FFF;
    display: block;
    position: relative;
}
.post .post-aside .post-aside-row a:hover {
    color: #fff200;
    text-decoration: none;
}
.post .post-aside .post-aside-author  {
    margin-top: -153px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.post .post-aside.no-media .post-aside-author  {
    margin-top: -15px;
}
.post .post-aside .post-aside-author div.thumb{
    background: #fff200;
    padding: 20px;
    margin-bottom: 15px;
}
.post .post-aside .post-aside-author div.thumb img{
    display: block;
    margin: auto;
    width: 98px;
    height: 98px;
}

/* thumb */
.post .post-thumb{
    display: block;
    position: relative;
    width: 260px;
    
    padding: 0;
    margin-right: 15px;
    
    float:left;
    overflow: hidden;
    z-index: 30;
}
.post .post-thumb.no-image-trasp a:after{
    content: '';
    
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('../img/skin/no-image-trasp.png');
    background-color: rgba(0,0,0,0.70);
    background-position: center center;
    background-repeat: no-repeat;
    
    z-index: 20;
}
.post .post-thumb a,
.post .post-thumb a:hover{
    display: block;
    position: relative;
    z-index: 10;
}
.post .post-thumb img{
    display: inline-block;
    position: relative;
    z-index: 10;
}
.post .post-thumb.full{
    width: 100%;
    margin: 0;
    float: none;
}
.post .post-thumb.full img{
    width: 100%;
}
.post .post-thumb .post-thumb-date{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    z-index: 20;
    color: #000;
    text-align: center;
}
.post .post-thumb .post-thumb-date .thumb-date-day{
    display: block;
    position: relative;
    width: 100%;
    font-size: 18px;
    line-height: 35px;
    background: #FFF200;
}
.post .post-thumb .post-thumb-date .thumb-date-month{
    display: block;
    position: relative;
    width: 100%;
    
    font-size: 13px;
    line-height: 30px;
    text-transform: lowercase;
    background: #FFF;
}


/* content */
.post .post-content{
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 40;
}

.post-one .post .post-content{
    margin-bottom: 60px;
}
.post-content.has-media{
    margin-top: 30px;
}

.post-one .post .post-content a{
    background: #FFF200;
    text-decoration: none;
    transition: background-color .6s ease;
}
.post-one .post .post-content a:hover{
    background: #ffdc53;
    text-decoration: none;
}
.post .post-content u{
    text-decoration:none;
}

.post .post-content p{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}
.post .post-content p:empty {display: none;}
.post-one .post .post-content p{
    font-size: 16px;
    line-height: 28px;
}
.post-list .post .post-content p{
    font-size: 14px;
    line-height: 21px;
}
.post-list .post .post-content p:last-child{
    margin-bottom: 0;
}
.post .post-content p.lead,
.post-one .post .post-content p.lead {  
    color: #8d8d8d;
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
}

/* content blocks */
.post .post-content .post-pretitle,
.post-one .post .post-content .post-pretitle,
.post-list  .post .post-content .post-pretitle{
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 5px;
}
.post .post-content .post-pretitle span,
.post-one .post .post-content .post-pretitle span,
.post-list  .post .post-content .post-pretitle span{
    display: inline-block
}
.post .post-content .post-pretitle span.color,
.post-one .post .post-content .post-pretitle span.color,
.post-list  .post .post-content .post-pretitle span.color{
    color: #00AEEF;
}
.post .post-content .post-pretitle span + span,
.post-one .post .post-content .post-pretitle span + span,
.post-list  .post .post-content .post-pretitle span + span{
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #999;
}
.post .post-content .post-title,
.post-one .post .post-content .post-title,
.post-list .post .post-content .post-title{
    font-family: 'Noto Serif', 'Times New Romans', serif;
    color: #000;
    font-size: 28px;
    line-height: 32px;
}
.post .post-content .post-title-big,
.post-one .post .post-content .post-title-big,
.post-list .post .post-content .post-title-big{
    font-family: 'Noto Serif', 'Times New Romans', serif;
    color: #000;
    font-size: 32px;
    line-height: 36px;
}
.post .post-content .post-text{
}
.post .post-content .post-link {
}
.post .post-content .post-link a{
    margin: 0;
}
.post .post-content .post-video iframe{
    width: 100%;
    height: 368px;
}
/* author */
.post .post-author {
    width: 100%;
    margin-bottom: 60px;
}
.post .post-author p {
    margin:0;
}
.post .post-author img {
    width:100px;
    height:100px;
    margin:7px 15px 0 0;
    float:left;
}
.post .post-author h5 {
    margin-bottom: 15px;
}

/* sharer */
.post .post-sharer {
    display: block;
    position: relative;
    margin-bottom: 60px;
}
.post .post-sharer.post-sharer-big {
    text-align: center;
}

/* voucher piemonte */
.post .post-voucher-piemonte {
    display: block;
    position: relative;
    margin-bottom: 60px;
}

/* map */
.post .post-map {
    display: block;
    position: relative;
    margin-bottom: 60px;
}

/* attachments */
.post .post-attachments {
    display: block;
    position: relative;
    margin-bottom: 60px;
}

/* links */
.post .post-block {
    display: block;
    position: relative;
    margin-bottom: 60px;
}
.post .post-links .list-video {
    margin: 0 -8px;
}
.post .post-links .list-video .video-item{
    display: block;
    position: relative;
    float: left;
    width: 50%;
}
.post .post-links .list-video .video-item-inner{
    margin: 0 8px;
}
.post .post-links .list-video .video-item:nth-child(2n+1){
    clear:both;
}


/* PAGINATION
----------------------------------------------------*/
.pagination {
    display: block;
    position: relative;
    padding: 0;
    margin: 15px 0 60px;
}
.pagination li{
    display: inline-block;
    padding: 0;
    margin: 0 15px 15px 0;
}
.pagination li i{
    font-size: 12px;
    line-height: 14px;
}
.pagination li > a, 
.pagination li > span {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    background-color: #707070;
    padding: 15px 20px;
}


.pagination li > a:hover,
.pagination li > a:focus,
.pagination li.active > a,
.pagination li.active > a,
.pagination li.active > a:hover,
.pagination li.active > a:focus,
.pagination li > span,
.pagination li > span,
.pagination li.active > span,
.pagination li.active > span,
.pagination li.active > span:hover,
.pagination li.active > span:focus {
    color: #4f4f4f;
    background-color: #FFF200;
}

/* GRID LIST
----------------------------------------------------*/
.grids{
    
}

/* filter */
.grids .grids-filter{
    display: block;
    position: relative;
    margin:0 0 15px;
    padding:0 0 15px;
    text-align: right;
    border-bottom:4px solid #CCC;
}
.grids .grids-filter li{
    display:inline-block;
    font-family: 'Noto Serif', 'Times New Romans', serif;
    font-size:16px;
}
.grids .grids-filter li a {
    padding:0 15px;
    color:#8a8989;
    text-decoration:none;
}
.grids .grids-filter li a:hover
.grids .grids-filter li a:active,
.grids .grids-filter li a.selected, 
.grids .grids-filter li a:hover {
    color:#000;
    text-decoration:none;
}

/* container */
.grids .grids-container{
}
.grids .grids-container .grids-item{
    margin: 0 -1px 0 0;
    z-index: 10;
}
.grids .grids-container .grids-item a{
    display: block;
    position: relative;
}
.grids .grids-container .grids-item .grids-img{
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 20;
    background: #000;
}
.grids .grids-container .grids-item .grids-img img{
    display: block;
    position: relative;
    width: 100%;
}
.grids .grids-container .grids-item a:hover .grids-img img{
    opacity: 0.7;
}
.grids .grids-container .grids-item .grids-content{
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: opacity .2s ease;
    z-index: 20;
    overflow: hidden;
}
body.expo-resizing .grids .grids-container .grids-item .grids-content{
    opacity: 0;
}
.grids .grids-container .grids-item .grids-content .grids-title{
    padding: 15px;
    margin-right: 52px;
    z-index: 40;
}
.grids .grids-container .grids-item .grids-content .grids-icon{
    display: block;
    position: absolute;
    top:0;
    right: 0;
    width: 52px;
    height: 52px;
    line-height: 52px;
    
    color: #000;
    background: #FFF200;
    
    text-align: center;
    z-index: 30;
}
.grids .grids-container .grids-item .grids-content .grids-overlay{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 100;
}
.grids .grids-container .grids-item .grids-content .grids-overlay div.content {
   display: inline-block;
   position: relative;
   top: 50%;
   left: 50%;
   margin-top: -23px;
   margin-left: -23px;
   width:46px;
   height:46px;
   line-height: 46px;
   background-color: #fff;
   color: #a7a7a7;
   font-size: 16px;
   text-align: center;
   text-decoration: none;
}
.grids .grids-container .grids-item.grids-yellow .grids-content{
    background: #fff200;
}
.grids .grids-container .grids-item.grids-yellow .grids-content .grids-title .expo-title{
    color: #000;
    text-shadow: none;
}
.grids .grids-container .grids-item .grids-content .grids-title{
}
.grids .grids-container .grids-item .grids-content .grids-title .expo-title{
    font-size: 22px;
}
.grids .grids-container .grids-item.grids-yellow .grids-icon,
.grids .grids-container .grids-item.grids-yellow .grids-overlay{
    display: none
}


/*
=====================================================
7. CUSTOM PAGES
=====================================================
*/


/* VIDEORICETTE
----------------------------------------------------*/
.video-ricette {
}
.video-ricette .video-container{
    display: block;
    position: relative;
    padding: 0;
    margin: 0 0 30px 0;
    border: 1px solid #DDD;
}
.video-ricette .video-container iframe{
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
}
.video-ricette .video-container .video-content{
    display: block;
    position: relative;
    padding: 15px 25px;
    background: #F9F9F9;
    min-height: 130px;
}
.video-ricette .video-container .video-content h4{
}

.post-type-videoricetta .videoricetta-download{
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}
.post-type-videoricetta .videoricetta-download a{
    display: block;
    position: relative;
    padding: 15px;
    
    background: #f0f0f0;
    transition: background-color .6s ease;
}
.post-type-videoricetta .videoricetta-download a:hover{
    background: #fff200;
}
.post-type-videoricetta .videoricetta-download .download-icon{
    display: block;
    position: relative;
    float: left;
    
    width: 88px;
    height: 66px;
    
    margin-right: 15px;
    
    background-image: url('../img/skin/icon-videoricette-downlod.png');
    background-repeat: no-repeat;
    background-position: center center;
    
}
.post-type-videoricetta .videoricetta-download .title{
    font-family: 'Noto-serif', serif;
    font-size: 20px;
    line-height: 20px;
    color: #000;
    margin: 8px 0 10px;
    
    overflow: hidden;
}
.post-type-videoricetta .videoricetta-download .download{
    font-size: 13px;
    line-height: 16px;
    color: #666666;
    margin: 0;
    overflow: hidden;
}

aside .aside-type-videoricetta{
    display: block;
    position: relative;
    margin: 30px auto 60px;
}
aside.separed .aside-type-videoricetta{
    margin-bottom: 30px;
}
aside .aside-type-videoricetta .aside-type-videoricetta-inner{
    display: block;
    position: relative;
    padding: 15px;
    
    background: #f0f0f0;
    transition: background-color .6s ease;
}
aside .aside-type-videoricetta:hover .aside-type-videoricetta-inner{
    background: #fff200;
}
aside .aside-type-videoricetta .download-icon{
    display: block;
    position: absolute;
    float: left;
    left:15px;
    width: 102px;
    height: 146px;
    margin-top: -73px;
    top: 50%;
    
    background-image: url('../img/skin/icon-videoricette-catalogo.png');
    background-repeat: no-repeat;
    background-position: center center;
}
aside .aside-type-videoricetta .content{
    margin-left: 117px;
}
aside .aside-type-videoricetta .pretitle{
    font-size: 13px;
    line-height: 14px;
    color: #cc6666;
    margin: 0;
}
aside .aside-type-videoricetta .title{
    font-family: 'Noto-serif', serif;
    font-size: 24px;
    line-height: 28px;
    color: #000;
    margin: 0;
}
aside .aside-type-videoricetta .download{
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    margin: 0;
}


/* CONTACT
----------------------------------------------------*/
.contact-map {  
    width: auto;
    height: 420px;
    margin: 0 0 15px;
}

.contact-map-info {
    display: block;
    position: relative;
    float: right;
    width: 348px;
    height: 360px;
    margin-top: -420px;
    margin-right: 30px;
    
    padding: 25px;
    background: rgba(254, 208, 25, 0.8);
    color: #000;
    font-size: 14px;
}
.contact-map-info .contact-logo{
    margin-bottom: 25px;
}
.contact-map-info .contact-title{
    margin-bottom: 5px;
}

/* contact details */
ul.contact-list {
    margin-bottom: 50px;
}

ul.contact-list li {
    background-image: linear-gradient(to bottom, #dbdbdb 40%, rgba(255, 255, 255, 0) 20%);
    background-position: left;
    background-size: 1px 4px;
    background-repeat: repeat-y;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    padding-top: 28px !important;
    float: left;
}
ul.contact-list li i {
    font-size: 38px;
    color: #606060;
}
ul.contact-list li:before {
    background-image: linear-gradient(to right, #dbdbdb 40%, rgba(255, 255, 255, 0) 20%);
    background-position: top;
    background-size: 4px 1px;
    background-repeat: repeat-x;
    content: "";
    display: block;
    height: 1px;
}
ul.contact-list li:nth-child(3n+1) {
    background-image: none;
}
ul.contact-list li:nth-child(-n+3):before {
    background-image: none;
}



/* loghivoucher */
.loghivoucher {
    
}
.loghivoucher .formob{
    display:none;
}
.loghivoucher > ul{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 0;
    text-align: left;
    background-color: white;
}
.loghivoucher > ul > li{
    display: inline-block;
    position: relative;
    /*float:left;*/    
    width: 20%;
    height: 100px;
    line-height: 100px;
    text-align:center;    
    margin-bottom: 10px;    
    padding-right: 10px;
}

.loghivoucher > ul > li span{
    display: block;
    position: absolute;
    margin: auto;
    
    top: 0;
    left: 0;
    width: 100%;
    
    line-height: 15px;
    font-size: 10px;
    font-weight: 600;
    color: #000;
    text-align:center;
}
.loghivoucher > ul > li a{
    display: inline-block;
    position: relative;
    max-width: 100%;
    margin: auto;
    vertical-align: middle;
    
}
.loghivoucher > ul > li a img{
    display: inline-block;
    position: relative;
    max-width: 100%;
}
.loghivoucher > ul > li:nth-of-type(7n + 1){
    clear:both;
}
.loghivoucher > ul > li.separe{
    margin-right: 40px;
}





/* partners */
.partners {
    
}
.partners .formob{
    display:none;
}
.partners > ul{
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0;
    text-align: center;
}
.partners > ul.second{
    margin-top: 0;
    margin-bottom: 15px;
}
.partners > ul > li{
    display: inline-block;
    position: relative;
    /*float:left;*/
    width: 14.285%;
    height: 100px;
    line-height: 100px;
    text-align:center;
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;    
}
.partners.partners-black > ul > li{
    border-bottom: 1px solid #333;
}
.partners > ul > li span{
    display: block;
    position: absolute;
    margin: auto;
    
    top: 0;
    left: 0;
    width: 100%;
    
    line-height: 15px;
    font-size: 10px;
    font-weight: 600;
    color: #000;
    text-align:center;
}
.partners > ul > li a{
    display: inline-block;
    position: relative;
    max-width: 100%;
    margin: auto;
    vertical-align: middle;
    
}
.partners > ul > li a img{
    display: inline-block;
    position: relative;
    max-width: 100%;
}
.partners > ul > li:nth-of-type(7n + 1){
    clear:both;
}
.partners > ul > li.separe{
    margin-right: 40px;
}

/* partners black */
.partners.partners-black {
    margin-top: 60px;
}
.partners.partners-black > ul > li span{
    color: #FFF;
}


/*
=====================================================
8. EXTERNAL LIBS ADAPT
=====================================================
*/

/* GOOGLE MAPS
----------------------------------------------------*/
[data-toggle="gmap"] {
    border: 1px solid #cfcfcf;
}
[data-toggle="gmap"] img {
    max-width: none;
}
.gmapScroll {
    display: block;
    position: fixed;
    right: 15px;
    width: 50px;
    height: 50px;
    
    background: #000;
    border: none;
    color: #FFF;
    
    cursor: pointer;
    z-index: 99998;
}
.gmapScroll.scroll-up {
    top: 85px;   
}
.gmapScroll.scroll-down {
    bottom: 15px;
}


/* FANCYBOX
----------------------------------------------------*/
.fancybox-nav {
    width: 56px;
}
.fancybox-nav span {
    visibility: visible;
}
.fancybox-nav.fancybox-prev {
    left: -56px;
}
.fancybox-nav.fancybox-next {
    right: -56px;
}


/* PHOTOSWIPE
----------------------------------------------------*/
/* Alzo il z-index di photowsipe */
.pswp{
    z-index: 9999 !important;
}
.pswp__item .ps-inc {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    
    text-align: center;
    vertical-align: middle;
    
    overflow: hidden;
}
.pswp__item .ps-inc.ps-inc.video {
    padding: 100px 200px;
}
.pswp__item .ps-inc .ps-inc-in {
    display: block;
    position: relative;
    
    max-width: 100%;
    max-height: 100%;
    
    vertical-align: middle;
    overflow: hidden;
}
.pswp__item .ps-inc .ps-inc-in img,
.pswp__item .ps-inc .ps-inc-in iframe{
    display: inline-block;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.pswp__item .ps-inc .ps-inc-in iframe{
    width: 100%;
    height: 100%;
}
.pswp__item .ps-inc .ps-inc-desc{
    display: block;
    position: relative;
    
    font-size: 13px;
    line-height: 18px;
    color: #FFF;
    margin-top: 10px;
    
    overflow: hidden;
}



/* ISOTOPE
----------------------------------------------------*/
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}


/* OWL CAROUSEL
----------------------------------------------------*/

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

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls{
    display: block;
    position: absolute;
    bottom: 25px;
    left: 50%;
    translate: -50%;
    
    width: auto;
    height: auto;
    
    margin: 0;
    padding:0;
    
    vertical-align: middle;
    text-align: center;
    z-index:9999;
    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-controls .owl-pagination,
.owl-controls .owl-page{
    line-height: 20px;
    vertical-align: middle;    
    text-align: center;
}

/* mouse grab icon */
.grabbing {
  cursor: url(../img/skin/cursor-grabbing.png) 8 8, move;
}

/* fix */
.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);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 50%;
  color: #FFF;
  background: #FFF;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  color: #999;
  background: #999;
    
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  /* display: inline; */
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  border-radius: 50%;
  color: #FFF;
  background: #FFF;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  color: #999;
  background: #999;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(../img/skin/ani-loader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}


/*
=====================================================
9. ALTRO
=====================================================
*/

/* Top Social */
.mo-social {
    font-size: 24px;
}
.mo-social li a[class^="social-"],
.mo-social li a[class*="social-"] { 
    width: 51px;
    height: 51px;
    line-height: 51px;
    margin: 0 4px 10px 0;
}

/* INFOWINDOW */
.gmap_localize,
.gmap_localize:hover {
    background: none !important;
}
.gmap_localize .name{
    background: #FFF200;
    transition: background-color .6s ease;
}
.gmap_localize:hover .name{
    background: #ffdc53;
}
.gm-style-iw > div {
    overflow: hidden;
}
.infowindow {
    display: block;
    min-width: 320px;
    line-height: 18px;
}
.infowindow .name{
    display: block;
    font-weight: bold;
    font-size: 16px;
}
.infowindow .content{
    display: block;
    margin-top: 10px;
    line-height: 18px;
}
.infowindow .content .thumb{
    display: block;
    float: left;
    width: 100px;
    margin-right: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}
.infowindow .content .thumb img{
    display: block;
    max-width: 100%;
}
.infowindow .content .info{
    overflow: hidden;
}

/* WIDGETS */
#fb-root {
  display: none;
}
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
  height: auto;
}

#twitter-widget-0 { 
  width: 100% !important; 
}

/* Facebook */
.fb-wrapper {
    width:100%;
    border:1px solid #ddd;
    margin-bottom:60px;
    padding:28px 8px 13px 8px;
    float:left;
}
.fb-wrapper iframe {
    height:258px;
    margin-bottom:-7px;
}

/* Flickr */
ul#flck-thumb { margin:2px -5px 20px -1px;}
ul#flck-thumb div.no-image { display:none; }
.thumbs { margin: 0; padding: 0; overflow: hidden; }
.thumbs div { width:76px; height:76px; list-style: none; float: left; margin: 0px 7px 14px 7px; }
.thumbs div a { }
.thumbs div img { width:100%; height:100%; display: block; }
.thumbs div a img { border: none; }
#flickr-noscript { display:none; }

/* 404 Stylesheet */
#error404-left {margin:56px 0 100px 0; padding-left:110px;}
#error404-right {margin:0 0 100x 0; padding-left:90px;}
#error404-right .panel {width: 87%; margin-top: 56px; padding-bottom: 2px;}
#error404-left h1 {font-size:74px;}
#error404-left i {font-size:74px; position:relative; top:8px;}
#error404 a.button {margin-bottom:38px;}


/* EVENTI
----------------------------------------------------*/
.event-cont-ref {
    margin-top: -10px;
    font-family: 'Noto Serif', serif;
    vertical-align: baseline;
}
.event-cont-ref a,
.post-one .post .post-content .event-cont-ref a{
    background: none;
    transition: none;
}
.event-cont-ref a:hover,
.post-one .post .post-content .event-cont-ref a:hover{
    text-decoration: underline;
}
.event-cont-ref .evtrefico {
    display: inline-block;
    width: 22px;
    height: 32px;
    background: url('../img/skin/icon-expotree.png') center center no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    vertical-align: baseline;
}

.events-list strong {
    font-weight: bold;
}
.events-list .post .post-content .post-title{
    margin-bottom: 5px;
}
.events-list .post .post-content .post-text .date{
    font-size: 12px;
}

tr.shrink {
    display: none;
    transition: all .25s ease;
}
tr.expand {
    display: table-row;
}

/* new per pacchetti */
.post-offer .list-attachments {
    border-top: 0;
    background: none;
}

.post-offer .list-attachments li {
    margin-bottom: 6px;
    background-color: #cad201;
    height: 43px;
}

.post .post-offer .post-content .post-text  .list-attachments li a {
    background-color: #cad201 !important;
    color: #000000 !important;
}

.post .post-offer .post-content .post-text  .list-attachments li a .dida {
    color: #000000 !important;
    line-height: 43px;
}

.post .post-offer .post-content .post-text .list-attachments li a .attachment-icon {
    background-image: url(../images/skin/icon-download.png);
    background-repeat: no-repeat;
    background-position: 7px 7px;
    height: 43px;
    width: 34px;
}

.post .post-offer .post-content .post-text a.button {
    background-color: #000000 !important; /* #cad201 !important; */
    color: #ffffff !important; /* #000000 !important; */
}

.post .post-offer .post-content .post-text a.button i {
    /* color: #000000 !important; */
    color: #ffffff !important;
}


.post .post-offer .green-tag {
    height: 24px;
    padding: 4px 10px 6px;
    background-color: #cad201;
    width: auto;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    display:inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

.post .post-offer .post-text {
    line-height: 27px;
}

.post .post-offer .post-text strong.content-text-title {
    margin-top: 25px;
    display: inline-block;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 5px;
}

.post .post-offer .post-text h6.content-text-title {
    margin-top: 35px;
    display: inline-block;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 5px;
}

.detail-wrap .detail-content p.calendar_holder {
    margin-bottom: 1px;
}

.detail-wrap .detail-content p.luogo_holder {
    margin-bottom: 4px;
}

.detail-wrap.pacchetto .detail-content .detail-bar {
    margin-bottom: 4px;
}

.detail-wrap.pacchetto .detail-content .detail-bar li {
    /* line-height: 32px; */
    line-height: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.detail-wrap.pacchetto .detail-content .detail-bar li .fa {
    font-size: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.detail-wrap .detail-content p {
    margin: 0 0 8px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}

.detail-wrap.pacchetto .detail-content .detail-bar li {
    display: block;
    float: left;
    position: relative;
    padding: 5px 6px;
    color: #000;
    font-size: 12px;
    line-height: 16px;
    background-color: #fff200;
}

.detail-wrap.pacchetto .expo-label {
    position: absolute;
    top: 0;
    right: 0;
}

.post-offer .green-tag {
    height: 24px;
    padding: 4px 10px 6px;
    background-color: #fff200;
    width: auto;
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}

.post-offer .post-content a {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 10px 17px;
    text-align: center;
    border: 1px solid transparent;
}

.post-offer .post-content a:hover {
    background-color: #fff200 !important;
    color: #000000 !important;
}

/* aside pacchetti */ 
.list-posts li {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}
.list-posts li img {
    display: block;
    width: 115px;
    float: left;
    margin-right: 15px;
}
.list-posts li .content {
    overflow: hidden;
}
.list-posts li .content h4 {
    margin-bottom: 10px;
    transition: color .3s ease;
}
.list-posts li .content p {
    font-size: 14px;
    line-height: 22px;
    color: #000 !important;
    margin: 0;
}
.list-posts.condensed li .content p {
    color: #999999 !important;
    font-size: 12px;
    line-height: 16px;
}

.list-posts.condensed li .content h4 {
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* aside pacchetti */ 
.list-posts li {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}
.list-posts li img {
    display: block;
    width: 115px;
    float: left;
    margin-right: 15px;
}
.list-posts li .content {
    overflow: hidden;
}
.list-posts li .content h4 {
    margin-bottom: 10px;
    transition: color .3s ease;
}
.list-posts li .content p {
    font-size: 14px;
    line-height: 22px;
    color: #000 !important;
    margin: 0;
}
.list-posts.condensed li .content p {
    color: #999999 !important;
    font-size: 12px;
    line-height: 16px;
}

.list-posts.condensed li .content h4 {
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.widget.widget-black {
    background-color: #000;
    color: #818181;
    padding: 25px 21px 23px;
    
}

.widget.widget-black h1, .widget.widget-black h2, .widget.widget-black h3, .widget.widget-black h4, .widget.widget-black h5, .widget.widget-black h6 {
    margin-bottom: 6px;
    color: #fff200;
}

.white { color: #FFF; }

i[class^="ico-percorso-"],
i[class*="ico-percorso-"] {
    display: inline-block;
    min-width: 1px;
    min-height: 1px;    
    vertical-align: middle;    
    background-image: url(../img/skin/icon-percorso-sprite-yellow.png);
    background-repeat: no-repeat;
}

/* difficolta */
.ico-percorso-difficolta-emoticon-facile{
    width: 24px;
    height: 24px;
    background-position: -6px -36px;    
}
.ico-percorso-difficolta-emoticon-impegnativa{
    width: 24px;
    height: 24px;
    background-position: -6px -138px;    
}
.ico-percorso-difficolta-emoticon-media{
    width: 24px;
    height: 24px;
    background-position: -6px -70px;    
}
.ico-percorso-difficolta-emoticon-media-diffic{
    width: 36px;
    height: 24px;
    background-position: 0 -104px;    
}
.ico-percorso-difficolta-emoticon-molto-facile{
    width: 24px;
    height: 24px;
    background-position: -6px -2px; 
}
.ico-percorso-difficolta-emoticon-molto-impegn{
    width: 36px;
    height: 24px;
    background-position: 0 -172px;    
}

/* solo o in gruppo */
.ico-percorso-solo-o-gruppo-gruppo{
    width: 46px;
    height: 23px;
    background-position: -161px 0;  
}
.ico-percorso-solo-o-gruppo-solo{
    width: 36px;
    height: 24px;
    background-position: -161px -33px;  
}

/* tipo bicibletta */
.ico-percorso-tipo-bicicletta-citta{
    width: 59px;
    height: 31px;
    background-position: -46px 0;  
}
.ico-percorso-tipo-bicicletta-strada{
    width: 55px;
    height: 31px;
    background-position: -48px -41px;  
}
.ico-percorso-tipo-bicicletta-mtb{
    width: 57px;
    height: 32px;
    background-position: -47px -82px;  
}

/* tipo terreno */
.ico-percorso-tipi-di-terreno-asfalto{
    width: 38px;
    height: 26px;
    background-position: -116px -3px;  
}
.ico-percorso-tipi-di-terreno-porfido{
    width: 38px;
    height: 27px;
    background-position: -116px -39px;  
}
.ico-percorso-tipi-di-terreno-roccioso{
    width: 38px;
    height: 26px;
    background-position: -116px -76px;  
}
.ico-percorso-tipi-di-terreno-sterrato{
    width: 38px;
    height: 26px;
    background-position: -116px -112px;   
}
.ico-percorso-519a264418392eb67696812fd9619,
.ico-percorso-tipi-di-terreno-strada-bianca{
    width: 38px;
    height: 26px;
    background-position: -116px -148px;   
}

/* circuito */
.ico-percorso-circuito-chiuso-si{
    width: 23px;
    height: 23px;
    background-position: -46px -141px;  
}
.ico-percorso-circuito-chiuso-no {
    width: 23px;
    height: 23px;
    background-position: -46px -173px;  
}

/* inline separed */
.list-inline-separed{
    font-size: 0;
}
.list-inline-separed label,
.list-inline-separed li {
    display: inline-block;
    position: relative; 
    line-height: 50px;
    padding: 0 8px;
}
.list-inline-separed label:after,
.list-inline-separed li:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    border-right: 1px solid #343434;
}
.list-inline-separed label:last-child:after,
.list-inline-separed li:last-child:after{
    border: none;
}
.list-inline-separed label.active:after,
.list-inline-separed li.active:after{
    border-right: none;
}

.post-one .post-content .post-map {
    display: block;
    position: relative;
    width: 100%;
    height: 385px;
    margin-bottom: 15px;
}

.post-one .post-content .post-chart {
    display: block;
    position: relative;
    width: 100%;
    height: 275px;
    margin-bottom: 15px;
}

/* TOOLTIP
----------------------------------------------------*/
.beers-tooltip{
    color: #020202;
    font-size: 12px;
    background-color: #f2f4bf;
    border: 1px solid #cad200;
    min-width: 150px;
    padding: 10px 5px;
}
.beers-tooltip:before{
    border-top-color: #f2f4bf;
}
/* Beers Tooltip
----------------------------------------------------------------------------*/
[data-tooltip]{
    position: relative;
}
.beers-tooltip {
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    padding: 5px;
    margin-top: 5px;
    
    color: #000;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    
    background-color: #FFF;
    border-radius: 3px;
    
    z-index: 3000;
    opacity: 0;
} 
.beers-tooltip:before{
    content: '';
    
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    
    width: 0;
    height: 0;
    
    margin-left: -10px;
    border: transparent 10px solid;
    border-top-color: #FFF;
}

.hidden-desktop{
    display: none !important;
}

@media (max-width: 767px) {

    .hidden-desktop{
        display: block !important;
    }
}

.warning-voucher {
    font-style: italic;
    font-size: 0.9em;
}

.gimmeguide-popup .bee-dialog-inner{
    padding: 0;
    max-width: 770px;
}
.gimmeguide-popup iframe{
    display: block;
    width: 100%;
    height: 585px;
}
.gimmeguide-popup .bee-dialog-inner .bee-dialog-close{
    top: 10px;
    right: 10px;
    padding: 0;
}
.gimmeguide-select {
    padding: 10px 15px;
    border: 1px solid #dedede;
}

.tariffe-wrapper, .disponibilita-wrapper{
    margin-bottom: 15px;
}
.tariffa{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.tariffa:last-of-type{
    margin: 0;
}
.watermark{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px 140px;
}
.watermark img{
    width: auto;
    height: 100%;
    object-fit: contain;
}

.post-title-div h1{
    color: #000;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

ul.filter{
    padding-bottom: 0px;
}
ul.filter > li{
    margin-bottom: 15px;
}

.no-result a{
    text-decoration: underline;
}

.filters-wrapper.full-sep .sep{
    margin: 15px 0;
    padding: 15px 0 0;
    border-bottom: 4px solid #f0f0f0;
    border-top: 4px solid #f0f0f0;
}

.post-esperienza .post-media{
    margin-bottom: 15px;
}
.post-esperienza .post-media .owl-item{
    margin-right: 15px;
}
.post-esperienza .post-media .slide img{
    height: 386px;
    object-fit: cover;
}

.post-offer .post-esperienza .post-content a {
    background-color: unset !important;
    color: unset !important;
    padding: unset;
    text-align: unset;
    border: unset;
    cursor: auto;
}

/* OSPITALIA MARCHIO Q */
.text-container > p{
    font-size: 16px;
    line-height: 28px;
}
#scroll-to-map {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    height: 40px;
    white-space: nowrap;
    font-weight: bold;
    transform: translateX(-50%);
    z-index: 999;
    padding: 10px 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    border: none;
    font-family: 'Noto Serif', 'Times New Romans', serif;
    background-color: #FFF200;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

#scroll-to-map:hover {
    background-color: #ffdc53;
    color: #4f4f4f;
    transform: translateX(-50%) scale(1.05);
}

#scroll-to-map.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

@media (max-width: 765px) {
    #scroll-to-map {
        display: block;
    }
}

/* EXPO LOADER */
.expo-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10000000000000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expo-loader.fixed {
  position: fixed;
}
.expo-loader > div {
  display: inline-block;
  position: relative;
  width: 104px;
  height: 80px;
}
.expo-loader > div div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.expo-loader > div div:nth-child(1) {
  left: 8px;
  background: #1b9838;
  animation: lds-ellipsis1 0.6s infinite;
}
.expo-loader > div div:nth-child(2) {
  left: 8px;
  background: #ea2b9c;
  animation: lds-ellipsis2 0.6s infinite;
}
.expo-loader > div div:nth-child(3) {
  left: 32px;
  background: #4442a7;
  animation: lds-ellipsis2 0.6s infinite;
}
.expo-loader > div div:nth-child(4) {
  left: 56px;
  background: #fada00;
  animation: lds-ellipsis2 0.6s infinite;
}
.expo-loader > div div:nth-child(5) {
  left: 80px;
  background: #00acfc;
  animation: lds-ellipsis3 0.6s infinite;
}

.italian-hospitality-button a{
    border-radius: 100%;
    max-width: 330px;
    display: block;
    overflow: hidden;
    border: 1px solid #DDD;
    padding: 0;
    margin: 0;
}

.italian-hospitality-button a img{
    width: 100%;
    height: auto;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}