html {
    /* base font size for legacy app (same as for react app / chakra theme) */
    font-family: facto, Tahoma, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 16px;
    line-height: 1.2;
}

@font-face {
  font-family: Ionicons;
  src: url(/fonts/ionicons.eot?v=2.0.0);
  src: url(/fonts/ionicons.eot?v=2.0.0#iefix) format('embedded-opentype'),
        url(/fonts/ionicons.ttf?v=2.0.0) format('truetype'),
        url(/fonts/ionicons.woff?v=2.0.0) format('woff'),
        url(/fonts/ionicons.svg?v=2.0.0#Ionicons) format('svg');
  font-weight: 400;
  font-style: normal;
}

.full-width-main {
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.promo-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-banner-overlay.hidden {
    display: none;
}

.promo-banner {
    position: relative;
    padding: 30px;
    background-color: #0206a8; 
    color: white;
    border: 1px solid #3538b9;
    border-radius: 6px;
    max-width: 540px;
}

.promo-banner-close-btn:before {
  font-family: Linearicons;
  line-height: 1;
  content: "\f2d7";
  font-size: 30px;
  font-weight: 100;
  color: inherit;
}

.promo-banner-close-btn {
  background: none;
}

.promo-banner p:first-of-type {
    margin-top: 30px;
}

.promo-banner p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 2em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-size: 15px;
}


.promo-banner h3 {
    font-weight: bold;
    color: white;
    line-height: 1.5;
    display: block;
    margin-top: 30px;
}

.promo-banner-body ul {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

#cta_btn {
    --tw-bg-opacity: 1;
    background-color: rgb(0 235 155 / var(--tw-bg-opacity));
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    --tw-text-opacity: 1;
    color: rgb(0 8 61 / var(--tw-text-opacity));
    border-radius: 6px;
    border: 1px solid #66f3c3;
    transition-duration: 0.3s;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.cta-disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.promo-banner #cta_btn:hover {
    --tw-text-opacity: 1;
    color: rgb(2 6 168 / var(--tw-text-opacity));
    border: 1px solid #666b8b;
}

.promo-banner-header {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.promo-banner-header img {
    display: block;
    max-width: 300px;
}

.promo-banner-header button {
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    outline: 0;
    color: #fff;
    opacity: 0.7;
    transition-duration: 0.2s;
}

.promo-banner .bold {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 20px;
}

.promo-banner-header button::before {
    font-family: Ionicons;
    content: '\f2d7';
    font-size: 30px;
    font-weight: 100;
    color: inherit;
}

.promo-banner-header button:hover {
    opacity: 1;
}

.promo-banner-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-banner-header h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    font-weight: bold;
}

.cta_secondary_btn {
    border-radius: 6px;
    border: 1px solid theme('colors.teal.60');
    transition-duration: 0.3s;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #fff;
    padding: 8px 16px;
    margin-left: 10px;
}

.evr-pulse {
    display: block;
    position: absolute;
    top: -13px;
    margin-left: 17px;
    pointer-events: none;
}

.evr-pulse-dot {
    background: #df7055;
    box-shadow: 0 0 0 0 #df7055;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(223, 112, 85, 1);
    margin: 10px;
    height: 10px;
    width: 10px;
    transform: scale(1);
    animation: evr-pulse-dot-animation 2s infinite;
}

@keyframes evr-pulse-dot-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(223, 112, 85, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(223, 112, 85, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(223, 112, 85, 0);
    }
}

@media screen and (max-width: 540px) {
    .promo-banner-overlay {
        align-items: start;
        padding: 5px;
        padding-top: 100px;
    }

    .promo-banner {
        padding: 20px
    }

    .promo-banner-header button {
        right: 20px;
    }

    #cta_btn {
        display: block;
        width: 100%;
        text-align: center;
    }  

    .promo-banner h2, h3 {
        font-size: 17px;
    }
}

:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
    margin-left: 2px;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
