@import url("../font-awesome.min.css");
@import url("../icons.css");

@font-face {
	font-family: 'pf_highway_sans_pro_lightRg';
    src: url('../../fonts/AvertaPE/regular.woff2') format('woff2'), url('../../fonts/AvertaPE/regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'pf_highway_sans_pro_mediumRg';
	src: url('../../fonts/AvertaPE/semibold.woff2') format('woff2'), url('../../fonts/AvertaPE/semibold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'pf_highway_sans_pro_lightRg';
	src: url('../../fonts/AvertaPE/italic.woff2') format('woff2'), url('../../fonts/AvertaPE/italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
}

::selection {
    background-color: #703EFF;
    color: white;
}
:root {
    --color-purple: #703EFF;
    --color-purple-hover: #502CB5;
    --border-radius-button: 24px;
    --padding-button-16-24: 16px 24px;
    --font-size-button: 16px;
    --color-soldout-background-button: none;
    --color-soldout-red-button: #fc2d33 !important;
    --line-height-soldout-red-button: 44px;
    --border-soldout-red-button: 1px solid #fc2d33 !important;
    --color-button-text: #fff;
    --color-purple-dark-link: #2F1A6B;
}

html,
body {
    height: 100%;
    scroll-padding-top: 60px;
    font-family: "pf_highway_sans_pro_lightRg", "Arial", sans-serif;
}

body {
    background-color: #f6f6f6; /*#e0e0e0*/
    font: normal 1.2em "pf_highway_sans_pro_lightRg", "Arial", sans-serif;
}

    body:before {
        background-color: #202020;
        content: "";
        height: 100vh;
        left: 0;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        /*transition: opacity .5s cubic-bezier(.5,.25,.015,1);*/
        width: 100%;
        z-index: 20;
    }

/*for iOS devices input zoom issue*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select, textarea,
    input:not([type="radio"]):not([type="checkbox"]),
	not(._account_reset_verfication_item)
	{
        font-size: 16px !important;
    }
}

input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
    -webkit-border-radius: 0;
    border-radius: 0;
    /*background-clip: padding-box;*/
}

input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
textarea,
select {
    background-image: linear-gradient(transparent, transparent);
}

input:not([type="radio"]):not([type="checkbox"]),
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#page {
    position: relative;
    min-height: 100%;
    top: 0;
}

html {
    scrollbar-color: #703EFF #f4f5f6;
    scrollbar-width: thin;
}


::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #f4f5f6;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #703EFF;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #4F12B5;
    }




/* ==========================================================================
   Button
   ========================================================================== */
.eb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    zoom: 1;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    vertical-align: middle;
    position: relative;
    width: auto;
    height: auto;
    border: 0;
    padding: var(--padding-button-16-24);
    text-align: center;
    text-decoration: none;
    font-size: var(--font-size-button);
    font-family: pf_highway_sans_pro_mediumRg, Arial, sans-serif;
    border-radius: var(--border-radius-button);
    white-space: nowrap;
    letter-spacing: .03em;
    line-height: 1;
}
    .eb-button i {
        font-size: 18px;
        color: #fff;
    }

.eb-button--with-icon-right {
    padding-right: 16px !important;
}

.eb-button--with-icon-left {
    padding-left: 16px !important;
}

input.eb-button {
    cursor: pointer;
}

.eb-button i.icn {
    font-size: 15px;
}

.eb-button.eb-button--icn-left i.icn {
    margin-right: 5px;
}

.eb-button.eb-button--icn-right i.icn {
    margin-left: 5px;
}

.eb-button span:not(.icn) {
    font-family: pf_highway_sans_pro_mediumRg, Arial, sans-serif;
}

.eb-button i.icn {
    font-weight: bold;
}

.eb-button:hover {
    text-decoration: none;
    background-color: var(--color-purple-hover);
}

.eb-button + .eb-button {
    margin-left: 10px;
}

.eb-button--primary {
    background-color: var(--color-purple);
    color:var(--color-button-text);
}
.eb-button--link {
    padding:16px 0;
    display:flex;
    align-items:center;
    gap:8px;
    font-family: pf_highway_sans_pro_mediumRg, Arial, sans-serif;
    text-decoration:none;
}
    .eb-button--link i{
        font-size:18px;
    }
    .eb-button--link-primary {
        color: var(--color-purple) !important;
    }
.eb-button--link-dark{
    color:var(--color-purple-dark-link) !important;
}
.font-size-14 {
    font-size: 14px;
}
.font-size-16 {
    font-size: 16px;
}
.margin-top-12{
    margin-top:12px !important;
}
.eb-button--link-primary:hover {
    color: var(--color-purple-hover) !important;
    text-decoration: none;
}

.eb-button--link-primary:hover i{
    color: var(--color-purple-hover) !important;
}
    .eb-button--primary span {
        color: var(--color-button-text);
    }

    .eb-button--primary:hover {
        background-color: var(--color-purple-hover);
    }

.eb-button--orange {
    background-color: #ff8800;
}

    .eb-button--orange:hover {
        background-color: #d97400;
    }

.eb-button--red {
    background-color: #cc0000;
}

    .eb-button--red:hover {
        background-color: #a60000;
    }

.eb-button--aqua {
    background-color: #33b5e5;
}

    .eb-button--aqua:hover {
        background-color: #2a97bf;
    }

.eb-button--violet {
    background-color: #aa66cc;
}

    .eb-button--violet:hover {
        background-color: #8a53a6;
    }

.eb-button--cyan {
    background-color: #2BBBAD;
}

    .eb-button--cyan:hover {
        background-color: #1c7a71;
    }

.eb-button--yellow {
    background-color: #fbc02d;
}

    .eb-button--yellow:hover {
        background-color: #d4a226;
    }

.eb-button--purple {
    background-color: #4a148c;
}

    .eb-button--purple:hover {
        background-color: #360e66;
    }

.eb-button--white {
    background-color: #ffffff;
    color: #3c3c3c;
}

    .eb-button--white:hover {
        background-color: #f5f5f5;
        color: #3c3c3c;
    }

