
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


* {
    --purple: #81098F;
    --light-purple: #9E46C1;
    --dark-blue: #7843E6;
    --cyan: #7EFFE0;
    --dark-cyan: #20D3D7;
    --dark-green: #0c942e;
    --yellow: #fffc3c;
    --red: #cc0000;
    --light-grey: #DDDCDC;
    --grey: #979797;
    --dark-grey: #505050;
    --white: #fff;
    --black: #000;
    
    --blue: rgb(0, 100, 167);
}

.white {
    color: var(--white);
}
.dark-blue {
    color: var(--dark-blue);
}
.cyan {
    color: var(--cyan);
}
.dark-cyan {
    color: var(--dark-cyan);
}
.grey {
    color: var(--grey);
}
.dark-grey {
    color: var(--dark-grey);
}
.purple {
    color: var(--purple);
}
.bg-white {
    background: var(--white);
}
.bg-purple {
    background: var(--purple);
}
.bg-light-purple {
    background: var(--light-purple);
}


*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

html,
body,
#root {
    border: 0;
    padding: 0;
    margin: 0;
}

body {
    padding: 30px;
    min-height: 100vh;
    width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

p, input, button, a {
    margin: 5px 0;
    display: block;
}
.inline {
    display: inline;
}
p {
    line-height: 1.6em;
}

button {
    cursor: pointer;
}

hr {
    width: 100%;
    background:rgba(0, 0, 0, 0.7);
}

[hidden] {
    display: none !important;
}

.inline {
    display: inline !important;
}

.enable-js {
    display: block;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.enable-js > span {
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 50px;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.centered {
    width: auto;
    margin: 0 auto;
}

.card {
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    margin: 10px;
}
img.card {
    width: 120px;
    height: 120px;
    object-fit: scale-down;
    background: #bbb;
}

img.logo {
    max-width: 300px;
    object-fit: contain;
}


.custom-alert {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    z-index: 999;
}
.custom-alert>div {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}
.custom-alert>div>span {
    display: block;
    margin-bottom: 15px;
}
.custom-alert input {
    width: 100%;
    margin-bottom: 15px;
}
.custom-alert button {
    display: inline-block;
    margin-right: 15px;
}


#loading-overlay{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	z-index: 300;
}
.lds-ripple {
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.lds-ripple div {
	position: absolute;
	border: 1px solid #2b1c6d;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}
.lds-ripple div:nth-child(3) {
	animation-delay: -0.25s;
}
@keyframes lds-ripple {
	0% {
		top: calc(50% - 4px);
		left: calc(50% - 4px);;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: calc(100% - 8px);
		height: calc(100% - 8px);
		opacity: 0;
	}
}
