:root {
	--brand-width: 60%;
	--brand-height: 3rem;

	--background-color: #fff;
	--background-url: 0;
	--background-position: top center;
	--background-size: cover;

	--main-color: #1a1a1a;
	--main-font: 400 16px/1.2 'Montserrat', sans-serif;

	--highlight-color: #ffc200;
	--h1-color: #d4eee2;

	--btn-background: linear-gradient(#fbf378, #f1c045);
	--btn-width: 100%;
	--btn-radius: 10px;
	--btn-font-size: 1.25em;
	--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-radius: 1rem;*/
	/*--tc-gap: 0;*/
	/*--tc-top: 3.5rem;*/
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	src: local('Montserrat'), url('../../fonts/sharred/Montserrat.woff2');
}


html * {
	box-sizing: border-box;
	max-height: 999999px;
	margin: 0;
	padding: 0;
}

html,
body {
	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;
}
.arabic *:not(:has(input), .phone, input){
	direction: rtl;
}

.brand {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--brand-height);
	gap: 0.5rem;
}

.brand img {
	margin: 0 auto;
	max-width: var(--brand-width);;
	max-height: 3rem;
}

section {
	margin: auto;
}

.links {
	display: flex;
	gap: .5rem;
	justify-content: center;
	align-items: center;
	width: 100%;
}

#warning:not(:empty) + .links {
	padding-top: .5rem;
}

.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;
	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.5em;
	font-weight: bold;
	color: var(--highlight-color);
}


h1 {
	color: #d4eee2;
	font-size: 1.35em;
	font-weight: 800;
    padding: 0 0.5rem;
}

h1 small {
	font-size: 0.7rem;
	display: block;
}

small {
	font-weight: normal;
}

h2 {
	font-size: 1.2em;
	font-weight: 800;
}

h3 {
	font-size: .8em;
	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: .7em;
}

.short_tnc {
	text-align: initial;
	
	font-size: 0.6em;
}

#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: 0.8em;
	font-weight: 500;
}

ol li::before { 
	background-color: #fff;
	color: #2a6169;
}

a.modal-launcher {
    text-decoration: underline;
}

footer:has(#warning:empty),
footer:not(:has(#warning, #short_tnc)) {
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-around;
}

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;
}  

.action.click_two {
	--btn-background: linear-gradient(#59affe, #005fb8);
	--btn-color: #FFF;
}

.action {
	display: flex;
	flex-direction: column;
}

.action button.close {
	filter: grayscale(100%);
	width: min-content;
	opacity: 0.8;
	font-size: 0.8em;
	font-weight: inherit;
	padding: .75rem;
	margin-right: .5rem;
}

body:not(.actions_list) .list_container {
	display: none;
}

.buttons {
	display: flex;
	gap: 0.5rem;
	width: 100%;
}

.buttons .btn {
	width: 100%;
}

.buttons .btn + .btn {
	margin-left: 0.5rem;
}

.btn.disabled {
	filter: grayscale(0.8);
	opacity: 0.5;
}

body:not(.otp_checkbox_enabled) .otp_checkbox {
	display: none;
}

.grey-header header {
	padding: 0;
}

.grey-header header .brand {
	padding: 0.5rem;
	width: 100%;
	background: #b7b7b7;
}