.eb-button--white-border {
    background-color: var(--color-white-button);
    color: #3c3c3c;
    -webkit-box-shadow: 0 0 0 1px inset #e5e5e5;
    -moz-box-shadow: 0 0 0 1px inset #e5e5e5;
    box-shadow: 0 0 0 1px inset #e5e5e5;
}

    .eb-button--white-border:hover {
        background-color: #ffffff;
        color: #3c3c3c;
        -webkit-box-shadow: 0 0 0 1px inset #b2b2b2;
        -moz-box-shadow: 0 0 0 1px inset #b2b2b2;
        box-shadow: 0 0 0 1px inset #b2b2b2;
    }

.eb-button--green-border {
    background-color: #ffffff;
    color: #703EFF;
    -webkit-box-shadow: 0 0 0 1px inset #703EFF;
    -moz-box-shadow: 0 0 0 1px inset #703EFF;
    box-shadow: 0 0 0 1px inset #703EFF;
}

    .eb-button--green-border:hover {
        background-color: #ffffff;
        color: #502CB5;
        -webkit-box-shadow: 0 0 0 1px inset #502CB5;
        -moz-box-shadow: 0 0 0 1px inset #502CB5;
        box-shadow: 0 0 0 1px inset #502CB5;
    }

.eb-button--orange-border {
    background-color: #ffffff;
    color: #ff8800;
    -webkit-box-shadow: 0 0 0 1px inset #ff8800;
    -moz-box-shadow: 0 0 0 1px inset #ff8800;
    box-shadow: 0 0 0 1px inset #ff8800;
}

    .eb-button--orange-border:hover {
        background-color: #ffffff;
        color: #d97400;
        -webkit-box-shadow: 0 0 0 1px inset #d97400;
        -moz-box-shadow: 0 0 0 1px inset #d97400;
        box-shadow: 0 0 0 1px inset #d97400;
    }

.eb-button--gray {
    background: #D8D8D8;
    color: #414042;
}

    .eb-button--gray:hover {
        background: #CCCCCC;
    }

.eb-button[disabled],
.eb-button--disabled,
.eb-button--disabled:hover {
    cursor: not-allowed;
    color: #9F9F9F;
    background: #DFDFDF;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .eb-button--disabled span {
        color: #9F9F9F;
    }

.eb-button--soldout {
    background: var(--color-soldout-background-button);
    border: var(--border-soldout-red-button);
    color: var(--color-soldout-red-button) !important;
}
    .eb-button--soldout:hover {
        cursor: not-allowed;
        background: var(--color-soldout-background-button);
    }
    /* .eb-button--soldout:after {
        content: 'Sold out';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background:var(--color-white-button);
        border: 1px solid #fc2d33;
        border-radius: var(--border-radius-button);
        color: #fc2d33;
        cursor: not-allowed;
        line-height: 34px;
    }*/
    /* .eb-button--soldout:after {
        content: 'Sold out';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background: var(--color-soldout-background-button);
        border: var(--border-soldout-red-button);
        border-radius: var(--border-radius-button);
        color: var(--color-soldout-red-button);
        cursor: not-allowed;
        line-height: var(--line-height-soldout-red-button);
    }*/
    body.en .eb-button--soldout:after {
        font-size: 80%;
    }

.eb-button--tiny {
    padding: 5px 7px 4px 7px;
    font-size: 10px;
}

.eb-button--small {
    padding: 8px 16px;
    font-size: 14px;
    line-height:1.3;
}
.eb-button--no-border {
    border: none !important;
}
.eb-button.eb-button--small i.icn {
    font-size: 14px;
}

.eb-button--large {
   /* padding: 11px 22px 10px 22px;*/
    font-size: 16px;
}

.eb-button.eb-button--large i.icn {
    font-size: 16px;
}

.eb-button--full {
    box-sizing: border-box;
    width: 100%;
}

.eb-button--notransform {
    text-transform: none;
}

.eb-button--link,
.eb-button--link:hover {
    background: none;
    color: #3f74c4;
}

.eb-button--noradius {
    border-radius: 0;
}

.eb-button--wrap {
    white-space: normal;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}


/* ==========================================================================
   Header
   ========================================================================== */

.inner {
	margin: 0 auto;
	position: relative;
	max-width: 1000px;
    width: 100%;
}

.homepage .inner {
    max-width: 1296px;
    padding: 0 24px;
}

@media (max-width: 767px) {
    .fwr-md-down {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}

.inner:before,
.inner:after {
	display: table;
	content: "";
}

.inner:after {
	clear: both;
}

.inner,
.inner:before,
.inner:after {
    box-sizing: border-box;
}

img {
	max-width: 100%;
}


/* ==========================================================================
   Navigation
   ========================================================================== */
.main-nav, .main-nav:after, .main-nav:before,
.main-nav *, .main-nav *:after, .main-nav *:before {
    box-sizing: border-box;
}

.main-nav {
    position: relative;
    display: block;
    min-height: 60px;
    width: 100%;
    font-size: 16px;
    background-color: #ffffff;
    color: #1f262d;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    -webkit-letter-spacing: 0.3px;
    -moz-letter-spacing: 0.3px;
    -ms-letter-spacing: 0.3px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    z-index: 18;
    -webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    -moz-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15)/*rgba(0, 0, 0, 0.18) 0px 1px 2px*/;
}

    .main-nav:hover,
    .main-nav:active,
    .drawer--opened .main-nav,
    .search--opened .main-nav,
    .search--focused .main-nav {
        z-index: 21;
    }

.nav--expand {
    position: fixed;
    width: 100%;
    top: 0;
}

.nav--expand-anim {
    -webkit-animation: navScrollDown .3s ease-in-out;
    animation: navScrollDown .3s ease-in-out;
}

.main-nav__inner {
    width: 100%;
    height: 60px;
    position: relative;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    z-index: 5;
}

.main-nav__logo {
    backface-visibility: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: transparent;
    height: 60px;
    -webkit-appearance: none;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 16px;
    font-weight: 600;
    flex: 0 0 auto;
    text-decoration: none;
    border-width: 0px;
    outline: 0px;
    transition: all 0.3ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}

    .main-nav__logo > h1 {
        margin: 0;
        padding: 0;
        font-size: 0;
    }

    .main-nav__logo img {
        height: 75px !important;
        width: auto;
		position: relative;
    }

