
* {
    /* prevent callout when holding tap on links (the native dialog that comes up) */
    -webkit-touch-callout: none;

    /* prevent webkit from resizing text to fit */
    -webkit-text-size-adjust: none;

    /* make transparent link selection, adjust last value opacity 0 to 1.0 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    /* prevent copy paste, to allow, change 'none' to 'text' */
    -webkit-user-select: none;
}

input[type="checkbox"] { -webkit-appearance: none; }

input::-webkit-input-placeholder { opacity: .8; }

html { min-height: 100%; }

a:hover, a:active, a:focus { border: none; outline: 0 !important; -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; border-color: inherit; -webkit-box-shadow: none; box-shadow: none; color: #EC008C !important; }

header a:active, header a:hover, header a:focus { color: #fff !important; }

.text-social > span a:active, .text-social > span a:hover, .text-social > span a:focus { color: #fff !important; }

.radio input[type="radio"]:focus + label::before { outline: 0 !important; }

:focus {
    outline: 0 !important;
}

a { color: #fff; }

body {
    font-weight: 300;
    font-family: 'Arial', sans-serif;
    background: #fff;
    background-size: 100%;
    min-height: 100vh;
    line-height: 1.6;
    font-size: 12px;
    color: #fff;
}

p { color: #fff; font-family: 'Arial', sans-serif; }

.bold, strong, .strong { font-weight: 800; font-family: 'Arial', sans-serif; }

.regular { font-weight: 500; font-family: 'Arial', sans-serif; }

.light { font-weight: 300; font-family: 'Arial', sans-serif; }

h1 { font-size: 35px; }

h2 { font-size: 24px; }

h3 { font-size: 22px; }

h4 { font-size: 17px; }

h5 { font-size: 12px; }

h6 { }

a:focus, a:hover { text-decoration: none; }

.fs10 { font-size: 10px; }

.fs11 { font-size: 11px; }

.fs12 { font-size: 12px; }

.fs13 { font-size: 13px; }

.fs14 { font-size: 14px; }

.fs15 { font-size: 15px; }

.fs16 { font-size: 16px; }

.fs17 { font-size: 17px; }

.fs18 { font-size: 18px; }

.fs19 { font-size: 19px; }

.fs20 { font-size: 20px; }

.fs21 { font-size: 21px; }

.fs22 { font-size: 22px; }

.fs23 { font-size: 23px; }

.fs24 { font-size: 24px; }

.fs25 { font-size: 25px; }

.fs30 { font-size: 30px; }

.fs65 { font-size: 65px; }

.fs100 { font-size: 100px; }

.ls1 { letter-spacing: 1px; }

.ls2 { letter-spacing: 2px; }

.ls3 { letter-spacing: 3px; }

.ls4 { letter-spacing: 4px; }

.ls5 { letter-spacing: 5px; }

.lh15 { line-height: 1.5; }

/* ------------- */
/* animation     */
/* ------------- */

.splashzoom { -webkit-animation: splashzoom 45s infinite linear; }

@-webkit-keyframes splashzoom {

    0% {
        -webkit-transform: scale(1) rotate(0deg) translate3d(0px, 0px, 0px);
        transform: scale(1) rotate(0deg) translate3d(0px, 0px, 0px);
    }

    50% {
        -webkit-transform: scale(1.4) rotate(0deg) translate3d(10px, 0px, 0px);
        transform: scale(1.4) rotate(0deg) translate3d(10px, 0px, 0px);
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg) translate3d(0px, 0px, 0px);
        transform: scale(1) rotate(0deg) translate3d(0px, 0px, 0px);
    }

}

@keyframes splashzoom {

    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }

    50% {
        -webkit-transform: scale(1.4) rotate(0deg);
        transform: scale(1.4) rotate(0deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg)
    }

}

.animate-fadein { animation: fadein 2s; -moz-animation: fadein 2s; -webkit-animation: fadein 2s; -o-animation: fadein 2s; }

/* Default hover animation */
.animate-hover {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

.animate-hover-list * {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

/* Fadein */
.fadein-10 {
    animation: fadein 1000ms;
    -moz-animation: fadein 1000ms;
    -webkit-animation: fadein 1000ms;
    -o-animation: fadein 1000ms;
}

.fadein-15 {
    animation: fadein 1500ms;
    -moz-animation: fadein 1500ms;
    -webkit-animation: fadein 1500ms;
    -o-animation: fadein 1500ms;
}

.fadein-20 {
    animation: fadein 2000ms;
    -moz-animation: fadein 2000ms;
    -webkit-animation: fadein 2000ms;
    -o-animation: fadein 2000ms;
}

.fadein-25 {
    animation: fadein 2500ms;
    -moz-animation: fadein 2500ms;
    -webkit-animation: fadein 2500ms;
    -o-animation: fadein 2500ms;
}

.fadein-30 {
    animation: fadein 3000ms;
    -moz-animation: fadein 3000ms;
    -webkit-animation: fadein 3000ms;
    -o-animation: fadein 3000ms;
}

.fadein-35 {
    animation: fadein 3500ms;
    -moz-animation: fadein 3500ms;
    -webkit-animation: fadein 3500ms;
    -o-animation: fadein 3500ms;
}

.fadeout-30 {
    animation: fadeout 3000ms;
    -moz-animation: fadeout 3000ms;
    -webkit-animation: fadeout 3000ms;
    -o-animation: fadeout 3000ms;
}

.delay-10 { -webkit-animation-delay: 1s; animation-delay: 1s; }

.delay-20 { -webkit-animation-delay: 2s; animation-delay: 2s; }

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.hvr-pulse {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 60s;
    animation-duration: 60s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* opacity hover */
.animate-opacity-hover {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

.animate-opacity-hover:hover {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
    opacity: 0.7;
}

/* Reveal */
.hvr-reveal-white {
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.75);
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

.hvr-reveal-white:hover {
    box-shadow: inset 0px 0px 0px 8px rgba(255, 255, 255, 0.75);
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

/* -------------- */
/* width          */
/* -------------- */
.float-left { float: left; }

.float-right { float: right; }

.no-float { float: none; }

.pos-relative { position: relative; }

.pos-absolute { position: absolute; }

/* ------ */

.w100 { width: 100%; }

.w70 { width: 70%; }

.w65 { width: 65%; }

.w50 { width: 50%; }

.w49 { width: 49%; }

.w48 { width: 48%; }

.w33 { width: 33.3333333333333%; }

.w30 { width: 30%; }

.w25 { width: 25%; }

/* ------ */

.table-row { display: table-row; }

.table-cell { display: table-cell; }

.table-table { display: table; }

/* ------ */

.vertical-center { vertical-align: middle; }

.text-center { text-align: center; }

/* ------ */

.overflow-hidden { overflow: hidden; }

/* ------ */

.mt-tiny { margin-top: 7px; }

.mt-small { margin-top: 15px; }

.mt-medium { margin-top: 30px; }

.mt-large { margin-top: 41px; }

.mt-big { margin-top: 82px; }

.mb-tiny { margin-bottom: 7px; }

.mb-small { margin-bottom: 15px; }

.mb-medium { margin-bottom: 30px; }

.mb-large { margin-bottom: 41px; }

.mb-big { margin-bottom: 82px; }

.ml-tiny { margin-left: 7px; }

.ml-small { margin-left: 15px; }

.ml-medium { margin-left: 30px; }

.ml-large { margin-left: 41px; }

.ml-big { margin-left: 82px; }

.mr-tiny { margin-right: 7px; }

.mr-small { margin-right: 5px; }

.mr-medium { margin-right: 30px; }

.mr-large { margin-right: 41px; }

.mr-big { margin-right: 82px; }

.m-tiny { margin: 3.5px; }

.m-small { margin: 15px; }

.m-medium { margin: 30px; }

.m-large { margin: 41px; }

.m-big { margin: 82px; }

.margin-center { margin: auto; }

/* ------ */
.nomarg { margin: 0 !important; }

.nopadd { padding: 0 !important; }

.inline { display: inline-block; margin-left: -4px; }

.vertical-floater { display: table-cell; vertical-align: middle; }

.vertical-holder { display: table; }

/* ------ */
.top { top: 0px; bottom: inherit !important; }

.bottom { bottom: 0px; top: inherit !important; }

/* ------ */
.pt-tiny { padding-top: 7px; }

.pt-small { padding-top: 15px; }

.pt-medium { padding-top: 24px; }

.pt-large { padding-top: 41px; }

.pt-big { padding-top: 82px; }

.pb-tiny { padding-bottom: 7px; }

.pb-small { padding-bottom: 15px; }

.pb-medium { padding-bottom: 24px; }

.pb-large { padding-bottom: 41px; }

.pb-big { padding-bottom: 82px; }

.pl-tiny { padding-left: 7px; }

.pl-small { padding-left: 15px; }

.pl-medium { padding-left: 24px; }

.pl-large { padding-left: 41px; }

.pl-big { padding-left: 82px; }

.pr-tiny { padding-right: 7px; }

.pr-small { padding-right: 15px; }

.pr-medium { padding-right: 24px; }

.pr-large { padding-right: 41px; }

.pr-big { padding-right: 82px; }

.p-tiny { padding: 3.5px; }

.p-small { padding: 15px; }

.p-medium { padding: 24px; }

.p-large { padding: 41px; }

.p-big { padding: 82px; }

.p2 { padding: 2px; }

/* ------ */
.background-box-content { background-clip: content-box; }

/* ------ */
.image-width img { width: 100%; }

.image-width-max img { max-width: 100%; }

/* ------ */
.chevron::after {
    border-style: solid;
    border-width: 0.10em 0.10em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.45em;
}

.chevron.right:after {
    left: 0;
    transform: rotate(45deg);
}

.chevron.bottom:after {
    top: 0;
    transform: rotate(135deg);
    top: 6px;
}

.chevron.left:after {
    left: 0.25em;
    transform: rotate(-135deg);
}

.preloader { position: fixed; background: #fff; width: 100vw; height: 100vh; z-index: 10000; }

.preloader-text { position: absolute; left: calc(50% - 50px); top: calc(50% - 50px); font-size: 16px; }

.preloader--init { }

.preloader--init .preloader-text { left: 0px; width: 100%; top: calc(50% - 80px); }

/* Fadein */
.fadein-10 {
    animation: fadein 1000ms;
    -moz-animation: fadein 1000ms;
    -webkit-animation: fadein 1000ms;
    -o-animation: fadein 1000ms;
}

.fadein-15 {
    animation: fadein 1500ms;
    -moz-animation: fadein 1500ms;
    -webkit-animation: fadein 1500ms;
    -o-animation: fadein 1500ms;
}

.fadein-20 {
    animation: fadein 2000ms;
    -moz-animation: fadein 2000ms;
    -webkit-animation: fadein 2000ms;
    -o-animation: fadein 2000ms;
}

.fadein-25 {
    animation: fadein 2500ms;
    -moz-animation: fadein 2500ms;
    -webkit-animation: fadein 2500ms;
    -o-animation: fadein 2500ms;
}

.fadein-30 {
    animation: fadein 3000ms;
    -moz-animation: fadein 3000ms;
    -webkit-animation: fadein 3000ms;
    -o-animation: fadein 3000ms;
}

.fadein-35 {
    animation: fadein 3500ms;
    -moz-animation: fadein 3500ms;
    -webkit-animation: fadein 3500ms;
    -o-animation: fadein 3500ms;
}

.fadeout-30 {
    animation: fadeout 3000ms;
    -moz-animation: fadeout 3000ms;
    -webkit-animation: fadeout 3000ms;
    -o-animation: fadeout 3000ms;
}

.fadeout-10 {
    animation: fadeout 700ms;
    -moz-animation: fadeout 700ms;
    -webkit-animation: fadeout 700ms;
    -o-animation: fadeout 700ms;
}

.delay-10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* ------------------------------------------------
---------------------------------------------------
    index
--------------------------------------------------
-------------------------------------------------- */
[data-component="Index"]  {padding: 25px;}

[data-component="Index"] * { color: #000; }

[data-component="Index"] ul {
padding-left: 0px;
}

[data-component="Index"] li {
    background: #eee;
    padding: 10px 30px;
    margin-bottom: 10px;
    list-style-type: none;
    font-family: 'Open sans', sans-serif;
    font-size: 17px;
}

/* ------------------------------------------------
---------------------------------------------------
    fader
--------------------------------------------------
-------------------------------------------------- */

.fader {
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
}

/* ------------------------------------------------
---------------------------------------------------
    gallery 1
--------------------------------------------------
-------------------------------------------------- */
[data-component="Gallery1"] .swiper-container {
    width: 100%;
    height: 100%;
}

[data-component="Gallery1"] .swiper-slide {
    background-position: center;
    background-size: cover;
    height: 100vh;
}

/* ------------------------------------------------
---------------------------------------------------
    gallery 2
--------------------------------------------------
-------------------------------------------------- */

.gallery2-body {
    overflow: hidden;
}

.mapconsole-body {
    overflow-x: hidden;
}

[data-component="Gallery2"] {
    max-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    background: #fff url(../images/event/bg.png) no-repeat;
}

/* ------------------------------------------------
---------------------------------------------------
    event
--------------------------------------------------
-------------------------------------------------- */

[data-component="Event"] {
    max-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    background: #fff url(../images/event/bg-1200.png) no-repeat;
}

[data-component="Event"] .upcoming {
    color: #7D3E3E;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    padding: 50px;
}

[data-component="Event"] .upcoming h4 {
    color: #7D3E3E;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    font-size: calc(3vh);
}

[data-component="Event"] .upcoming h3 {
    color: #7D3E3E;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: calc(7vh);
}

[data-component="Event"] .upcoming h3:nth-child(2) {
    color: #000;
}

[data-component="Event"] .upcoming p {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: calc(4vh);
}

[data-component="Event"] .upcoming.empty {
    height: calc(50vh);
}

[data-component="Event"] .current {
    background: #7D3E3E;
    padding: 50px;
}

[data-component="Event"] .current h5 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    font-size: calc(2vh);
}

[data-component="Event"] .current h3 {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: calc(3vh);
}

[data-component="Event"] .current p {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: calc(3vh);
}

[data-component="Event"] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #7d3e3e;
}

[data-component="Event"] .swiper-container-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 8px;
    left: 0;
    top: 0;
    position: fixed;
    background: #fff;
}

/* ------------------------------------------------
---------------------------------------------------
    map console
--------------------------------------------------
-------------------------------------------------- */

[data-component="Mapconsole"] .tab-switch {
    position: fixed;
    z-index: 1000;
    bottom: 50px;
    left: 50px;
    border: 2px solid #63868A;
}

[data-component="Mapconsole"] .tab-switch .tab {
    color: #63868A;
    background: #fff;
    padding: 10px 15px;
    font-family: 'Open Sans', sans-serif;
    float: left;
    font-weight: 500;
    font-size: 20px;
}

[data-component="Mapconsole"] .tab-switch .tab.active {
    background: #63868A;
    color: #fff;
}

[data-component="Mapconsole"] .tab-holder .tab-item {
    width: 100vw;
    height: 100vh;
    display: none;
}

[data-component="Mapconsole"] .tab-holder .tab-item.active {
    width: 100vw;
    height: 100vh;
    display: block;
}

[data-component="Mapconsole"] p {
    color: #696969;
}

[data-component="Mapconsole"] #map-description {
    width: 20vw;
    min-height: 100vh;
    position: absolute;
    left: 80vw;
    top: 0;
    color: #7D3E3E;
    font-family: 'Open sans', sans-serif;
    padding: 15px;
}



[data-component="Mapconsole"] #map-description .header {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.22);
    display: inline-block;
    position: fixed;
    right: -2px;
    top: 0px;
    height: 90px;
    padding-top: 25px;
    padding-left: 30px;
    width: calc(20vw - 15px);
    background: #fff;
    z-index: 10;
}

[data-component="Mapconsole"] #map-description .content-list {
padding-top: 130px;
}

[data-component="Mapconsole"] #map-description h4 {
    font-weight: bold;
    font-size: 22px;
}

[data-component="Mapconsole"] #image-map {
    width: 80vw;
    height: 100vh;
    border: 0px solid #ccc;
    background: #252A2E;
    position: fixed;
    left: 0px;
    top: 0px;
}

/* width */
.mapconsole-body ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.mapconsole-body ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.mapconsole-body ::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.mapconsole-body ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

[data-component="Mapconsole"] {
    padding: 0 0 20px 0;
}

[data-component="Mapconsole"] a {
    color: #333;
}

[data-component="Mapconsole"]-image {
    margin-bottom: 20px;
}

[data-component="Mapconsole"] .event-item {
    margin-bottom: 10px;
    position: relative;
}

[data-component="Mapconsole"] .event-name {
    line-height: 30px;
    width: calc(100% - 45px);
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-bottom: 1px solid rgba(125, 62, 62, 0.24);
    color: #7d3e3e;
}

[data-component="Mapconsole"] .brandlogo {
    position: absolute;
    max-height: 50px;
    max-width: 50px;
    top: 0px;
    right: 20px;
}

[data-component="Mapconsole"] .event-name > div, [data-component="Mapconsole"] .event-name p {
    line-height: 1.7;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #696969;
}

[data-component="Mapconsole"] .event-number {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    text-align: center;
    margin-right: 10px;
    background: #7d3e3e;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: 3px;
    padding: 0px;
    overflow: hidden;
    line-height: 1;
}

[data-component="Mapconsole"] .event-number img {
    max-width: 100%;
}
[data-component="Mapconsole"] .programe.left .content-list-programe {
    position: fixed;
    width: 50vw;
    height:100vh;
    left: 0;
    overflow-y: scroll;
    top: 0px;
    padding-top: 100px;
    padding-bottom: 150px;
}

[data-component="Mapconsole"] .programe.left::-webkit-scrollbar {
    width: 5px;
}

[data-component="Mapconsole"] .programe.left::-webkit-scrollbar-track {
    background: #ddd;
}

[data-component="Mapconsole"] .programe.left::-webkit-scrollbar-thumb {
    background: #666;
}

[data-component="Mapconsole"] .programe.left .header {
    position: fixed;
    width: 50vw;
    left: 0px;
    top: 0px;
    height: 100px;
    background: #fff;
    z-index: 10000;
    color: #7D3E3E;
    border-bottom: 3px solid #7d3e3e;
}

[data-component="Mapconsole"] .programe.left .header h4 {
    text-align: center;
    font-family: 'Open sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    padding-top: 25px;
}

[data-component="Mapconsole"] .programe.right {
    width: 50vw;
}

[data-component="Mapconsole"] .programe.right .content-list-programe {
    position: fixed;
    width: 50vw;
    height:100vh;
    left: calc(50vw);
    overflow-y: scroll;
    top: 0px;
    padding-top: 100px;
    padding-bottom: 150px;
}

[data-component="Mapconsole"] .programe.right::-webkit-scrollbar {
    width: 5px;
}

[data-component="Mapconsole"] .programe.right::-webkit-scrollbar-track {
    background: #ddd;
}

[data-component="Mapconsole"] .programe.right::-webkit-scrollbar-thumb {
    background: #666;
}

[data-component="Mapconsole"] .programe.right .header {
    position: fixed;
    width: 50vw;
    left: calc(50vw);
    top: 0px;
    height: 100px;
    background: #fff;
    z-index: 10000;
    color: #7D3E3E;
    border-bottom: 3px solid #7d3e3e;
}

[data-component="Mapconsole"] .programe.right .header h4 {
    text-align: center;
    font-family: 'Open sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    padding-top: 25px;
}
[data-component="Mapconsole"] .tab-footer {
    position: fixed;
    width: 100vw;
    left: 0;
    bottom: 0px;
    height: 130px;
    background: #fff;
    z-index: 900;
    color: #7D3E3E;
    display: none;
    border-top: 3px solid #7d3e3e;
}



/* ------------------------------------------------
---------------------------------------------------
     EVENT MAP
--------------------------------------------------
-------------------------------------------------- */


.location-pin {
    /*display: inline-block;*/
    /*position: relative;*/
    /*top: 50%;*/
    /*left: 50%;*/
}

.location-pin img {
    width: 26px;
    height: 26px;
    margin: -3px 0 0 -3px;
    z-index: 10;
    position: absolute;
    border-radius: 50%;
    animation-name: bounce-only;
    animation-fill-mode: both;
    animation-duration: 1s;
    background: #32383E;
}

.pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #32383E;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    animation-name: bounce;
    animation-fill-mode: both;
    animation-duration: 1s;
}

.pin:after {
    content: '';
    width: 26px;
    height: 26px;
    margin: 2px 0 0 2px;
    position: absolute;
    border-radius: 50%;
    animation-name: bounce-rotate;
    animation-fill-mode: both;
    animation-duration: 1s;
}

.pulse {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    transform: rotateX(55deg);
    z-index: -2;
}

.pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    animation: pulsate 2.5s ease-out;
    animation-iteration-count: infinite;
    opacity 0.0;
    background: rgba(94, 190, 255, 0.5);
    box-shadow: 0 0 1px 2px #2D99D3;
    animation-delay: 1.1s;
}

