@-webkit-keyframes radial-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
	}
	100% {
		box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
	}
}

@keyframes radial-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
	}
	100% {
		box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
	}
}

@-webkit-keyframes qr-appear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes qr-appear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg); }
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@font-face {
	font-family: 'Verdana';
	src: local("Verdana"), url("fonts/verdana.woff2") format("woff2"), url("fonts/verdana.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

.keepz-button {
    cursor: pointer;
    min-width: 350px;
	height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
	border: none;
	background: none;
}

.keepz-top {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
}

.keepz-top-text {
	color: #170738;
}

.keepz-bottom {
	border-radius: 4px;
    border: 2px solid #170738;
    background-color: #170738;
    width: 100%;
    height: 45px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 800px) {
    .keepz-button {
        min-width: 99% !important;
        max-width: 99% !important;
        margin: 20px auto;
    }
}

.keepz-top-logo {
    background-image: url("../img/keepz_button.svg");
    width: 200px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.keepz__button-wrap {
	position: relative;
}

.keepz__main-button.button {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	border: 0;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-content: stretch;
	padding: 0;
	cursor: pointer;
	width: 100%;
}

.keepz__main-button.button.button--theme-black {
	background-color: #000;
	color: #fff;
}

.keepz__main-button.button.button--theme-white {
	background-color: #fff;
	color: #1b1537;
}

.keepz__main-button.button:disabled {
	opacity: 0.5;
	transition: opacity 0.1s linear;
	cursor: default;
}

.keepz__main-button-text {
	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
	-o-align-self: center;
	align-self: center;
	font-size: inherit;
	font-family: Circe, 'Verdana', Tahoma, sans-serif;
	margin-left: 9px;
	line-height: 1.15;
}

.keepz__main-button-logo {
	max-width: 80px;
	height: 100%;
}

.keepz__modal-window {
	position: fixed;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	overflow-y: scroll;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	z-index: 99999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: all 0.2s linear;
	font-family: Circe, 'Verdana', Tahoma, sans-serif;
	padding: 1rem;
}

.keepz__modal-window--hidden {
	pointer-events: none;
	opacity: 0;
}

.ie .keepz__modal-window--hidden {
	display: none;
}

.keepz__modal-window-overlay {
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.keepz__modal-window-inner {
	border-radius: 4px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	z-index: 1;
	position: relative;
	background-color: rgb(108 99 255);
	color: white;
	max-width: 350px;
	width: 100%;
}

.keepz__modal-head {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	flex-direction: column;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	min-height: 5rem;
	padding: 0 30px;
	font-size: 22px;
	font-weight: bold;
}

.keepz__modal-content {
	position: relative;
	padding: 20px 50px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 30px;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	flex-direction: column;
}

.keepz__modal-content-inner {
	position: relative;
	padding-bottom: 100%;
	height: 0;
	width: 100%;
}

.keepz__error-message {
	color: #ff7777;
	position: absolute;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
}

.keepz__modal-qr {
	position: relative;
	background: white;
	border-radius: 4px;
	padding: 20px;
	-webkit-animation: qr-appear 0.1s linear;
			animation: qr-appear 0.1s linear;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: -20px;
	margin-bottom: 0;
}

.keepz__modal-qr__box {
	position: relative;
	padding-bottom: 100%;
	height: 0;
}

.keepz__modal-qr__canvas {
	max-width: 100%;
	transition: all 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.keepz__modal-qr__link {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	-webkit-animation: radial-pulse 1.3s infinite;
			animation: radial-pulse 1.3s infinite;
}

.keepz__spinner-container {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	opacity: 1;
	transition: opacity 0.35s linear;
}

.keepz__spinner-container--hidden {
	opacity: 0;
	z-index: 0;
}

.ie .keepz__spinner-container--hidden {
	display: none;
}

.keepz__spinner {
	border: 10px solid #f3f3f3;
	border-top: 10px solid #9b9b9b;
	border-radius: 50%;
	width: 64px;
	height: 64px;
	-webkit-animation: spin 1s linear infinite;
			animation: spin 1s linear infinite;
}

.keepz__modal-footer {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	min-height: 5rem;
	height: 66px;
}

@media screen and (max-width: 400px) {
	.keepz__modal-footer {
		height: 58px;
	}
}

.keepz__button {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	font: inherit;
	background-color: #fff;
	color: #222;
	cursor: pointer;
	border: 0;
	border-radius: 0 0 5.5px 5.5px;
	transition: background-color 0.1s linear;
	font-weight: bold;
	width: 100%;
	height: 100%;
}

.keepz__button:disabled {
	background-color: #eee;
	color: #aaa;
	cursor: default;
}

.keepz__button:focus {
	outline: 0;
}