.main-nav__menubar {
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
}
home-search-autocomplete .is-active {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 540px;
}



.page--loaded .main-nav__menubar {
    overflow: visible;
}

.list-container {
    position: relative;
}
.link-container__globe
{
	padding-top:10px!important;
}
.list-container__link,
.list-container__link:visited,
.list-container__link:active
.list-container__link:hover 
{
	display: flex;
    position: relative;
    text-decoration: none!important;
    outline: 0px;
    border-width: 0px;
    background-color: transparent;
    color: #1f262d;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 0 #1f262d;
    /*text-shadow: transparent 1px 0px 0px;*/
    padding: 19px 15px;
    height: 60px;
    transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: background-color 1ms linear;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
}

    .list-container__link:hover,
    .list-container--open .list-container__link {
        background-color: #f0f0f0;
        outline: 0px;
        border-bottom: 4px solid #703EFF;
    }
@media (max-width: 991px) {
    .list-container__link:hover{
        background-color:transparent;
		
    }
}
.list-container__link--active {
    border-bottom: 4px solid #703EFF;
}

html:not(.touch) .main-nav__menubar .list-container__link.list-container__link--haslist:hover:after,
.main-nav__menubar .list-container--open .list-container__link.list-container__link--haslist:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: inline-block;

}

.list-container__list {
    display: none;
	border-radius: 8px;
    top: 60px;
    right: 0;
    flex-direction: column;
    position: absolute;
    width: 205px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 4px 0px, 0 1px 17px 0 rgba(40,44,53,.1);
    overflow: hidden;
}

.list-container--open .list-container__list,
html:not(.touch) .list-container:hover > .list-container__list {
    display: block;
}

.list-container__list--radio {
    padding: 30px;
    width: 250px;
}

.list-container__list-header {
    font-size: 16px;
    display: block;
    margin: 0 0 8px 0;
    line-height: 18px;
    font-family: pf_highway_sans_pro_mediumRg, arial,sans-serif;
    font-weight: normal;
}

.list-container__list-item,
.list-container__list-item:visited,
.list-container__list-item:active
{
	height: 44px;
    line-height: 44px;
    display: block;
    color: #1f262d;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 15px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
	
}

.list-container__list-item:hover {
    height: 44px;
    line-height: 44px;
    display: block;
    color: #1f262d;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 15px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
	
}

    .list-container__list-item:hover {
        background-color: #f2f2f2;
    }

    .list-container__list-item:active {
        background-color: #e5e5e5;
    }

.list-container__list--radio .list-container__list-item {
    font-size: 15px;
    padding: 0 0 0 25px;
    height: 32px;
    line-height: 32px;
    color: #303030;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
}

.list-container__list--radio .list-container__list-item--active {
    position: relative;
    cursor: not-allowed;
}

    .list-container__list--radio .list-container__list-item--active:before {
        content: '';
        top: calc(50% - 6px);
        left: 0;
        position: absolute;
        width: 15px;
        height: 12px;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%206.8%205.2%22%20role%3D%22img%22%20aria-label%3D%22Tick%22%20fill%3D%22%231b99c3%22%3E%3Cpath%20d%3D%22M6.7.8L2.9%205c-.1.1-.3.2-.4.2-.1%200-.3-.1-.4-.2l-2-2c-.1-.2-.1-.5%200-.7s.5-.2.7%200L2.5%204%206%20.2c.2-.2.5-.2.7%200%20.2.1.2.4%200%20.6z%22%3E%3C/path%3E%3C/svg%3E");
    }

.list-container__list--radio .list-container__list-item:hover {
    background: none;
}

.main-nav__outer-menubar {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.main-nav__outer-menubar_closer {
    display: flex;
    justify-content: flex-end;
    flex: none!important;
}

.main-nav__searchbar-closer {
    display: none;
    position: relative;
    text-decoration: none;
    outline: 0px;
    border-width: 0px;
    background-color: transparent;
    color: #1f262d;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 0 #1f262d;
    /* text-shadow: transparent 1px 0px 0px; */
    padding: 19px 15px;
    height: 60px;
    transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    transition: background-color 1ms linear;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
}

.main-nav__searchbar {
    display: none;
    align-items: center;
    max-width: 382px;
    width: 100%;
    /* padding: 0 15px 0 0; */
    position: relative;
	padding-right: 4px;
	
}
.main-nav__searchbar_close {
   top:8px;
	
}

.main-nav__searchbar-input_closer{
	height:45px;
}

.main-nav__searchbar-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1;
    left: 16px;
    top: 18px;
    fill: #808080;
    fill: #777777;
}

.main-nav__searchbar > div.clear_input_div {
    width: 100%;
}

.main-nav__searchbar-input {
    padding: 15px 35px 15px 43px;
    font-size: 14px;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
    background: none;
    border: 1px #696781 solid;
    outline: 1px transparent solid;
    white-space: nowrap;
    background-color: white;
    width: 100%;
    letter-spacing: .02em;
    /*text-shadow: 0 0 black;
    -webkit-transition: border .3s cubic-bezier(.4,0,.3,1), background .3s cubic-bezier(.4,0,.3,1);
    transition: border .3s cubic-bezier(.4,0,.3,1), background .3s cubic-bezier(.4,0,.3,1);*/
    -webkit-border-radius: 24px !important;
    border-radius: 24px !important;
    color: #696781 !important;
    line-height: 16px;
}

/*.main-nav__searchbar-input::-webkit-input-placeholder {
    -webkit-transition: opacity .3s cubic-bezier(.4,0,.3,1);
    transition: opacity .3s cubic-bezier(.4,0,.3,1);
}
.main-nav__searchbar-input:-moz-placeholder {
    -moz-transition: opacity .3s cubic-bezier(.4,0,.3,1);
    transition: opacity .3s cubic-bezier(.4,0,.3,1);
}
.main-nav__searchbar-input::-moz-placeholder {
    -moz-transition: opacity .3s cubic-bezier(.4,0,.3,1);
    transition: opacity .3s cubic-bezier(.4,0,.3,1);
}
.main-nav__searchbar-input:-ms-input-placeholder {  
    -ms-transition: opacity .3s cubic-bezier(.4,0,.3,1);
    transition: opacity .3s cubic-bezier(.4,0,.3,1);
}*/