.agenda {
}

.agenda-days h4 {
    position: relative;
    z-index: 20;
    background: white;
}

.agenda-days h4 {
    background: transparent !important;
}

.agenda-days h4 {
    background: transparent !important;
}



.refresh, .refresh {

    background: #63868A;
}

.refresh.refreshing, .refresh.refreshing {
    opacity: 0.5 !important;
}

.last-refresh {
    position: fixed;
    bottom: 65px;
    right: 55px;
    max-width: 100px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 0px;
    color: #ddd;
    font-size: 11px;
    line-height: 20px;
    font-family: 'Open Sans', sans-serif;
}

.headered img {
    max-height: 150px;
    width: auto;
}

.agenda h4 {
    color: #000;
}

.agenda span {
    color: #000;
}

.agenda .agenda-item-box {
    background: #fafafa;
    padding: 10px;
    max-width: 60%;
    margin: 0 auto;
}

.agenda .agenda-item-box.narancs {
    background: #fafafa;
    padding: 10px;
    border-bottom: #f39200 1px solid;
    border-top: #f39200 6px solid;
}

.agenda .agenda-item-box.narancs .agenda-title-bar {
    color: #f39200;
}

.agenda .agenda-item-box.sotetkek {
    background: #fafafa;
    padding: 10px;
    border-bottom: #004899 1px solid;
    border-top: #004899 6px solid;
}

