@charset "utf-8";
/* CSS Document */

/**********************************************************************************************************************************/
/***********Sky Tabs************/
/**********************************************************************************************************************************/


/******** tour info tabs ********/
/*module wrapper*/
.sky-tab-wrapper {
	min-width: 200px;
	max-width: 510px;
	margin: 0 auto;
	border-radius: 15px;
	box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.2);
}

/*all tabs wrapper*/
.sky-tabs {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 0 !important;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	background-color: rgba(var(--tour-transprimar-color), 0.6); /*module background*/
}

/*single tab wrapper*/
.sky-tabs > li {
	transition-duration: .25s;
	display: table-cell;
	list-style: none;
	text-align: center;
	padding: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 17px;
	opacity: .4;
}

.sky-tabs > li:hover {
	opacity: 1;
}


/*inactive tab hover element*/
.sky-tabs > li:before {
	z-index: -1;
	position: absolute;
	content: "";
	width: 100%;
	height: 120%;
	top: 0;
	left: 0;
	background-color: rgba(var(--tour-transprimar-color), 0.5); /*tab hover element color*//*insert variable*/
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition-duration: .25s;
	border-radius: 15px 15px 0 0;
}


/*hover over inactive tabs*/
.sky-tabs > li:hover:before {
	-webkit-transform: translateY(73%);
	transform: translateY(73%);
}

/*active tab text color*/
.sky-tabs > li.active {
	color: #FFFFFF;
	opacity: 1;
}

/*active tab background color*/
.sky-tabs > li.active:before {
	transition-duration: .5s;
	background-color: var(--tour-primary-color); /*insert variable*/
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*Tour info tab title*/
.sky-tabs-label {
	display: inline-block;
	margin-top: 3px;
}


/*Tour info tab title on mobile*/
.sky-tabs-label-mob {
	display: inherit;
	padding: 5px 0px 15px 0px;
	text-align: center;
	font-weight: 700;
	font-size: 17px;
}

/*tab icon*/
.sky-tabs-icon img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 30px;
	/*opacity: 0.8;*/
}

/*tab icon background*/
.sky-tabs-icon {
    /*background-color: blue;*/ /*insert variable*/
    /*border-radius: 50%;*/
    /*border: 2px solid red;*/ /*insert variable*/
    /*height: 35px;*/
    /*width: 35px;*/
    margin: 0 auto;
    position: relative;
    transition: all .25s linear;
}

/*tab icon background hover*/
.sky-tabs-icon:hover {
    /*background-color: purple;*/ /*insert variable*/
    /*border-color: yellowgreen;*/ /*insert variable*/
}

/*tab icon background active*/
.sky-tabs li.active .sky-tabs-icon {
    /*background-color: pink;*/ /*insert variable*/
    /*border-color: red;*/ /*insert variable*/
    /*box-shadow: 0 2px 4px rgba(56, 142, 60, 0.4);*/ /*insert variable*/
}

/*tab icon hover*/
.sky-tabs-icon img:hover {
	/*opacity: 1;*/
}

/*tab icon active*/
.sky-tabs li.active .sky-tabs-icon img {
	opacity: 1;
}


.sky-tabs-text {
	color:#ffffff;
}

/*all tab content container wrapper*/
.sky-tab-content {
	background-color: var(--tour-primary-color);
	position: relative;
	width: 100%;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}


/*tab content container*/
.sky-tab-content > li {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	list-style: none;
	padding: 0 !important;
}

/*tab content wrapper*/
.sky-tab-content > li .sky-tab-content-wrapper {
	background-color: var(--tour-primary-color);
	text-align: left;
	width: 100%;
	padding: 20px 20px 20px 35px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

/*no use*/
.sky-tab-content-wrapper h2 {
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
	font-weight: 300;
}

/*no use*/
.sky-tab-content-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

@media only screen and (min-width: 525px) {
	.sky-tabs-label-mob {
		display: none !important;
	}
}

@media only screen and (max-width: 525px) {
	.sky-tabs-label {
		display: none !important;
	}
}