.main-nav__searchbar-input:hover {
    /*border-color: #bdbdbd;*/
    /*border-color: #d9d9d9;*/
}

.main-nav__searchbar-input:focus {
    /*border-color: #808080;*/
    /*border-color: #bdbdbd;*/
    border-color: #1f262d;
    /*background-color: #ffffff;*/
    outline: none;
    /*-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.3);*/
}

/*.main-nav__searchbar-input:focus::-webkit-input-placeholder {
    opacity:0.5;
}
.main-nav__searchbar-input:focus:-moz-placeholder {
   opacity:0.5;
}
.main-nav__searchbar-input:focus::-moz-placeholder {
   opacity:0.5;
}
.main-nav__searchbar-input:focus:-ms-input-placeholder {
   opacity:0.5;
}*/

.main-nav__searchbar .clear_input {
    text-decoration: none;
    font-size: 26px;
    color: #808080;
    color: #777777;
    left: auto!important;
    right: 10px !important;
    top: 0!important;
    bottom: 0;
    width: 38px;
    text-align: center;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav__searchbar .clear_input.loading {
    background: url("https://www.viva.gr/tickets/site/images/icons/loaders/Spinner-1s-200px.svg") no-repeat 50% 50%;
    background-size: 60px;
}

.main-nav__searchbar .clear_input.loading * {
    display: none;
}

body.search--opened:before,
body.search--focused:before {
    opacity:.5;
    pointer-events: auto;
}

.searchOpener__open {
    display: block;
    width: 32px;
    height: 32px;
}

.searchOpener__close {
    display: none;
    width: 24px;
    height: 18px;
    fill: #1f262d;
}

.main-nav__right {
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    height: 60px;
	padding-right: 8px;
}

.main-nav__right_tickets {
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    height: 60px;
	gap:8px;
	padding-right: 16px;
	flex: 1 1 auto;
}

.main-nav__right_tickets_closer {
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    height: 60px;
	gap:16px;
	padding-right: 16px;
	flex: 1 1 auto;
	display:block!important;
}

.main-nav__settings {
    height: 60px;
}

.list-container__link-icon {
    display: flex;
    position: relative;
    min-width: 22px;
    flex-flow: row;
	top:5px;
}

.main-nav__right .list-container__list {
    left: auto;
    right: 0;
}

.main-nav__right_tickets .list-container__list {
    left: auto;
    right: 0;
}

.list-container__drop-container {
    position: relative;
    background: #ffffff;
}

    .list-container__drop-container label:after {
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        color: #adaaa0;
        vertical-align: middle;
        display: flex;
        align-items: center;
        margin: 0 10px;
        pointer-events: none;
    }

    .list-container__drop {
        background-color: transparent;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        border: 1px solid #adaaa0;
        cursor: pointer;
        display: block;
        width: 100%;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        height: 40px;
        padding: 0 30px 0 15px;
    }

    .list-container__drop,
    .list-container__drop option {
        font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
    }

.main-nav__drawer {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
}

    .main-nav__drawer .list-container__link,
    .main-nav__searchlink a.list-container__link {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        height: 60px;
    }

.hamburger-icon {
    height: 18px;
    width: 20px;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.hamburger-icon__inner {
    height: 2px;
    background-color: #1f262d;
    width: 100%;
    display: block;
    border-radius: 2px;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}

    .hamburger-icon__inner:before,
    .hamburger-icon__inner:after {
        content: "";
        height: 2px;
        background-color: #1f262d;
        width: 100%;
        display: block;
        position: absolute;
        transform: rotate(0deg);
        transform-origin: right center;
        border-radius: 2px;
        left: 0px;
        transition: transform 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s, background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
    }

.drawer--opened .hamburger-icon__inner {
    background-color: transparent;
}

.hamburger-icon__inner:before {
    top: 0px;
}

.hamburger-icon__inner:after {
    bottom: 1px;
}

.drawer--opened .hamburger-icon__inner:before {
    transform: rotate(-45deg);
    left: -3px;
}

.drawer--opened .hamburger-icon__inner:after {
    transform: rotate(45deg);
    left: -3px;
}

@media (max-width: 991px) {
    body.drawer--opened {
        overflow: hidden;
    }
    .list-container__link--active {
        border-bottom: none;
    }
    .list-container__link:hover,
    .list-container--open .list-container__link {
        
        border-bottom: none;
		border-bottom: 4px solid #703EFF;
    }
    body.drawer--opened:before {
        opacity: .5;
        pointer-events: auto;
    }

    .main-nav__menubar {
        position: fixed;
        top: 60px;
        right: -100%;
        background-color: #fff;
        height: calc(100vh - 59px);
        max-width: 100vw;
        width: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0px 20px 20px rgba(0,0,0,.3), 0 1px 17px 0 rgba(40,44,53,.1);
        transition: right .5s cubic-bezier(.5,.25,.015,1);
        display: block;
    }

    .drawerOpener__open {
        display: block;
        width: 32px;
        height: 32px;
        fill: #1f262d;
    }

    .drawerOpener__close {
        display: none;
        width: 24px;
        height: 18px;
        fill: #1f262d;
    }

    .drawer--opened .drawerOpener__open {
        display: none;
    }

    .drawer--opened .drawerOpener__close {
        display: block;
    }

    .drawer--opened .main-nav__menubar {
        right: 0;
    }

    .drawer--opened #drawerOpener {
        background-color: #f0f0f0;
    }

    .drawer--opened .hamburger-icon__inner:before,
    .drawer--opened .hamburger-icon__inner:after {
        background-color: rgb(31, 38, 45);
    }

    .main-nav__menubar .list-container__link {
        display: block;
        color: rgb(31, 38, 45);
        border-top: 1px solid #f0f0f0;
        padding: 0 15px;
        height: 50px;
        line-height: 50px;
    }

    .nav--absolute .main-nav__menubar .list-container:first-child .list-container__link {
        border: none;
    }

    .main-nav__menubar .list-container__link.list-container__link--haslist:before {
        font: normal 18px FontAwesome;
        content: '\f107';
        position: absolute;
        right: 20px;
        top: calc(50% - 8px);
    }

    .main-nav__menubar .list-container--open .list-container__link--haslist:before {
        content: '\f106';
        top: calc(50% - 10px);
    }

    .main-nav__menubar .list-container__list {
        position: relative;
        top: 0;
        right: 0;
        box-shadow: none;
        width: 100%;
    }

        .main-nav__menubar .list-container__list:before {
            content: '';
            position: absolute;
            left: 25px;
            top: 0;
            bottom: 0;
        }

    .main-nav__menubar .list-container__list-item {
        padding-left: 30px;
    }

    html:not(.touch) .list-container__link:hover,
    .list-container--open .list-container__link {
        background-color: #f0f0f0;
		
    }

    .search--opened .main-nav__searchbar {
        display: flex;
        max-width: 100%;
        padding-left: 0;
		
    }

    .main-nav__searchbar-icon {}

    .search--opened .main-nav__searchbar-icon {
        left: 9px;
    }

    .search--opened .home-search-autocomplete.is-active {
        left: 0;
    }
    .home-search-autocomplete.is-active {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 540px;
    }


    .search--opened .main-nav__logo,
    .search--opened .main-nav__right{
        display: none;
    }
	
    .search--opened .main-nav__right_tickets{
        display: none;
    }
	
    .search--opened .searchOpener__open {
        display: none;
    }

    .search--opened .searchOpener__close {
        display: block;
    }

    .search--opened .main-nav__searchbar-closer {
        display: flex;
    }
}

@media (max-width: 767px) {
    .homepage .inner.fw-md-down {
        padding: 0;
    }
}

@media (min-width: 480px) {
    .main-nav__logo {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (min-width: 768px) {
    .main-nav__inner {
        margin: 0px auto;
    }

    .main-nav__logo {
        padding-right: 24px;
        padding-left: 24px;
    }

    .homepage .inner {
        padding: 0 40px;
    }
}

@media (min-width: 992px) {
    .main-nav__outer-menubar--with-seachbar {
        justify-content: space-between;
    }

    .main-nav__searchbar {
        display: flex;
        max-width: 372px;
		flex: 1;
		padding-right: 4px;
    }

    .main-nav__searchlink {
        display: none;
    }

    .main-nav__drawer {
        display: none;
    }

    .main-nav .home-search-autocomplete {
        max-width: none;
        right: -150px;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 540px;
    }
}

@media (min-width: 1200px) {
    .main-nav__searchbar {
        display: flex;
        max-width: 482px;
		padding-right: 4px;
		flex: 1;
    }
}

/* ==========================================================================
   Language Selector
   ========================================================================== */
.lang-selector-container {
	overflow: hidden;
	width: 50px;
	position: absolute;
	right: 0;
	top: 29px;
}

.lang-selector {
	white-space: nowrap;
}

.lang-selector,
.lang-selector > li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.lang-selector:before {
	content:"";
	display: inline-block;
	width: 8px;
	height: 28px;
	background-position: -1px 50%;
	margin-right: 10px;
}

.lang-selector > li {
	display: inline-block;
}

.lang-selector > li + li {
	margin-left: 10px;
}

.lang-selector-item {
	display: block;
	width: 0;
	height: 0;
	padding: 28px 28px 0 0;
	background-position: -52px 50%;
	overflow: hidden;
}

.lang-selector:before,
.lang-selector-item {
	background-repeat: no-repeat;
	background-image: url(../../images/header/sprite-flags.png);
}

.lang-selector-item.en-us {
	background-position: -244px 50%;
}

.lang-selector-item.de-de {
	background-position: -148px 50%;
}

.lang-selector-item.it-it {
	background-position: -101px 50%;
}

.lang-selector-item.ru-ru {
	background-position: -196px 50%;
}

.lang-selector-item.ja-jp {
	background-position: -291px 50%;
}

.lang-selector.expanded:before {
	background-position: -27px 50%;
}

/* ==========================================================================
   Cookie consent
   ========================================================================== */
body.cc--open {
    height: 100vh;
    overflow-y: hidden;
}

.cc-overlay {
    z-index: 10000099;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(40, 40, 40, 0.6);
    overflow: hidden;
}

.cc-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: calc(100% - 62px);
    overflow-y: auto;
    padding: 30px;
    background: rgb(255, 255, 255);
    color: #1f2539;
    font-size: 15px;
    font-family: pf_highway_sans_pro_lightRg, arial,sans-serif;
    line-height: 20px;
    border-top: 2px solid #1f2539;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 100px;
}

.cc-bar__left {
    width: 60%;
}

.cc-bar-header {
    font-size: 25px;
    font-family: pf_highway_sans_pro_mediumRg, arial,sans-serif;
    margin-bottom: 15px;
    line-height: 28px;
}

.cc-bar-body {
    font-size: 16px;
    line-height: 20px;
}

.cc-bar__right {
    width: 39%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

a.cc-link,
a.cc-link-btn {
    color: #1f2539;
    text-decoration: underline;
}

.cc-link-btn {
    font-size: 17px;
    position: relative;
}

.cc-link-btn__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-basis: 100%;
}

.cc-btn,
.cc-btn:hover,
.cc-btn:link,
.cc-btn:visited {
    padding: 13px 35px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 17px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    white-space: nowrap;
    align-self: flex-end;
}

.cc-btn + .cc-btn {
    margin-left: 30px;
}

.cc-btn--accept,
.cc-btn--accept:link,
.cc-btn--accept:visited {
    background-color: #703EFF;
    color: #ebebeb;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    text-shadow: 1px 0px rgba(31,37,57,.5);
}

.cc-btn--reject,
.cc-btn--reject:link,
.cc-btn--reject:visited {
    background-color: #703EFF;
    color: #ebebeb;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    text-shadow: 1px 0px rgba(31,37,57,.5);
}

.cc-btn--accept:hover {
    background-color: #502CB5;
}

/*.cc-btn--reject:hover {
    background-color: #d4d4d4;
}*/

.cc-break {
    flex-basis: 100%;
    height: 0;
    width: 0;
    overflow: hidden;
}

.cc-settings {
    width: 100%;
    margin-top: 30px;
    display: none;
}

.cc-type {
    border-top: 1px solid #ddd;
}

    .cc-type:hover {
        background-color: #eee;
    }

.cc-type__title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
}

    .cc-type__title:before {
        content: '';
        border: solid #1f2539;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        position: absolute;
        top: 20px;
    }

    .cc-type__title.acc--open:before {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        top: 23px;
    }

.cc-type__content {
    display: none;
    background-color: #fff;
    padding: 15px 20px 25px 20px;
}

    .cc-type__content p {
        margin-bottom: 15px;
        font-size: 16px;
    }

.cc-type__title h2 {
    font-family: pf_highway_sans_pro_mediumRg, arial,sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: #1f2539;
    display: inline;
    margin: 0 0 0 19px;
}

.cc-type__title .cc-type-check {
    float: right;
    position: relative;
    padding-right: 30px;
    height: 25px;
    line-height: 25px;
}

.cc-type__title.acc--open {
    background-color: #ededed;
}

.cc-type__title label {
    cursor: pointer;
    display: block;
}

    .cc-type__title label:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 20px;
        background: #fff;
        border-radius: 2px;
        display: block;
        border: 2px solid #dedede;
    }

