:root {
	/* Default to black for the button color */
	--ekho-banner-large-font-size: 16px;
	--ekho-banner-small-font-size: 10px;
	--ekho-banner-branding-font-size: 14px;
	--ekho-banner-horizontal-margin: 15%;
	/* These next two should add up to 100 - 2*(the number above) */
	--ekho-banner-text-container-width: 40%;
	--ekho-banner-button-container-width: 30%;
	--ekho-banner-brand-color: #00b1ec;
	--ekho-banner-background-color: #000000;
	--ekho-banner-default-text-color: #ffffff;
	--ekho-banner-branding-shadow-spread: 5px;
	--ekho-banner-separator-color: #ffffff;
}

.ekho-banner-container {
    height: 0;
	display: flex;
	flex-direction: row;
	background-color: var(--ekho-banner-background-color);
}

.ekho-banner-separator-present {
	/* border-bottom: 0.5px solid var(--ekho-banner-separator-color); */
}



.ekho-banner-text-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	height: auto;
	margin-left: var(--ekho-banner-horizontal-margin);
	width: var(--ekho-banner-text-container-width);
	margin-top: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.ekho-banner-main-cta {
	font-size: var(--ekho-banner-large-font-size);
	line-height: 17px;
	color: var(--ekho-banner-default-text-color);
	margin: 0;
	margin-bottom: 5px;
	padding: 0;
}

.ekho-banner-secondary-cta {
	font-size: var(--ekho-banner-small-font-size);
	font-weight: 400;
	line-height: 12px;
	color: var(--ekho-banner-default-text-color);
	margin: 0;
	padding: 0;
}

.ekho-overlay-get-started-button {
	width: 60%;
	font-size: var(--ekho-banner-large-font-size);
	height: 50px;
	border-radius: 3px;
	background-color: var(--ekho-banner-brand-color);
	color: white;
	/* add a shadow */
	box-shadow: 0 0 var(--ekho-banner-branding-shadow-spread) #00000052;
	display: flex;             /* Added */
	justify-content: center;   /* Added */
	align-items: center;
	cursor: pointer;
}

.ekho-banner-buttons-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: var(--ekho-banner-button-container-width);
	height: 100%;
	margin: auto;
	margin-right: var(--ekho-banner-horizontal-margin);
	margin-left: 20px;
}



.ekho-banner-button {
	width: 48%;
	height: 100%;
	/* Round the corners, give it a white shadow, set the background color to --brand-color */
	border-radius: 3px;
	/* box-shadow: 0 0 var(--ekho-banner-branding-shadow-spread) var(--ekho-banner-default-text-color); */
	/* Align items within the button horizontally in the center */
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: var(--brand-color); */
	
	/* Make the text bold */
	font-weight: bold;
	cursor: pointer;
	/* Size */
	max-height: 28px;
	min-height: 28px;
	max-width: 350px;
	min-width: 130px;
}

.ekho-banner-first-button {
	background-color: var(--ekho-banner-brand-color);
	color: white;
	margin-right: 2%;
}

.ekho-banner-second-button {
	border: 2px solid var(--ekho-banner-brand-color);
	color: var(--ekho-banner-brand-color);
}


.ekho-banner-button-copy-span {
	margin: 0;
	padding: 0;
	font-size: var(--ekho-banner-branding-font-size);
}

.ekho-banner-button-copy-light {
	font-size:var(--ekho-banner-branding-font-size);
	font-weight: lighter !important;
	
}

.ekho-banner-button-copy-prefix {
	margin-right: 5px;
}



.ekho-banner-button-copy-bold {
	font-weight: bold !important;
}

.ekho-banner-heavier-text {
	font-weight: bold !important;
}

.ekho-banner-lighter-text {
	font-weight: lighter;
}

/* For resizing. Make sure this is the last thing in the file */




  /* FAQ OVERLAY STYLES */

