/* BASE */
html {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	margin: 0;
	padding: 0;

	font-family: 'Montserrat', sans-serif;
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
	overflow: hidden;

    background-color: #e9e9e9;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


::-moz-selection {
	color: #252525;
	background: #359cf9;
}

::selection {
	color: #252525;
	background: #359cf970;
}

::-webkit-scrollbar {
	display: none;
}

#snackbar {
	padding: 12px 15px;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	bottom: 20px;
	display: block;
	background-color: #252525;
	border-radius: 10px;

	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	color: #fff;

	transition-property: all;
	transition-duration: 300ms;
}

.snackbar-close {
	visibility: hidden;
	opacity: 0;
	transform: skewX(90deg) scale(0);
	/* transform: translateY(-75px); */
}

.snackbar-open {
	visibility: visible;
	opacity: 1;
	transform: skewX(0deg) scale(1);
	/* transform: translateY(0); */
	
	/* BG */
}
.rightDots {
    position: fixed;
    right: 0;
    top: 0;
    opacity: 0.2;
    z-index: -999;
}
	
.leftDots {
	position: fixed;
	bottom: 0;
	left: 0;
	opacity: 0.2;
    z-index: -999;
}

/* COMPONENTS */
.card, .card-clickable {
	border-radius: 15px;
	background-color: #ffffff;
	box-shadow: 0 0 50px 0 #00000025;
}

.card-clickable {
	cursor: pointer;
}

.card-clickable:hover {
	background-color: #25252510;
}

.card-clickable:active {
	background-color: #25252515;
}

.input {
    display: block;
    height: 50px;
    width: 650px;
    border: 0;
    outline: 0;

    padding-inline-start: 25px;
    padding-inline-end: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;

    transition-property: all;
    transition-duration: 300ms;
}

.input-valid {
    border-bottom: 2px solid #359cf9 !important;
}

.input-invalid {
    border-bottom: 2px solid #a924d9 !important;
}


.text-button {
	width: fit-content;
    margin: 0;
    padding: 5px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;

    font-size: 10px;

    transition-property: all;
    transition-duration: 300ms;
}


.switchable-icon {
    height: 50px;
    width: 50px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
	
	transition-property: all;
	transition-duration: 300;
}

.switchable-icon-anchor {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.switchable-icon-anchor:active {
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, .1);
	background-color: #25252515;
}

.switchable-icon-icon {
	display: block;
}

.switchable-icon-text {
	position: absolute;
	top: 5px;
	left: 10px;
	padding: 10px;
	border-radius: 10px !important;

	font-size: 10px;
	font-weight: 800;
	color: #252525;

	transition-property: transform ;
	transform-origin: top right;
	transition-duration: 200ms;
	transform: scale(0, 0) skewX(90deg) translate(-100%, 50%);
}

.switchable-icon-anchor:hover .switchable-icon-text {
	transform: scale(1, 1) skewX(0deg) translate(-100%, 50%);
}

.switchable-icon-anchor:active .switchable-icon-text {
	transform: scale(0, 0) skewX(90deg) translate(-100%, 50%);
}

.highlight-text {
	border: 0;
	padding: 0;
	margin: 0;

	transition-property: all;
	transition-duration: 400ms;

	color: #232525;
	font-size: 6vw;
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
}

/* ANIMATIONS */
.shake {
	animation: shake 500ms cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	perspective: 1000px;
}

@keyframes shake {
	10%, 90% {
		transform: translate3d(-2px, 0, 0);
	}
	
	20%, 80% {
		transform: translate3d(4px, 0, 0);
	}

	30%, 50%, 70% {
		transform: translate3d(-8px, 0, 0);
	}

	40%, 60% {
		transform: translate3d(8px, 0, 0);
	}
}

/* PURPLE : #a924d9 */
/* LIGHT BLUE : #359cf9 */