/* Base Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Default width */
    max-width: 600px; /* Limit the maximum width */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Flexbox and improved layout for form elements */
.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-bottom: 5px;
    font-weight: bold;
}

.modal-content input, .modal-content button {
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .modal-content {
        width: 95%; /* Increase width for smaller screens */
        margin: 10% auto; /* Adjust margin to provide more space at the top */
        padding: 15px; /* Reduce padding for smaller screens */
    }
    
    .close {
        font-size: 24px; /* Adjust close button size */
    }

    .modal h2 {
        font-size: 1.5em; /* Adjust heading size */
    }
}

@media screen and (min-width: 601px) and (max-width: 1200px) {
    .modal-content {
        width: 80%; /* Adjust width for medium screens */
    }
}
/* Style for the response text */
#result {
    color: #0066aa; /* Replace with the actual blue color if different */
    font-size: 1.2em; /* Adjust the size as needed */
    font-weight: bold; /* Make the text bold */
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #007BFF; /* Optional: border with the same color */
    background-color: #f0f8ff; /* Optional: light blue background for better visibility */
    border-radius: 5px; /* Optional: rounded corners */
    text-align: center; /* Center align the text */
}
/* @override 
	https://tnballoon.com/css/balloon1.css */

body{
	background-color: #0057a4;
}

p{
	font-family: Montserrat, Helvetica, Tahoma, Geneva, Arial, sans-serif;
}

.black_text{
	color: black;
}

.center_text{
	text-align: center;
}
	
p.black_text.center_text{
	text-align: center;
	font-family: 'montserrat', sans-serif !important;
	font-style: normal;
	font-weight: 100;
}	
	
.icon-2x {
	color: #00b9f2;
}


.icon-2x:hover {
	color: #ffffff;
}

#page #content {
    background-size: contain;
    padding-top: 0;
    margin-top: 0;
    background-color: white;
}


h6{
	margin-top: 11px;
	font-size: 1em;
	font-family: montserrat, sans-serif;
	color: #0066aa;
	text-align: left;
	margin-bottom: 6px;
}

h5{	margin-top: 13px;
	font-size: 1.5em; 
	font-family: montserrat, sans-serif;
	color: #ee151a;
	text-align: left;
	margin-bottom: 6px;
}

h4{
	margin-top: 33px;
	font-size: 2em;
	font-family: montserrat, sans-serif;
	color: #ee151a;
}

h3{	margin-top: 13px;
	font-size: 2.5em; 
	font-family: kaushan-script, cursive;
	color: #0066aa;
	margin-bottom: 12px;
}

h2{
	margin-top: 33px;
	font-size: 2em;
	font-family: montserrat, sans-serif;
	color: #0066aa;
}

h1 {	
    margin-top: 38px;
    font-size: 3em; 
    font-family: 'montserrat', sans-serif;
    color: #ee151a;
    margin-bottom: 12px;
}

#header .ball_header button, #booknow button {
	background-color: #31b6e6;
	border-radius: 8px;
	padding: 8px;
	color: white;
	font-weight: bold;
	margin-bottom: 22px;
}

#header .ball_header button:hover, #booknow button:hover {
	background-color: rgb(252, 112, 32);
	color: black;
}


html.gallery {
	margin-top: 0;
	padding-top: 0;
}


.gridContainer  {
	background-repeat: no-repeat;
}

.gridContainer p {
	padding-right: 30px;
	padding-left: 30px;
	text-align: left;
	line-height: 1.2em;
}

.gridContainer #secondaryStyling p {
	color: rgba(111, 111, 111, 1.00);
	padding-right: 30px;
	padding-left: 30px;
	text-align: center;
	line-height: 1.5em;
}

.gridContainer h6{
	padding-left: 30px;
}

#fullwide .txtcntr p {
	text-align: center;
}

#fullwide .txtcntr hr{
	margin-right: auto;
	margin-left: auto;
}

#fullwide{
	width: 100%;
	clear: both;
	overflow: hidden;
}

.onethird {
	width: 32%;
	clear: none;
	margin-left: 1.6949%;
	display: inline-block;
	vertical-align: top;
	vertical-align: top;
	
}

.twothird {
	width: 64%;
	clear: none;
	margin-left: 1.6949%;
	display: inline-block;
	vertical-align: top;
	
}


#video-container {
    position: relative;
    padding-bottom: 100%;
    padding-top: 30px; 
    height: 0; 
    overflow: hidden;
    margin-bottom: 20px;
}

#video-container iframe,
#video-container object,
#video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    #video-container {
        padding-bottom: 120%;
    }
}

#beware{
	display: inline-block;
	width: 46%;
		vertical-align: top;
	
}