.cc-type__title input:checked + label:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 4px;
    width: 13px;
    height: 6px;
    background: transparent;
    border-bottom: 3px solid #703EFF;
    border-left: 3px solid #703EFF;
    display: block;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cc-type__title input {
    display: none;
}

    .cc-type__title input[disabled] + label {
        cursor: not-allowed;
    }

        .cc-type__title input[disabled] + label:after {
            border-color: #ccc;
        }

.cc-items {
    border: 1px solid #ddd;
    border-top: none;
}

.cc-item {
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    /*-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}

    .cc-item > div {
        display: flex;
        flex-direction: column;
        /*flex-basis: 100%;
        flex: 1;*/
        justify-content: center;
        padding: 10px 15px;
    }

        .cc-item > div:last-of-type{
            align-items: flex-end;
            flex-grow: 1;
        }

        .cc-item:nth-child(odd) {
            background-color: #f5f5f5;
        }

    .cc-item__title {

    }

    .cc-item__title h3 {
        font-family: pf_highway_sans_pro_mediumRg, arial,sans-serif;
        font-weight: normal;
        font-size: 18px;
        color: #444;
        display: inline;
        margin: 0;
    }

.cc-cookie {
    display: flex!important;
    align-items: center;
}

    .cc-cookie svg {
        margin: 0 7px 1px 9px;
    }