.agenda .agenda-item-box.sotetkek .agenda-title-bar {
    color: #004899;
}

.agenda .agenda-item-box.piros {
    background: #fafafa;
    padding: 10px;
    border-bottom: #9c1006 1px solid;
    border-top: #9c1006 6px solid;
}

.agenda .agenda-item-box.piros .agenda-title-bar {
    color: #9c1006;
}

.agenda .agenda-item-box.lila {
    background: #fafafa;
    padding: 10px;
    border-bottom: #662483 1px solid;
    border-top: #662483 6px solid;
}

.agenda .agenda-item-box.lila .agenda-title-bar {
    color: #662483;
}

.agenda .agenda-item-box.sarga {
    background: #fafafa;
    padding: 10px;
    border-bottom: #fff15f 1px solid;
    border-top: #fff15f 6px solid;
}

.agenda .agenda-item-box.sarga .agenda-title-bar {
    color: #fff15f;
}

.agenda .agenda-item-box.zold {
    background: #fafafa;
    padding: 10px;
    border-bottom: #3faf6c 1px solid;
    border-top: #3faf6c 6px solid;
}

.agenda .agenda-item-box.zold .agenda-title-bar {
    color: #3faf6c;
}

.agenda .agenda-item-box.vilagoskek {
    background: #fafafa;
    padding: 10px;
    border-bottom: #00b9ee 1px solid;
    border-top: #00b9ee 6px solid;
}

