/*-----------------------------------------------------------*\
	GENERAL
\*-----------------------------------------------------------*/




/*-----------------------------------------------------------*\
	INTRO
\*-----------------------------------------------------------*/

.pr_intro .pr_intro_text span {
	
	display: inline-flex;
	padding: 2px 4px; 
	border-radius: 4px;
	background: #f5f5f5;  
	font-size: 12px;
	color: #3d3935;
	text-transform: uppercase;
	cursor: pointer;
	align-items: center;
	
}

.pr_intro .pr_intro_text span::after {
	
	content: '\f35d';
	font-family: 'Font Awesome 5 Free';
	font-size: 0.9em;
	font-weight: 900;
	color: #3d3935;
    padding-left: 5px;
	margin-bottom: 2px;
	
}

/*-----------------------------------------------------------*\
	VIDEO
\*-----------------------------------------------------------*/

.pr_hero_video-play-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
}


/*-----------------------------------------------------------*\
	CONDITIONS
\*-----------------------------------------------------------*/

.pr_conditions ul {
	
	list-style: none;
	
}

.pr_conditions li {
	
	position: relative;
	
}

/*.pr_conditions li::before {
	
	content: '\f192';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #3d3935;
    font-size: 0.7em;
	position: absolute;
    left: -20px;
    top: 0;
	
}*/



/*-----------------------------------------------------------*\
	BANNER FLIGHT + HOTEL
\*-----------------------------------------------------------*/

.pr_banner-flight-hotel a {
	display: block;
	width: 100%;
}

.pr_promocode_icon-copy .elementor-icon {
	cursor: pointer;
}


/*-----------------------------------------------------------*\
	PROMOCODE: Button
\*-----------------------------------------------------------*/

.pr_promocode-form_button .elementor-button {
	
	cursor: pointer;
	
}


/*-----------------------------------------------------------*\
	PROMOCODE: Popup
\*-----------------------------------------------------------*/

.pr_promocode-form_popup {
		
	/*display: none;*/
	position: fixed;
	top: 100vh;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: #00000085;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	
}

.pr_promocode-form_popup.show {
	
	opacity: 1;
	top: 0;
	z-index: 999;
	
}

.pr_promocode-form_popup .pr_promocode-form_popup_message {
	
	position: relative;
	top: 50%;
	max-width: 940px;
	margin: 0 auto;
	padding: 18px 20px 4px 20px;
    border-radius: 14px;
	background-color: white;
	transform: scale(0, 0) translateY(-50%);
	transition: .3s ease-in-out;
	z-index: 3;
	
}

.pr_promocode-form_popup.show .pr_promocode-form_popup_message {

	transform: scale(1, 1) translateY(-50%);
	
}


/*-----------------------------------------------------------*\
	PROMOCODE: Popup > Close
\*-----------------------------------------------------------*/

.pr_promocode-form_popup_close {
	
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	
}

.pr_promocode-form_popup_close::before,
.pr_promocode-form_popup_close::after {
	
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background-color: black;
	border-radius: 999px;
	transform-origin: center;
	
}

.pr_promocode-form_popup_close::before {
	
	transform: translate(-50%, -50%) rotate(45deg);
	
}

.pr_promocode-form_popup_close::after {
	
	transform: translate(-50%, -50%) rotate(-45deg);
	
}


/*-----------------------------------------------------------*\
	PROMOCODE: Popup > Content
\*-----------------------------------------------------------*/

.pr_promocode-form * {
	
	font-family: "Abhaya Libre";;
	
}

.pr_promocode-form h3 {
	
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
	
}

.pr_promocode-form_content {
	
	display: flex;
	flex-wrap: wrap;
	row-gap: 12px;
	column-gap: 12px;
	margin-bottom: 0 !important;
	
}

.pr_promocode-form_content > div {
	
	width: 100%;
	
}

.pr_promocode-form_content > div > p {
	
	line-height: 20px;
	
}

.pr_promocode-form_content p {
	
	margin-bottom: 0;
	
}

.pr_promocode-form_content .pr_promocode-form_content_first-name,
.pr_promocode-form_content .pr_promocode-form_content_last-name,
.pr_promocode-form_content .pr_promocode-form_content_country,
.pr_promocode-form_content .pr_promocode-form_content_question {
	
	/*flex: 1 1 50%;*/
	width: calc(50% - 6px);
	
}

.country-select.inside input, .country-select.inside input[type=text] {
	
    padding-left: 40px;
	
}

.pr_promocode-form_content .wpcf7-not-valid-tip {
	
    font-size: 14px;
	margin-top: 3px;
	margin-left: 5px;
	
}

.pr_promocode-form_content input,
.pr_promocode-form_content select {
	
	border: 1px solid #666;
	border-radius: 7px;
	font-size: 14px;
	font-style: normal;
	background-color: #ffffff;
	
}

.pr_promocode-form_content input:not([type=submit]):focus, 
.pr_promocode-form_content select:focus, 
.pr_promocode-form_content textarea:focus {
	
	border: 1px solid #3E4343;
	
}

.pr_promocode-form_content .country-select .flag-dropdown,
.pr_promocode-form_content .country-select .selected-flag {
	
	width: 100%;
	
}