@media (max-width: 480px) {
    .cc-type__title h2 {
        display: inline-block;
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .cc-bar {
        padding: 20px;
        max-height: calc(100% - 42px);
    }

    .cc-btn,
    .cc-btn:link,
    .cc-btn:visited {
        width: 100%;
        margin: 0;
    }

    .cc-btn + .cc-btn {
        margin-top: 20px;
    }

    .cc-link-btn {
        margin-top: 20px;
    }

    .cc-item__title {
        min-width: 100%;
    }

    .cc-item > div + div {
        padding-top: 0;
    }

    .cc-cookie {
        font-size: 0;
    }
}

@media (min-width: 768px) {
    .cc-item > div {
        flex-basis: 100%;
        flex: 1;
    }
}

@media (max-width: 800px) {
    .cc-cookie {
        margin-left: -35px!important;
    }

    .cc-cookie svg {
        margin-right: 10px;
    }
}

@media (max-width: 1280px) {
    .cc-bar__left,
    .cc-bar__right {
        width: 100%;
    }

    .cc-bar__right {
        padding-top: 20px;
    }

    .cc-link-btn {
        margin-top: 20px;
    }
}


/* GDPR */
.outer-chk {
    display: block;
    position: relative;
    margin-top: 20px;
}

    .outer-chk * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

.outer-chk.disabled {
    opacity: .5;
}

.outer-chk.invalid {
    color: red;
}

/*.outer-chk input[type="checkbox"]:not(.onlyone) ~ label:before {
    content: '';
    display: inline-block;
    color: red;
    vertical-align: top;
    width: 10px;
    line-height: 5px;
    margin-top: 9px;
}*/

.outer-chk input[type="checkbox"][isrequired] ~ label:before {
    content: '*';
}

.outer-chk.invalid .cbx span:first-child {
    border-color: red !important;
}

.outer-chk + .outer-chk {
    margin-top: 10px;
}

.outer-chk ~ .outer-chk {
    margin-top: 10px;
}

.cbx:before {
	content: '*';
	visibility: hidden;
}
		
.outer-chk.chk-mandatory .cbx:before {
    content: '*';
    color: red;
    vertical-align: top;
	visibility: visible;
}

    .outer-chk.chk-mandatory ~ .outer-chk:not(.chk-mandatory) .cbx:before {
        content: '*';
        visibility: hidden;
    }


    .cbx {
        margin: auto;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
		
    }

.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
    line-height: 1.4;
}

.cbx span:first-child {
    position: static;
    width: 16px;
    height: 16px;
    border-radius: 0px;
    transform: scale(1);
    vertical-align: top;
    border: 1px solid #adaaa0;
    background: #ffffff;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: all 0.2s ease;
    margin-left: 4px;
    margin-right: 4px;
}

.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #555;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

body.Gecko60 .cbx span:first-child svg,
body.Gecko11 .cbx span:first-child svg,
body.ie10 .cbx span:first-child svg,
body.ie9 .cbx span:first-child svg,
body.ie8 .cbx span:first-child svg,
body.ie7 .cbx span:first-child svg {
    stroke-linecap: inherit;
}

.cbx span:last-child {
    padding-left: 3px;
    white-space: normal;
    width: calc(100% - 43px);
    margin-left: 0;
    color: var(--color-purple-dark-link);
    font-family: pf_highway_sans_pro_mediumRg,Arial,sans-serif;
}