.agenda .agenda-item-box.vilagoskek .agenda-title-bar {
    color: #00b9ee;
}

.agenda .agenda-item-box.rozsaszin {
    background: #fafafa;
    padding: 10px;
    border-bottom: #ff00ff 1px solid;
    border-top: #ff00ff 6px solid;
}

.agenda .agenda-item-box.rozsaszin .agenda-title-bar {
    color: #ff00ff;
}

.agenda .agenda-item-box.turkiz {
    background: #fafafa;
    padding: 10px;
    border-bottom: #12cbbc 1px solid;
    border-top: #12cbbc 6px solid;
}

.agenda .agenda-item-box.turkiz .agenda-title-bar {
    color: #12cbbc;
}

.agenda .agenda-item-box.barna {
    background: #fafafa;
    padding: 10px;
    border-bottom: #af6b01 1px solid;
    border-top: #af6b01 6px solid;
}

.agenda .agenda-item-box.barna .agenda-title-bar {
    color: #af6b01;
}

.agenda .agenda-item-box.stotetszurke {
    background: #fafafa;
    padding: 10px;
    border-bottom: #585858 1px solid;
    border-top: #585858 6px solid;
}

.agenda .agenda-item-box.stotetszurke .agenda-title-bar {
    color: #585858;
}

.agenda .agenda-item-box p {
    color: #333;
}