#secondaryStyling a img {
	max-height: 240px;
	margin-right: auto;
	margin-top: auto;
}


h2.fluid.secondaryHeading.headingStyle {
	color: #0066aa;
	font-weight: bold;
}

#secondaryStyling .secondarySection{
	background-color: transparent;
	font-family: Georgia, "Times New Roman", Times, serif;
}

#box {
	display: inline-block;
	font-variant: normal;
}


div.g-recaptcha {
	margin-top: 10px;
	margin-bottom: 10px;
}


/* @group Content */

#fullwide .bodysec{
	margin-top: 12px;
	clear: both;
	height: auto;
	padding-top: 12px;
	border-bottom: thin solid #f7f7f7;
	padding-bottom: 12px;
}

#fullwide .clearfix .bodysec .photorow {
	text-align: center;
}

strong {
	font-family: montserrat, sans-serif;
	color:  #0066aa;
}
#fullwide .bodysec img{
	max-height: 400px;
	width: auto;
	height: auto;
	max-width: 80%;	
	border-radius: 8px;
	margin-bottom: 22px;
}

#fullwide .clearfix .textContainer .txtcntr a img {
	margin-right: 16px;
	margin-left: 16px;
}

.txtcntr a .redbutton, .seal_pric a img {
	height: 100px !important;
	padding: 22px;
}


.imgright {
	float: right;
	margin-left: 12px;
	
}

.imgleft {
	float: left;
	margin-right: 12px;
	
}


#fullwide .clearfix .bodysec h2 {
	clear: both;
	background: -webkit-radial-gradient(ellipse farthest-corner, #c4d6f8 0%, white 85%) 0 -70px no-repeat;
	background: -moz-radial-gradient(ellipse farthest-corner, #c4d6f8 0%, white 85%) 0 -70px no-repeat;
	background: -ms-radial-gradient(ellipse farthest-corner, #c4d6f8 0%, white 85%) 0 -70px no-repeat;
	background: radial-gradient(ellipse farthest-corner, #c4d6f8 0%, white 85%) 0 -70px no-repeat;
	padding-top: 10px;
}

.pkgprice img{
	border-radius: 8px;
}

.pkgprice {
	padding-top: 12px;
	padding-right: 11px;
	padding-left: 11px;
}

.pkgprice p{
	text-align: center;
}

.pkgprice h3{
	border-top: 1px solid silver;
	padding-top: 18px;
}

/* @end */



/* @group HEADER-------------------- */

/* @group Navigation styles */

nav a {
	color: rgba(255,255,255,1.00);
}



nav a:visited {
	color: rgba(255,255,255,1.00);
}
a:hover, nav a:hover {
	color: #fff32a;
}

a:visited {
	color: black;
}

.linkStyle {
	color: rgba(255,255,255,1.00);
	font-family: Montserrat, Helvetica, Tahoma, Geneva, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;	
}


nav .topNavLl {
	width: auto;
	margin-left: 21px;
	clear: none;
	height: auto;
	position: static;
	text-align: right;
	background-color: red;
}

#nav  nav.fluid.topNav .topNavUl {
	width: auto;
	float: right;
	margin-right: 10%;
}

/* @end */

article p a {
	color: #0066cc;
}

article p a:visited {
	color: #00246e;
}

#nav_main a:hover {
		color: #ffcf00;
}

article p a:hover, #header #nav_main .topNav p a:hover {
	color: #ee151a;
}

#header header.ball_header {
	overflow: visible;
}

#fullwide .clearfix .textContainer {
	padding-top: 0px;
	background-color: transparent;
}

#header .headingStyle {
	display: none;
}

#header .mainTagline {
	display: none;
}

header .logo img {
	width: auto;
}
header figure.fluid.logo {
	width: 15%;
}
#header .ball_header h1 {
	text-shadow: 0 0 20px rgba(73, 86, 104, 0.5);
}
#nav_main {
	display: block;
	height: 70px;
	background-color: rgba(0, 115, 188, 0.71);
	padding-left: 10%;
}



#header .ball_header {
	min-height: 260px;
	background-size: cover;
	max-height: 100%;
	background-position: center top;
}

#header .headingStyle {
	display: block;
	margin-top: 33px;
	margin-bottom: 22px;
}



.front_pg #header .mainTagline {
	display: block;
}



/* @end */



/* @group Content bottom */

#mission {
	padding-bottom: 35px;
	text-align: center;
	font-family: montserrat, sans-serif;
	color: rgba(146, 146, 146, 1.00);
	background-color: white;
}

.logo.textStyle {
	display: inline-block;
	padding: 0;
}

#mission {
	width: 100%;
	border-top: 2px solid #d1cfcf;
}


/* @end */

/* @group FOOOTER--------------------- */