.pr_promocode-form_content .country-select .selected-flag .arrow {
	
    right: 12px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
	transition: all 0.2s ease-in-out;
	
}

.pr_promocode-form_content .country-select .country-list span {
	
	font-style: normal;
	font-size: 14px;
	
}

.pr_promocode-form_content select.wpcf7-select {
	
	-webkit-appearance: none;  /* Safari/Chrome */
	-moz-appearance: none;     /* Firefox */
	appearance: none;
	
}

.pr_promocode-form_content span[data-name="question"]::after {
	
	content: "";
	position: absolute;
    top: 16px;
    right: 13px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #555;
	transition: all 0.2s ease-in-out;
	
}

.pr_promocode-form_content span[data-name="question"].arrow_up::after {
	
    top: 16px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #555;
	border-top: 0;
	
}

/* ------------ ACCEPTANCE ------------ */

.pr_promocode-form_content .pr_promocode-form_content_acceptance span {
	
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0px;
	
}

.pr_promocode-form_content .pr_promocode-form_content_acceptance .wpcf7-list-item {
	
	margin: 0;
	
}

.pr_promocode-form_content .pr_promocode-form_content_acceptance span > label {
	
	display: flex;
	justify-content: center;
	
}

.pr_promocode-form_content .pr_promocode-form_content_acceptance input {
	
	margin-right: 4px;
	
}

.pr_promocode-form_content .pr_promocode-form_content_acceptance a {
	
	color: #0b2641;
	text-decoration: underline;
	
}

/* ------------ SUBMIT ------------ */

.pr_promocode-form_content input[type="submit"] {
	
	width: 100%;
	font-family: "Cera";
	font-size: 16px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-weight: 400;
	border: none;
	padding: 10px;
	
}

.pr_promocode-form_content input[type="submit"]:hover {
	
	background: #3E4343;
	
}

.pr_promocode-form_content_submit .wpcf7-spinner {
	
	margin: 10px 0 0 0;
	width: 16px;
	height: 16px;
	
}

.pr_promocode-form_content_submit .wpcf7-spinner::before {
	
	top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    transform-origin: 6px 6px;
	
}


/* ------------ FORM RESPONSE ------------ */

.pr_promocode-form .wpcf7-response-output {
	
	margin: 0 0 24px 0 !important;
	padding: 1em !important;
	border: 0 !important;
    border-radius: 7px;
    font-weight: 600;
	font-size: 14px;
	
}


/* ------------ FORM RESPONSE: Error ------------ */

.pr_promocode-form form.invalid .wpcf7-response-output, 
.pr_promocode-form form.unaccepted .wpcf7-response-output, 
.pr_promocode-form form.payment-required .wpcf7-response-output {
	
	font-size: 16px;
	line-height: 1.1em;
	background-color: rgba(252, 4, 4, 0.2);
	color: red;
	
}


/* ------------ FORM RESPONSE: Ok ------------ */

.pr_promocode-form form.sent .wpcf7-response-output {
	
	/*background-color: #E8ECEE !important;
	color: #22475E !important;*/
	background-color: rgba(202, 229, 148, 1) !important;
	color: #415d0a !important;
	text-align: center;
	
}

.pr_promocode-form .pmcs_js_message {
	
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	
}

.pr_promocode-form .pmcs_js_promocode {
	
	font-size: 20px;
	line-height: 38px;
	text-align: center;
	background-color: #FFFFFF;
	padding: 0 14px;
	border: 1px dashed;
	border-radius: 7px;
	margin: 7px auto;
	display: inline-block;
	max-width: 50%;
	vertical-align: middle;
	
}

.pr_promocode-form .pmcs_js_clipboard {
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-size: 20px;
	line-height: 38px;
	color: #415D0A;
	background-color: #FFFFFF;
	margin: 7px;
	padding: 0 10px;
	border: 1px solid;
	border-radius: 7px;
	vertical-align: middle;
	cursor: pointer;
}

.pr_promocode-form .pmcs_js_clipboard::after {
	content: '\f0c5';
}

.pr_promocode-form .pmcs_js_clipboard.copied::after {
	content: '\f00c';
}

.pr_promocode-form .pmcs_js_info {
	
	font-size: 16px;
	line-height: 1.1em;
	font-weight: 400;
	
}


/*-----------------------------------------------------------*\
	CANCELLATION
\*-----------------------------------------------------------*/

.pr_section-booking-cancellation .pr_section-booking-cancellation_video .elementor-widget-video .e-hosted-video {
	
	--video-aspect-ratio: auto;
	
}


/*-----------------------------------------------------------*\
	BANNER
\*-----------------------------------------------------------*/

.pr_banner a:hover::after {
	
	opacity: 1;
	
}

.pr_banner a::after {
	
	content: "";
	background: linear-gradient(135deg, rgba(30, 187, 240, 0.2) 30%, rgba(57, 223, 170, 0.2) 100%);
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
	transition: all 450ms ease;
	
}

.pr_banner a {
	
	position: relative;
	
}










/*---------- Menú gris datepicker ----------*/

.fancybox-inner .calendar_popup_wrapper .calendar_field{
	
	width: auto;
	
}

.calendar td {
	
	padding: 0;
	
}