/* Overlay styles */
#ekho-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal styles */
#ekho-modal {
    position: relative;
    width: 55%;
    height: 70%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	/* One more 9 than the overlay z index */
    z-index: 99999999999;
    overflow-y: auto;
    padding: 30px;
    box-sizing: border-box;
	/* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* For webkit browsers */
#ekho-modal::-webkit-scrollbar-corner {
	display: none !important;
    border-radius: 8px !important;
    background-color: inherit;  /* Or the same color as your modal's background */
}

#ekho-modal h1 {
    font-size: 28px;
    margin-bottom: 16px;
	color: var(--ekho-banner-brand-color);
}

#ekho-modal h2 {
    font-size: 18px;
    margin-bottom: 16px;
	color: var(--ekho-banner-brand-color);
}

#ekho-modal p {
    font-size: 16px;
    margin-bottom: 16px;
}

#ekho-modal img {
    width: 60%;
	border-radius: 5px;
	border: 1px solid var(--ekho-banner-brand-color);
    height: auto;
    margin-top: 10px;
    margin-bottom: 16px;
}

#ekho-modal div {
    font-size: 20px;
    margin-bottom: 16px;
}

/* Exit button styles */
#ekho-modal-exit {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: #e1e1e1;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

#ekho-modal-exit:hover {
    background-color: #c2c2c2;
}

/* MISC */
.ekho-no-scroll {
    position: fixed;
   width: 100%;
   overflow: hidden;
   top: 0;
   left: 0;
}

@media (max-width: 767px) {
	:root {
		--ekho-banner-horizontal-margin: 5%;
		--ekho-banner-content-max-width: 90%;
		--ekho-banner-large-font-size: 14px;
		--ekho-banner-small-font-size: 8px;
		--ekho-banner-branding-font-size: 12px;
		--ekho-banner-branding-shadow-spread: 2px;
	  }
	.ekho-banner-container {
	  flex-direction: column; /* Stacks children vertically */
	}
	/* hides the element when the screen is on mobile, if the config has hideOnMobile as true */

	.ekho-banner-hide-on-mobile {
        display: none !important;
    }
	.ekho-banner-text-container {
		width: 90% ;
		/* margin-left: var(--mobile-ekho-banner-horizontal-margin);
		margin-right: var(--mobile-ekho-banner-horizontal-margin); */
	}

	.ekho-banner-buttons-container {
		margin-top: 5px;
		width: 100%;
		margin-bottom: 15px;
		margin-left: var(--ekho-banner-horizontal-margin);
		margin-right: var(--ekho-banner-horizontal-margin);
	}

	.ekho-banner-button {
		width: 42.5%;
		min-width: 80px;
	}

	#ekho-modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 20px;
    }

    #ekho-modal-exit {
        top: 20px;
        right: 20px;
    }
	
}


@media (max-width: 767px) {
	:root {
		--ekho-banner-horizontal-margin: 5%;
		--ekho-banner-content-max-width: 90%;
		--ekho-banner-large-font-size: 14px;
		--ekho-banner-small-font-size: 8px;
		--ekho-banner-branding-font-size: 12px;
		--ekho-banner-branding-shadow-spread: 2px;
	  }
	.ekho-banner-container {
	  flex-direction: column; /* Stacks children vertically */
	}
	.ekho-banner-text-container {
		width: 90% ;
		/* margin-left: var(--mobile-ekho-banner-horizontal-margin);
		margin-right: var(--mobile-ekho-banner-horizontal-margin); */
	}

	.ekho-banner-buttons-container {
		margin-top: 5px;
		width: 100%;
		margin-bottom: 15px;
		margin-left: var(--ekho-banner-horizontal-margin);
		margin-right: var(--ekho-banner-horizontal-margin);
	}

	.ekho-banner-button {
		width: 42.5%;
		min-width: 80px;
	}

	#ekho-modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 20px;
    }

    #ekho-modal-exit {
        top: 20px;
        right: 20px;
    }

	/* hides the element when the screen is on mobile, if the config has hideOnMobile as true */

	.ekho-banner-hide-on-mobile {
        display: none !important;
    }
	
  }