#cright {
	background-color: #ee151a;
}

#cright p {
	font-size: 1em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: normal;
	font-weight: 100;
	color: black;
	line-height: 1.8;
}

#cright a {
	color: black;
}

#cright a.linkStyle, #cright p:first-child {
	color: white;
}

#cright a:hover {
	color: #fff32a;
}

#foot {
	height: auto;
	display: block;
}


#foot .footer {
	background-color: #ee151a;
	padding-top: 15px;
}

.footerSection img {
}

#foot .footerSection #logo {
	height: 122px;
	margin-top: -55px;
}
#foot .alpha img, #foot .omega img{
	max-height: 60px;
}
#foot .footerSection img{
	margin-right: 8px;
	margin-left: 8px;
	margin-bottom: 8px;
}
/* @group certs
 */

#Certificate, #CDSWIDCOE, #TA_certificateOfExcellence480.TA_certificateOfExcellence  {
	width: 80px !important;
	display: inline-block;
	margin-right: 22px;
}

#Certificate {
	
}

#TA_certificateOfExcellence480.TA_certificateOfExcellence {
	
}

#CDSWIDCOE .widCOETitle {
	font-size: 10px!important;
	width: auto;
	overflow: hidden;
}

#CDSWIDCOE .widCOELink a  {
	width: 70px!;
	font-size: 10px!important;
}

#cright {
	display: block;
	clear: both;
	text-align: center;
	background-color: #ee151a;
	border-top: 1px solid #cbc7c7;
	padding-bottom: 25px;
	border-color: #d10b0f;
	border-width: 1px;
}

/* @end */

/* @end */

@media only screen and (min-width:768px) {
.pkgprice {
	width: 46%;
	display: inline-block;
	vertical-align: top;
}
}

@media only screen and (max-width: 767px){
	.onethird {
		width: 100%;
		margin-top: 12px;
		margin-bottom: 24px;
		margin-left: 1.6949%;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-left: 12px;
		border-top: 3px solid #f1f1f1;
		border-bottom: 3px solid #f1f1f1;
	}
	
	.twothird {
		width: 64%;
		clear: none;
		margin-left: 0%;
		display: inline-block;
		vertical-align: top;
}
#fullwide  .tiles figcaption {
	font-size: .7em;
}

}

@media only screen and (min-width:960px){
#fullwide .clearfix h1 {
	margin-left: 0px;
}

#header .ball_header a button {
	margin-bottom: 35px;
	margin-top: 22px;
}

#header .ball_header h1.fluid {
	margin-top: 40px;
	margin-bottom: 30px;
}
#fullwide h1:first-of-type{
	margin-top: 83px;
}
#bookeo_formball {
	padding-top: 110px;
}

}


@media only screen and (max-width:480px){
	#header {
	display: block;
		text-align: center;
		padding-bottom: 22px;
	}
	
	#header .ball_header {
		height: auto;
		text-align: center;
		padding-bottom: 22px;
	}
	#header .logo {
		display: block;
		clear: both;
		width: 100%;
		height: auto;
	}
	
	#page a .hdlogo {
		height: 55px;
	}
	

#nav_main {
	display: block;
	position: relative;
	height: auto;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

#nav_main .topNav .topNavUl {
	margin: 0;
	padding: 0;
}

#nav_main .topNav {
	float: none;
	clear: both;
}
#nav_main .topNav ul li {
	text-align: center;
}

.texter {
	font-family: montserrat, sans-serif;
	text-align: left;
	color: rgba(30, 30, 30, 1.00);
}

#e15.texter p {
	font-family: montserrat, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
	text-align: left;
	color: rgba(30, 30, 30, 1.00);
}

#e15.texter img {
	min-width: 150px;
	height: auto;	
	padding-right: 0px;
	padding-left: 0px;
	margin-bottom: 12px;
}

#h1.texter p {
	font-family: montserrat, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
	text-align: left;
	color: rgba(30, 30, 30, 1.00);
}

#fullwide .tiles {
	width: 100%;
}


}



/* @group FAQ */

.texter {
	font-family: montserrat, sans-serif;
	text-align: justify;
	margin-top: 8px;
}

#e15.texter p {
	font-family: montserrat, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
	text-align: justify;
	color: rgba(30, 30, 30, 1.00);
}

#h1.texter p {
	font-family: montserrat, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
	text-align: justify;
	color: rgba(30, 30, 30, 1.00);
}

.faq_q{
	font-size: 1.2em;
	text-align: left;
	padding-left: 6%;
	margin-top: 11px;
	color: gray;
}

#fullwide .clearfix .textContainer h3 {
	margin-top: 20px;
}

.faq_q:hover {
	color: #0066aa;
}

/* @end */