.agenda .bg-circle {
    border-radius: 100%;
    overflow: hidden;
}

.agenda-item {
    position: relative;
    z-index: 20;
}

.agenda-item .panel-speakers-agenda-item {
    background: #eee;
    position: relative;
    left: -15px;
    padding: 15px 15px 0px 15px;
    width: calc(100% + 30px);
}

.agenda-item .panel-questions li, .agenda-item .panel-questions li * { /* color: #8d4e4e; */
    font-weight: 300; /* font-family: 'open_sanslight', sans-serif; *//* font-size: 14px; */
}

.agenda-item-images .bg-circle {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
    opacity: 0;
}

.agenda-item-images .bg-circle.active {
    transition: 0.2s all;
    -moz-transition: 0.2s all;
    -o-transition: 0.2s all;
    -webkit-transition: 0.2s all;
    opacity: 1 !important;
}

.agenda-item[data-filter="3"] {
}

.agenda-item[data-filter="3"] .agenda-item-box {
    border: none;
    text-align: center;
    background: #fff
}

.agenda-item[data-filter="3"] .speaker-item {
    float: none;
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
}

.agenda-item[data-filter="3"] .performer__name {
    line-height: 1.2;
    margin-bottom: 10px;
}

.agenda-item[data-filter="3"] .performer__pos {
    line-height: 1.2;
    word-wrap: break-word;
}

.agenda-item[data-filter="3"] .bg-circle {
    margin: 0 auto;
}

.agenda__line {
    width: 2px;
    height: calc(100% - 10px);
    background: #63868a;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 10;
}

.segmented-control {
    border: #8d4e4e 1px solid;
}

.segmented-control .control-item {
    color: #8d4e4e;
    padding: 10px 0;
    font-size: 12px;
}

.segmented-control .control-item.active {
    background: #8d4e4e;
    border-color: #8d4e4e;
}


@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0.0
    }
    50% {
        opacity: 1.0;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(30px) rotate(-45deg);
    }
    80% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}