/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

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

/* mouse grab icon */
.grabbing { 
    cursor:url(css/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 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;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* 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;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* 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(css/AjaxLoader.gif) no-repeat center center
}/*!
 * Beauty Line Icons
 * ------
 * author: http://kl-webmedia.com/
 * url: http://graphicriver.net/item/beauty-line-icons/6954442
 */

@charset "UTF-8";

@font-face {
  font-family: "beauty-line-icons"; 
  src:url("fonts/beauty-line-icons.eot");
  src:url("fonts/beauty-line-iconsd41d.eot?#iefix") format("embedded-opentype"),
    url("fonts/beauty-line-icons.woff") format("woff"),
    url("fonts/beauty-line-icons.ttf") format("truetype"),
    url("fonts/beauty-line-icons.svg#untitled-font-7") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-klico]:before {
  font-family: "beauty-line-icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="klico-"]:before,
[class*=" klico-"]:before {
  font-family: "beauty-line-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.klico-anchor:before {
  content: "a";
}
.klico-arrow-down:before {
  content: "b";
}
.klico-arrow-left:before {
  content: "c";
}
.klico-bag:before {
  content: "d";
}
.klico-brush-2:before {
  content: "e";
}
.klico-arrow-up:before {
  content: "f";
}
.klico-book:before {
  content: "g";
}
.klico-brush:before {
  content: "h";
}
.klico-camera:before {
  content: "i";
}
.klico-cancel:before {
  content: "j";
}
.klico-cart:before {
  content: "k";
}
.klico-cart-accept:before {
  content: "l";
}
.klico-cloud-upload:before {
  content: "m";
}
.klico-cloud-download:before {
  content: "n";
}
.klico-cloud-cancel:before {
  content: "o";
}
.klico-cloud-accept:before {
  content: "p";
}
.klico-cloud:before {
  content: "q";
}
.klico-close:before {
  content: "r";
}
.klico-clock:before {
  content: "s";
}
.klico-check:before {
  content: "t";
}
.klico-chat-02:before {
  content: "u";
}
.klico-chat-01:before {
  content: "v";
}
.klico-cart-plus:before {
  content: "w";
}
.klico-cart-minus:before {
  content: "x";
}
.klico-cart-cancel:before {
  content: "y";
}
.klico-compass:before {
  content: "z";
}
.klico-connect:before {
  content: "A";
}
.klico-code:before {
  content: "B";
}
.klico-download:before {
  content: "A";
}
.klico-drop:before {
  content: "C";
}
.klico-flag:before {
  content: "D";
}
.klico-mouse:before {
  content: "E";
}
.klico-light:before {
  content: "F";
}
.klico-mustache:before {
  content: "G";
}
.klico-phone:before {
  content: "H";
}
.klico-plus:before {
  content: "I";
}
.klico-pocket:before {
  content: "J";
}
.klico-diamond:before {
  content: "K";
}
.klico-connect:before {
  content: "K";
}
.klico-diamond:before {
  content: "L";
}
.klico-lightning:before {
  content: "M";
}
.klico-layers:before {
  content: "N";
}
.klico-laptop:before {
  content: "O";
}
.klico-music:before {
  content: "P";
}
.klico-navigation:before {
  content: "Q";
}
.klico-page:before {
  content: "R";
}
.klico-page-accept:before {
  content: "S";
}
.klico-like:before {
  content: "T";
}
.klico-link:before {
  content: "U";
}
.klico-page-add:before {
  content: "V";
}
.klico-page-arrow-double-left:before {
  content: "W";
}
.klico-location:before {
  content: "X";
}
.klico-education:before {
  content: "Y";
}
.klico-excplanation:before {
  content: "Z";
}
.klico-luck:before {
  content: "0";
}
.klico-gameplay:before {
  content: "1";
}
.klico-heart:before {
  content: "2";
}
.klico-images:before {
  content: "3";
}
.klico-info:before {
  content: "4";
}
.klico-minus:before {
  content: "5";
}
.klico-map:before {
  content: "6";
}
.klico-mail:before {
  content: "7";
}
.klico-magnify:before {
  content: "8";
}
.klico-page-arrow-left:before {
  content: "9";
}
.klico-page-arrow-double-right:before {
  content: "!";
}
.klico-page-arrow-right:before {
  content: "9";
}
.klico-page-arrow-left:before {
  content: "\"";
}
.klico-recorder:before {
  content: "#";
}
.klico-quote-mark:before {
  content: "$";
}
.klico-puzzle:before {
  content: "%";
}
.klico-squared-cancel:before {
  content: "&";
}
.klico-squared-check:before {
  content: "'";
}
.klico-squared-plus:before {
  content: "(";
}
.klico-repeat-endless:before {
  content: "(";
}
.klico-repeat:before {
  content: ")";
}
.klico-page-code:before {
  content: "*";
}
.klico-page-delete:before {
  content: "+";
}
.klico-paperclip:before {
  content: ",";
}
.klico-reply:before {
  content: "-";
}
.klico-repeat-round:before {
  content: ".";
}
.klico-step-back:before {
  content: "/";
}
.klico-tag:before {
  content: ":";
}
.klico-star:before {
  content: ";";
}
.klico-squared-plus:before {
  content: "<";
}
.klico-squared-minus:before {
  content: "=";
}
.klico-view:before {
  content: ">";
}
.klico-user:before {
  content: "?";
}
.klico-upload:before {
  content: "@";
}
.klico-unlimited:before {
  content: "[";
}
.klico-umbrella:before {
  content: "]";
}
.klico-speaker-on:before {
  content: "^";
}
.klico-speaker-off:before {
  content: "_";
}
.klico-trash:before {
  content: "`";
}
.klico-tie:before {
  content: "{";
}
.klico-sidebar:before {
  content: "|";
}
.klico-plane:before {
  content: "}";
}
.klico-settings:before {
  content: "~";
}
.klico-thumbs-down:before {
  content: "\e000";
}
.klico-science:before {
  content: "\e001";
}
.klico-pencil:before {
  content: "\e002";
}
.klico-paperplane:before {
  content: "\e003";
}
.klico-rocket:before {
  content: "\e004";
}
.klico-tape:before {
  content: "\e005";
}
.klico-thumbs-up:before {
  content: "\e006";
}
.klico-arrow-right:before {
  content: "\\"; /* content: "\e007"; */
}.tcg-popup * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 1.6em;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.tcg-hide {
    display: none!important;
}

.tcg-popup {
    border: 1px solid #ddd;
    width: 400px;
    padding: 25px;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
       -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
            box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    position: fixed;
    background: #fff;
    -webkit-transition: opacity .6s, -webkit-transform .5s;
    transition: opacity .6s, -webkit-transform .5s;
    -o-transition: opacity .6s, -o-transform .5s;
    -moz-transition: transform .5s, opacity .6s, -moz-transform .5s;
    transition: transform .5s, opacity .6s;
    transition: transform .5s, opacity .6s, -webkit-transform .5s, -moz-transform .5s, -o-transform .5s;
}

.tcg-popup.tcg-popup--show {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
}

.tcg-popup--bottom-right {
    bottom: 70px;
    right: 20px;
    -webkit-transform: translate3d(120%, 0, 0);
       -moz-transform: translate3d(120%, 0, 0);
            transform: translate3d(120%, 0, 0);
    opacity: 0;
}

.tcg-popup__close-button {
    border: none;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
    background: #fff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .6);
       -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .6);
            box-shadow: 0 0 3px rgba(0, 0, 0, .6);
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    font-family: Helvetica, Arial, sans-serif;
}

.tcg-popup__content h3 {
    color: #999;
    margin-bottom: 20px;
}

.tcg-popup__success-message {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100px;
}

.tcg-popup__success-message p {
    font-size: 30px;
    color: #999;
}

.tcg-popup__input {
    display: block;
    width: 100%;
    padding: 5px;
    border: 2px solid #aaa;
}

.tcg-popup__error {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #da1305;
    margin-bottom: 20px;
}

.tcg-popup__label {
    font-size: 14px;
    font-weight: bold;
    color: #17824d;
}

.tcg-popup__button {
    border: none;
    padding: 5px 20px;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    background: #17824d;
    color: #fff;
    cursor: pointer;
}

.tcg-popup__loading {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, .5);
    display: none;
}