.outer-chk label[for] {
    display: flex;
    align-items: center;
}

.cbx span:last-child a {
    color: var(--color-purple-dark-link);
}

    .cbx span:last-child ul,
    .cbx span:last-child ol {
        margin: 0 0 0 1.8em;
    }

    .cbx:hover span:first-child {
        border-color: #555;
    }

.inp-cbx:checked + .cbx span:first-child {
    border-color: #555;
    animation: wave 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

@keyframes wave {
    50% {
        transform: scale(1);
    }
}

.outer-chk.cnsntNewsletter {
    border-bottom: 1px solid #ea1d8f;
    padding: 20px 0 2px 0;
    display: inline-block;
}

.outer-chk.cnsntNewsletter:after {
    content: ' ';
    width: 100%;
    border-bottom: 1px solid #92278f;
    display: block;
    font-size: 0;
    height: 1px;
    margin-top: 4px;
}

.outer-chk.cnsntNewsletter .cbx span:last-child {
    padding-left: 45px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAVCAYAAADID4fUAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAVzSURBVHjatJZpbBVVFMfPLG+jfWwtpbZBxSCkYDVRKSgYFIgYFMQqQZYIkcXEaCSY+sEEsEFJ8IOJRtRYXGqAsIgoEUjADQKoYPwAAkKw2ChRoi19bXl9y8xcf3feLWlD/ICpk/xzZ+7cOfd/zv+cc8fyFqwUR/nSlBgmGTsuoy+fFd9yRYkl3ZdvOeKLLb7tSJ53eSsSjh7zeTsiOZ5zerSjPe71fBSbUT1/L+NjWStam3Fipz1x7rdF+crYd+X/u24Bi8FzwOoxf11g2XMDkY3dk3Yfb1wBXgDN4ISIWs5Ge/F4mQ4o2GeJalKWVR9G17JD9AUJbeMR8CW4ANaBJJutIQDXB2I/yPME4BCPaYyvg5vYvKwvSGjDG42Hn4DJoAGMQ+/BbL4qb7u/EY2XmFvoqGCupZR44u6AoPC+jtzgY+eaSYw2nnaCQ2A+2ANmGN2X2So4mifUOiG5r7YlWI0cu2JBdgsykKTuBTj8zOoVAeuCnpGAmcSCHDd5zF3FTW/2GThpNMdDWQ4GAB3uzyVkoYTsly6qLKLwWXlfK7G9aODN0rZ1tXhUDwvrWWojxT295IiqvFyMlaKwK46fDk1itIibYybsM8EBcCuoMtq2d3+vCegyztgxCOSFjRsp8xJUL7OtQKWdfuEa5IGIux3JdBuo12V+hUTSvyznEjfI7iFTUbkLpTw9nQB3ms1awSTwPfgW1Ju8CCtNFUhLIshIJPCm8fwErzKMI7JWLJomQkgiRUEXlh0/sKwv+Ow+csLtFffSfKvsKp0iJwfW8PlFUZbzN9OnQAZUgicxvI/xDrDK5AUlL5vAU5AY6QYe3qs9bNLCXAoSR5nPkpifIvkcCCZ11Lmv1ezJiflXSGhPYiqHJzlpqKiVbLxc3HxKL6rjdRmGRthKfcC6WQQ1yvPNYCnvNoB54B0InsGwJm6TlLdhVRN/HOwCD4MtkGsnHY/wfgp22rBX1ysSsBtTmmuZ1BwvksbKeaKz2VHenpCkZW8m08PcscMSs87Rujdg5MWCE/IawyLGnTzNIS8uQJLytbYaApaJYB1rihl3MjGQcUw3iVFaa+r4JxJlfwkFcmBAlTQVV4nj6WqUj0E1iZeIoqvWPu0kQpKWBE0YzbrKf95SfiN76TBv0+VX2Ff19PNHsBuc6zH3vm0XMrZUdzE+Ws84Votcks9KMckqlBQr1kghmxcHUjjMdFTQdx1zxdiYHkdGdIdYQdp870NwIthsGJ0yfeVVUKPPF1d3rYifPjxYLg2J46X+sDkuMvuvX2Ro6rgEiUq2c46LUl3KlpU0oje1h9EgX8la3TN2Evqv9AnqcXKSN2EAiJZubAvBs6bKxDS29Wa8crkZJy5nioZLyklKh1uMIVfGt/8h1Z1n5PSgcVLV1SwRydLp4q9YSl5GLhqUSuH1/rzuKcqv1QR0h2T7/ticYzauNnucBW+B90ynvfrwoavJr/2GyZbyGbK1bLKU5VqkvqlB+nsdsqlytuwomy4R8gIR3igkqLUUL3V4q8ihsSo8hJyZRIATUlLMvwuGg7WmqY0yja3z384C/T9xd9LrXDHIS7WdKCpdUtPui+t3hq23IvOnbB86QYZnfpfbW490ZOMVhwpnR6j1efAAkhyzjARcHxVKNWxm13QMH3aUerTNSbqVWZGpLd9IjhZLf0gk/MySeCC1G8sfko7oEEn4XWutwje28XaN6aALTCksvFYC3STuuuzEb4yIv2j1+Q9lZNsPNa3RQfpASkOkoSSXrj2bKJIDJRMl6nXuZf5tRNHjM6aLjjcd8z9fWo7vWt2BMq3loIy8dEQkXj6L8OqTcZvOZPrAQaIhl9wkvur6U0/3+lnrg+sfAQYANW0vUe+ptdYAAAAASUVORK5CYII=');
    background-position: 5px top;
    background-repeat: no-repeat;
    /*width: calc(100% - 70px);*/
    color: #004a8b;
    font-weight: bold;
    font-family: Arial,sans-serif;
    font-size: 13px;
    min-height: 21px;
    line-height: 20px;
}

span.cbx-badge {
    font-size: 80%;
    font-family: pf_highway_sans_pro_mediumRg,Arial,sans-serif;
    text-transform: uppercase;
    padding: 0 5px;
    height: 18px;
    line-height: 20px;
    color: black !important;
    position: absolute;
    white-space: nowrap;
    letter-spacing: 0;
    background: #ffdd40;
    border-radius: 2px;
    left: 25px;
}

.cbx span.cbx-label--withbadge:last-child {
    margin-left: 61px;
    width: calc(100% - 82px);
}

/* ==========================================================================
   Countdown promo
   ========================================================================== */
.countdown-popup {
    display: block;
    margin: 0;
    bottom: 100px;
    right: 24px;
    left: auto;
    max-width: 344px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
    font-size: 18px;
    padding: 24px 16px;
    position: fixed;
    border-radius: 10px;
    background-color: #ffffff;
    color: #666666;
    box-sizing: border-box;
    font-family: pf_highway_sans_pro_lightRg,Arial,sans-serif;
    z-index: 998;
    line-height: 1.45;
    text-align: center;
    overflow: hidden;
}

.countdown-popup__message {
    margin-bottom: 10px;
}

.countdown-popup__timer {
    margin: 0 0 10px 0;
    padding: 0;
}

.countdown-popup__timer-section {
    display: inline-block;
    font-size: 14px;
    list-style-type: none;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
}

.countdown-popup__img {
    border-radius: 6px;
    margin-bottom: 10px;
}

.countdown-popup__title {
    font-family: pf_highway_sans_pro_mediumRg,Arial,sans-serif;
    font-weight: normal;
    color: #666666;
    font-size: 22px;
    margin: 0 0 10px 0;
}

.countdown-popup__datepart {
    display: block;
    font-size: 25px;
    font-family: pf_highway_sans_pro_mediumRg,Arial,sans-serif;
}

.countdown-popup__close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 13px 16px;
    color: #858585;
    text-decoration: none !important;
    font-family: pf_highway_sans_pro_mediumRg,Arial,sans-serif;
    font-size: 22px;
    line-height: 1;
    background-color: #ffffff;
    border-radius: 6px;
}

    .countdown-popup__close:hover {
        color: #000;
    }