div#CDSWIDSSP.widSSP.widSSPnarrow {
	margin-right: auto;
	margin-left: auto;
}

/* @group Crew and Contact
 */

form.contact{
	background-color: #fefefe;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #a2b3cd;
	width: 48%;
	padding: 22px;
}

img.img_right {
	max-width: 46%;
	float: right;
}


#crewcal iframe{
	margin-right: auto;
	margin-left: auto;
	display: block;
	padding: 22px;
	background-color: white;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}

form.contact label {
	display: block;
	padding: 6px;
	margin-top: 12px;
}

form.contact p textarea {
	width: 100%;
}
form.contact p{
	padding: 0;
}

/* ball_deposit.html */

#paydeposit p {
	text-align: center;
}	

#flightform {
	display: inline-block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

#flightform input{
	margin-bottom: 22px;
}

#flightform select{
	margin-bottom: 22px;
}

#flightform form{
	background-color: white;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	padding: 36px;
	border: 1px solid #a2b3cd;
	margin-top: 22px;
}

/* @end */

/* @group BookNow and Reserve */

/* Not working yet - ball_giftcertificate.html */

#Buynow {
	margin: 22px;
}

#Buttonbox #Redeem {
	margin: 22px;
}

#paydeposit p {
	text-align: center;
}

#booknow a img {
	margin: 0;
	min-width: 200px;
	height: auto;
}

#secondary_wide {
	border-top: 2px solid #dedddd;
	background-color: rgb(244, 249, 252);
}

.twothird {
	min-width: 280px;
}

/* @end */

/* @group Gallery */

.gall #header .ball_header {
	height: 500px;
	background: url(../images/engagement.jpg) center bottom no-repeat;
	max-height: 100%;
	background-size: cover;

}
.gall #header .headingStyle {
	display: block;
}
.gall #header .mainTagline {
	display: block;
}

#fullwide figure.fluid.tiles {
	margin-left: 0;
	margin-bottom: 11px;
	overflow: hidden;
	position: static;
	margin-right: 0px;
	text-align: center;
}

#fullwide  .tiles figcaption.textStyle {
	z-index: 99;
	font-size: 1em;
}

#fullwide .tiles a img {
	width: 75%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 11px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

/* @end */

/* @group Navigation */

#page nav .topNavUl.menu li.fluid.topNavLI {
	background-color: transparent;
}

#page nav ul{
	width: 85%;
	display: block;
	float: right;
}


.hdlogo {
	position: absolute;
	left: 33px;
	padding-top: 0;
	margin-top: 5px;
}


#page #topnav{
	background: -webkit-linear-gradient(top, rgba(0, 112, 188, 0.66) 0%, rgba(55, 184, 241, 0.74) 100%) transparent;
	background: -moz-linear-gradient(top, rgba(0, 112, 188, 0.66) 0%, rgba(55, 184, 241, 0.74) 100%) transparent;
	background: -ms-linear-gradient(top, rgba(0, 112, 188, 0.66) 0%, rgba(55, 184, 241, 0.74) 100%) transparent;
	background: linear-gradient(to bottom, rgba(0, 112, 188, 0.66) 0%, rgba(55, 184, 241, 0.74) 100%) transparent;
	width: 100%;
	background: url(../images/blu_fade.png) repeat-x;
	z-index: 99;
	background-size: contain;
	padding: 0 0 2px;
	overflow: auto;
	margin-bottom: 0;
	border-width: 0;
}

#page a.open-panel .icon-2x:visited{
	color: orange;
}

/* @end */

@media only screen and (max-width: 767px){		
#page a .hdlogo {
	position: absolute;
	height: 65px;
	margin-bottom: 0;
	padding-bottom: 0;
	top: 0;
	left: 50%;
	max-width: 120px;
}

#page a .hdlogo img{
	width: auto;
	height: 100%;
	position: relative;
	left: -50%;
}
.front_pg #header .headingStyle.hide_mobile {
	visibility: hidden;
	height: 0;
}

form.contact textarea {
	max-width: 100%;
}

form.contact {
	width: 90%;
}
img.img_right{
	display: none;
}
	



/* Add these container styles back */
.rental-buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    width: 100%;
    padding: 20px;
    background-color: transparent;
}

article.textContainer h2 {
	font-family: 'montserrat', sans-serif !important;
	font-style: normal;
	font-weight: 100;
	text-align: center;
}

article.fluid.textContainer > h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* End of styles */

.lightwidget-widget {
  width: 100% !important;
  height: auto !important;
  min-height: 500px;
  border: 0 !important;
  overflow: hidden !important;
}

@media only screen and (max-width: 767px) {
  .lightwidget-widget {
    min-height: 400px;  /* Adjust this value as needed */
  }
}