.tcg-popup__loading:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    border-top: 5px solid #17824d;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #17824d;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-animation: rotate 1s linear infinite;
       -moz-animation: rotate 1s linear infinite;
         -o-animation: rotate 1s linear infinite;
            animation: rotate 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

@-webkit-keyframes rotate {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-moz-keyframes rotate {
    0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

@-o-keyframes rotate {
    0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes rotate {
    0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); }
}
#cookie-consent {
    background: #222222;
    opacity: 0.95;
    color: white;
    font-size: 15px;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: none!important;
    z-index: 1500;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
       -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
            box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cookie-consent-message a {
    opacity: 0.8;
}

.cookie-consent-message {
    margin-right: 10px;
}

.cookie-consent-web-apps {
    left: 0px;
    width: 670px;
}

.cookie-consent-web-apps-full-width {
    position: fixed;
    left: 0px;
    bottom: 0px;   
    width: 100%;
    height: 70px;
}

.cookie-consent-width-785 {
    position: absolute;
    left: 50%;
    width: 785px;
    margin-left: -396px;
}

.cookie-consent-message a:link, 
.cookie-consent-message a:visited, 
.cookie-consent-message a:hover { 
    color: white; 
    font-weight: normal;
} 

.cookie-consent-button {
    text-decoration: none;
    padding: 7px 25px;
    background: #f1d600;
    color: #000!important;
    margin-left: auto;
    white-space: nowrap;
    font-weight: bold;
}

.cookie-consent-button:hover {
    background: #fffc26;
}