.countdown_effects_open {
    opacity: 0;
    -webkit-transform: translate(100%);
    -ms-transform: translate(100%);
    transform: translate(100%);
    -webkit-animation: right_anim_in 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: right_anim_in 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.countdown_effects_close {
    -webkit-animation: right_anim_out 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: right_anim_out 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes right_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1;
    }
}

@keyframes right_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1;
    }
}

@-webkit-keyframes right_anim_out {
    100% {
        -webkit-transform: translate(100%);
        transform: translate(100%);
        opacity: 0;
    }
}

@keyframes right_anim_out {
    100% {
        -webkit-transform: translate(100%);
        transform: translate(100%);
        opacity: 0;
    }
}

@-webkit-keyframes navScrollDown {
	0% {
		-webkit-transform: translateY(-110%);
		transform: translateY(-110%)
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@media (max-width: 999px) {
    .countdown-popup {
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 479px) {
    .countdown-popup {
        left: 10px;
        max-width: 100%;
        min-width: 305px;
    }
}

.ui-dialog {
    border: 0;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 12px 15px 0 rgba(0,0,0,.25);
    padding: 20px;
    box-sizing: border-box;
}

.ui-dialog .ui-dialog-titlebar {
    border: 0;
    background: none;
    color: #1f262d;
    font-family: pf_highway_sans_pro_mediumRg, arial, sans-serif;
    font-weight: normal;
    font-size: 20px;
    padding: 0;
}

.ui-dialog .ui-dialog-titlebar > span {
    margin: 0;
}

.ui-dialog .ui-dialog-content {
    padding: 15px 0 20px!important;
    font-family: pf_highway_sans_pro_lightRg, arial, sans-serif;
    font-size: 16px!important;
}

.ui-dialog .ui-dialog-content strong,
.ui-dialog .ui-dialog-content b {
    font-family: pf_highway_sans_pro_mediumRg, arial, sans-serif;
    font-weight: normal;
}

.ui-dialog .ui-dialog-buttonpane {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    display: block;
}

.ui-dialog .ui-dialog-buttonset {
    float: none;
    min-width: 100%;
    display: flex;
    align-items:flex-end;
    justify-content:flex-end;
}

.ui-dialog .ui-dialog-buttonpane button {
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    zoom: 1;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    vertical-align: middle;
    position: relative;
    padding:8px 16px;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    font-family: pf_highway_sans_pro_lightRg, Arial, sans-serif;
    text-transform: capitalize;
    border-radius: var(--border-radius-button);
    white-space: nowrap;
    letter-spacing: .03em;
    line-height: 1;
    font-weight: normal;
    background: #ffffff;
    color:#181818;
}


    .ui-dialog .ui-dialog-buttonpane button:last-of-type {
        margin-right: 0;
        color: #fff;
        background-color: var(--color-purple);
        border: none !important;

    }

    .ui-dialog .ui-dialog-buttonpane button:last-of-type:hover {
        background-color: var(--color-purple-hover);
        color: #ffffff;
    }

.ui-dialog .ui-dialog-buttonpane .ui-button span {
    padding: 0;
}

.ui-dialog .ui-dialog-titlebar-close {
    width: 26px;
    height: 26px;
    background:#aaa;
    opacity: .6;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0;
    border-radius: 50%;
    top: -2px;
    right: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border:none!important;
}

.ui-dialog.ui-dialog--no-close .ui-dialog-titlebar-close {
    display: none!important;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
    border:none;
    opacity:1;
}

.ui-dialog .ui-dialog-titlebar-close > span {
    height: 18px;
    width: 18px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z'%3E%3C/path%3E%3Cpath d='M0 0h24v24h-24z' fill='none'%3E%3C/path%3E%3C/svg%3E");
    background-position: 0 0;
}

@media (min-width: 768px) {
  .ui-dialog {
    min-width: 420px;
  }
}

.powered-by-more-logo {
    max-width: 204px;
}

.powered-by-anchor {
    height: 36.78px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 32px;
}

.powered-by-seperator {
    width: 2px;
    height: 40px;
    border: 1px solid white;
    margin-right: 16px;
    border-radius: 8px;
}