html * {
	box-sizing: border-box;
	max-height: 999999px;
	margin: 0;
	padding: 0;
}

html,
body {
	min-height: 100%;
}

body {
	background: var(--background-color) var(--background-url) no-repeat var(--background-position) / var(--background-size);
	color: var(--main-color);
	font: var(--main-font);
}

a {
	color: inherit;
}

img {
	border: none;
	display: block;
	margin: auto;
	max-width: 100%;
}

h1,
h2,
h3 {
	font-weight: normal;
	margin-bottom: .5rem;
}

.brand img {
	margin: 0 auto;
	max-width: 60%;
	max-height: 5rem;
}

section {
	margin: auto;
}

.links {
	display: flex;
	gap: .5rem;
	justify-content: center;
	width: 100%;
}

.btn {
	animation: btn_animation 2s infinite ease-in-out !important;
	background: var(--btn-background);
	border: none;
	border-radius: var(--btn-radius);	
	color: var(--btn-color);
	display: block;
	font-family: inherit;
	font-size: var(--btn-font-size);
	margin: .75rem auto;
	max-width: var(--btn-width);
	outline: none;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

ul {
	margin: 0;
	padding: 0 .75rem;
}


ol {
	counter-reset: item;
	display: flex;
	flex-flow: column;
    list-style: none;
    margin: 0 auto;
    max-width: 90%;
    padding: 0 1rem;
    text-align: left;
     
}

ol li {
    align-items: center;
    counter-increment: item;
    display: flex;
    margin-bottom: 10px;
}

ol li::before {
    align-items: center;
    border-radius: .5rem;
    content: counter(item); 
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-weight: bold;
    justify-content: center;
    height: 1.75rem;
    width: 1.75rem;
    margin-right: .5rem;
}




html {
	display: flex;
	flex-flow: column;
	min-height: 100%;
}
body {
	display: flex;
	flex-flow: column;
	flex: auto;
}
header {
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 1rem;
}

section {
	display: flex;
	flex-flow: column;
	flex: 1;
	justify-content: center;
	width: 100%;
	padding-bottom: 0!important;
}

#free_trial span {
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--highlight-color);
}


h1 {
	color: #d4eee2;
	font-size: 1.35rem;
	font-weight: 800;
    padding: 0 0.5rem;
}

h1 span,
h1 small {
	font-size: 0.8rem;
	display: block;
}

small {
	font-weight: normal;
}

h2 {
	font-size: 1.2rem;
	font-weight: 800;
}

h3 {
	font-size: .8rem;
	font-weight: 800;
}

body {
	text-align: center;
}

header, section, footer {
	padding: .5rem;
}

header {
	flex-direction: column;
}

section {
	justify-content: flex-end;
	max-width: 600px;
}

.card {
	color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0008;
	backdrop-filter: blur(3px);
}

.card h1 {
	color: #eece68;
}

.btn {
	box-shadow: var(--btn-box-shadow);
	font-weight: 800;
	line-height: .7;
	padding: var(--btn-padding);
	text-transform: uppercase;
}

.btn small {
	font-size: .7rem;
}

.short_tnc {
	text-align: initial;
	
	font-size: 10px;
}

#exit_btn {
	border: 1px solid #67a983;
	border-radius: 1rem;
	color: #67a983;
	display: block;
	font-weight: 600;
	line-height: 1;
	margin: auto auto 1rem;
	padding: .5rem 1rem;
	width: fit-content;
}

#price {
	font-size: 12px;
	font-weight: 500;
}

ol li::before { 
	background-color: #fff;
	color: #2a6169;
}

a.modal-launcher {
    text-decoration: underline;
}

footer,
footer a {
	color: #aaa;
    font-size: 0.7rem;
}

#selector {
    background: #0004;
    color: white;
    border: 1px solid #fff;
    border-radius: 1rem;
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: .25rem .75rem;
    width: fit-content;
}  
  
:root {
--brand-width: 60%;

--background-color: #fff;
--background-url: 0;
--background-position: top center;
--background-size: cover;

--main-color: #1a1a1a;
--main-font: 400 14px/1.2 'Montserrat', sans-serif;

--highlight-color: #ffc200;


--btn-background: linear-gradient(#fbf378, #f1c045);
--btn-width: 100%;
--btn-radius: 10px;
--btn-font-size: 1.25rem;
--btn-color: #000;
--btn-box-shadow: 0 .5rem 1rem rgba(0,0,0,.5), inset 0 25px 0 rgba(255,255,255,.25);
--btn-padding: 1.5rem 1rem;

--tc-background-color: #4fac80;
--tc-baloon-color: #0e2623;
--tc-color: #0e2623;
--tc-active-color: transparent;
--tc-size: 1.75rem;
--tc-border: 0;
--tc-radius: 1rem;
--tc-gap: 0;
--tc-top: 3.5rem;
}

.action.click_two {
	--btn-background: linear-gradient(#59affe, #005fb8);
	--btn-color: #FFF;
}

.action {
	display: flex;
	flex-direction: row;
}

.action.click_two button.close {
	filter: grayscale(100%);
	width: min-content;
	opacity: 0.8;
	font-size: 0.8rem;
	font-weight: inherit;
	padding: .75rem;
	margin-right: .5rem;
}

body:not(.actions_list) .list_container {
	display: none;
}