@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@300;400;500;600;700&display=swap");

* {
	flex-shrink: 0;
}

p {
	margin: 0;
	font-family: Poppins;
	color: #3d4c66;
}

button:hover {
	cursor: pointer;
}

button:active {
	transform: scale(0.95);
}

input {
	outline: 0;
}

input::placeholder {
	color: #b0bec9;
}

input:hover:not(.no-focus):not(:disabled) {
	border-color: #2797e8 !important;
}

input:focus:not(.no-focus):not(:disabled) {
	border: 2px solid #2797e8 !important;
}

html,
body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

.hide {
	display: none !important;
}

.no-scroll {
	overflow: hidden !important;
}

body > .loading-container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

body > .popup-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	background-color: rgba(123, 140, 152, 0.3);
	z-index: 2;
}

body > .popup-wrapper > .popup {
	display: none;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

body > .popup-wrapper > .popup.current {
	display: flex;
}

body > .popup-wrapper > .popup > .header {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

body > .popup-wrapper > .popup > .header > button {
	display: flex;
	align-items: center;
	justify-content: center;
}

body > .popup-wrapper > .popup > .body {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-y: auto;
	flex-shrink: 1;
}

body > .popup-wrapper > .popup > .body > .loader-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	border-radius: 0 0 8px 8px;
}

body > .popup-wrapper > .popup > .body > .loader-wrapper > img {
	width: 90px;
	height: 90px;
}

body > .popup-wrapper > .popup {
	max-width: 95%;
	border-radius: 12px;
	width: 600px;
}

body > .popup-wrapper > .popup > .header {
	padding: 15px;
	border-bottom: 1px solid #3d4c66;
}

body > .popup-wrapper > .popup > .header > p {
	font-size: 20px;
	font-weight: 500;
	width: 0;
	flex-grow: 1;
}

body > .popup-wrapper > .popup > .header > button {
	margin-left: 10px;
	width: 35px;
	height: 35px;
	border: 1px solid #3d4c66;
	border-radius: 8px;
	background-color: transparent;
}

body > .popup-wrapper > .popup > .header > button > img {
	width: 20px;
	height: 20px;
}

body > .popup-wrapper > .popup > .body {
	padding: 20px;
}

body > .popup-wrapper > .popup.generic-confirmation > .body > p {
	font-size: 18px;
	font-weight: 400;
}

body > .popup-wrapper > .popup.generic-confirmation > .body > .button-row {
	width: 100%;
	display: flex;
	align-items: center;
	margin-top: 20px;
}

body > .popup-wrapper > .popup.generic-confirmation > .body > .button-row > button {
	flex: 1;
	height: 44px;
	margin-left: 10px;
	border-radius: 6px;
	font-family: Poppins;
	font-size: 18px;
}

body > .popup-wrapper > .popup.generic-confirmation > .body > .button-row > button:first-of-type {
	border: 1px solid #3d4c66;
	background-color: transparent;
	color: #3d4c66;
}

body > .popup-wrapper > .popup.generic-confirmation > .body > .button-row > button:last-of-type {
	border: 0;
	background-color: #2797e8;
	color: #fff;
}

body > .popup-wrapper > .popup#error {
	width: 450px;
}

body > .popup-wrapper > .popup#error > .body > p {
	font-size: 18px;
	font-weight: 400;
}

body > .popup-wrapper > .popup#error > .body > p.error-code {
	margin-top: 10px;
}

@media (max-width: 374px) {
	body {
		padding: 8.02vw;
		padding-bottom: 0;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}

	.col {
		width: 100%;
		position: relative;
	}

	.col.custom {
		margin-bottom: 5.35vw;
	}

	.col.custom > button {
		position: absolute;
		top: 18.18vw;
		left: 0;
		width: 11.23vw;
		height: 11.23vw;
		z-index: 2;
		border: 0;
		border-radius: 1.07vw;
		background-color: #f9f8f8;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.col.custom > button > img {
		width: 5.35vw;
		height: 5.35vw;
	}

	.col > .main-content {
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.col > .main-content > img.oliver-logo {
		width: 26.74vw;
		height: 9.36vw;
		margin-bottom: 9.36vw;
	}

	.col > .main-content > p {
		font-size: 6.42vw;
		font-weight: 400;
	}

	.col > .main-content > p > b {
		font-weight: 600;
	}

	.col > .main-content > .recommendation {
		display: none;
	}

	.col > .footer {
		display: none;
	}

	.col.iframe {
		width: calc(100% + 16.04vw);
		transform: translateX(-8.02vw);
		height: 0;
		flex-grow: 1;
	}

	.col.iframe > iframe {
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 375px) and (max-width: 1140px) {
	body {
		padding: 30px;
		padding-bottom: 0;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}

	.col {
		width: 100%;
		position: relative;
	}

	.col.custom {
		margin-bottom: 20px;
	}

	.col.custom > button {
		position: absolute;
		top: 68px;
		left: 0;
		width: 42px;
		height: 42px;
		z-index: 2;
		border: 0;
		border-radius: 4px;
		background-color: #f9f8f8;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.col.custom > button > img {
		width: 20px;
		height: 20px;
	}

	.col > .main-content {
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.col > .main-content > img.oliver-logo {
		width: 100px;
		height: 35px;
		margin-bottom: 35px;
	}

	.col > .main-content > p {
		font-size: 24px;
		font-weight: 400;
	}

	.col > .main-content > p > b {
		font-weight: 600;
	}

	.col > .main-content > .recommendation {
		display: none;
	}

	.col > .footer {
		display: none;
	}

	.col.iframe {
		width: calc(100% + 60px);
		transform: translateX(-30px);
		height: 0;
		flex-grow: 1;
	}

	.col.iframe > iframe {
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 1140px) and (max-width: 1503px) {
	body {
		display: flex;
	}

	body > .col {
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	body > .col.custom {
		flex: 1.75;
		z-index: 2;
	}

	body > .col.iframe {
		flex: 2;
		/* transform: translateX(-4.99vw); */
		background-color: transparent;
	}

	body > .col.custom {
		padding: 2vw;
		box-sizing: border-box;
	}

	body > .col.custom > button {
		width: 3.39vw;
		height: 3.39vw;
		border-radius: 0.33vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #f9f8f8;
		border: 0;
	}

	body > .col.custom > button > img {
		width: 1.6vw;
		height: 1.6vw;
	}

	body > .col.custom > .main-content {
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		align-self: flex-end;
	}

	body > .col.custom > .main-content > img.oliver-logo {
		width: 6.65vw;
		height: 2.33vw;
		margin: auto 0 2.4vw 0;
	}

	body > .col.custom > .main-content > p {
		font-size: 2.4vw;
		font-weight: 400;
		margin-bottom: 2.66vw;
	}

	body > .col.custom > .main-content > img.recommendation {
		width: 27.81vw;
		height: 17.56vw;
		margin-bottom: auto;
	}

	body > .col.custom > .main-content > p > b {
		font-weight: 600;
	}

	body > .col.custom > .footer {
		display: flex;
		align-items: center;
	}

	body > .col.custom > .footer > a {
		font-family: Poppins;
		font-size: 0.93vw;
		font-weight: 500;
		color: #758696;
		padding-left: 0.8vw;
		margin-left: 0.8vw;
		border-left: 0.07vw solid #d4dee5;
		height: 1.33vw;
		text-decoration: 0;
	}

	body > .col.custom > .footer > a:hover {
		cursor: pointer;
		text-decoration: underline;
	}

	body > .col.custom > .footer > a:first-of-type {
		margin: 0;
		padding: 0;
		border: 0;
	}

	body > .col.iframe > iframe {
		width: 100%;
		height: 0;
		flex-grow: 1;
		border: none;
	}
}

@media (min-width: 1054px) and (max-width: 2047px) {
	body {
		display: flex;
	}

	body > .col {
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	body > .col.custom {
		flex: 1.75;
		z-index: 2;
	}

	body > .col.iframe {
		flex: 2;
		/* transform: translateX(-75px); */
		background-color: transparent;
	}

	body > .col.custom {
		padding: 30px;
		box-sizing: border-box;
	}

	body > .col.custom > button {
		width: 51px;
		height: 51px;
		border-radius: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #f9f8f8;
		border: 0;
	}

	body > .col.custom > button > img {
		width: 24px;
		height: 24px;
	}

	body > .col.custom > .main-content {
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		align-self: flex-end;
	}

	body > .col.custom > .main-content > img.oliver-logo {
		width: 100px;
		height: 35px;
		margin: auto 0 36px 0;
	}

	body > .col.custom > .main-content > p {
		font-size: 36px;
		font-weight: 400;
		margin-bottom: 40px;
	}

	body > .col.custom > .main-content > img.recommendation {
		width: 418px;
		height: 264px;
		margin-bottom: auto;
	}

	body > .col.custom > .main-content > p > b {
		font-weight: 600;
	}

	body > .col.custom > .footer {
		display: flex;
		align-items: center;
	}

	body > .col.custom > .footer > a {
		font-family: Poppins;
		font-size: 14px;
		font-weight: 500;
		color: #758696;
		padding-left: 12px;
		margin-left: 12px;
		border-left: 1px solid #d4dee5;
		height: 20px;
		text-decoration: 0;
	}

	body > .col.custom > .footer > a:hover {
		cursor: pointer;
		text-decoration: underline;
	}

	body > .col.custom > .footer > a:first-of-type {
		margin: 0;
		padding: 0;
		border: 0;
	}

	body > .col.iframe > iframe {
		width: 100%;
		height: 0;
		flex-grow: 1;
		border: none;
	}
}

@media (min-width: 2048px) {
	body {
		display: flex;
	}

	body > .col {
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	body > .col.custom {
		flex: 1.75;
		z-index: 2;
	}

	body > .col.iframe {
		flex: 2;
		/* transform: translateX(-3.66vw); */
		background-color: transparent;
	}

	body > .col.custom {
		padding: 1.46vw;
		box-sizing: border-box;
	}

	body > .col.custom > button {
		width: 2.49vw;
		height: 2.49vw;
		border-radius: 0.24vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #f9f8f8;
		border: 0;
	}

	body > .col.custom > button > img {
		width: 1.17vw;
		height: 1.17vw;
	}

	body > .col.custom > .main-content {
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		align-self: flex-end;
	}

	body > .col.custom > .main-content > img.oliver-logo {
		width: 4.88vw;
		height: 1.71vw;
		margin: auto 0 1.76vw 0;
	}

	body > .col.custom > .main-content > p {
		font-size: 1.76vw;
		font-weight: 400;
		margin-bottom: 1.95vw;
	}

	body > .col.custom > .main-content > img.recommendation {
		width: 20.41vw;
		height: 12.89vw;
		margin-bottom: auto;
	}

	body > .col.custom > .main-content > p > b {
		font-weight: 600;
	}

	body > .col.custom > .footer {
		display: flex;
		align-items: center;
	}

	body > .col.custom > .footer > a {
		font-family: Poppins;
		font-size: 0.68vw;
		font-weight: 500;
		color: #758696;
		padding-left: 0.59vw;
		margin-left: 0.59vw;
		border-left: 0.05vw solid #d4dee5;
		height: 0.98vw;
		text-decoration: 0;
	}

	body > .col.custom > .footer > a:hover {
		cursor: pointer;
		text-decoration: underline;
	}

	body > .col.custom > .footer > a:first-of-type {
		margin: 0;
		padding: 0;
		border: 0;
	}

	body > .col.iframe > iframe {
		width: 100%;
		height: 0;
		flex-grow: 1;
		border: none;
	}
}

/*#region*/
/* Loading Animation */

@keyframes animate-svg-fill-1 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #a1e663;
	}
}

.ologo-1 {
	animation: animate-svg-fill-1 3s ease-in 0.2s both infinite;
}

@keyframes animate-svg-fill-2 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #47d2a5;
	}
}

.ologo-2 {
	animation: animate-svg-fill-2 3s ease-in 0.4s both infinite;
}

@keyframes animate-svg-fill-3 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #1db9ca;
	}
}

.ologo-3 {
	animation: animate-svg-fill-3 3s ease-in 0.6s both infinite;
}

@keyframes animate-svg-fill-4 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #2797e8;
	}
}

.ologo-4 {
	animation: animate-svg-fill-4 3s ease-in 0.8s both infinite;
}

@keyframes animate-svg-fill-5 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #a568bc;
	}
}

.ologo-5 {
	animation: animate-svg-fill-5 3s ease-in 0.9s both infinite;
}

@keyframes animate-svg-fill-6 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #ff525f;
	}
}

.ologo-6 {
	animation: animate-svg-fill-6 3s ease-in 1.1s both infinite;
}

@keyframes animate-svg-fill-7 {
	0%,
	80%,
	100% {
		transform: scale(0.98);
		fill: transparent;
	}

	10%,
	70% {
		transform: scale(1);
		fill: #ff8552;
	}
}

.ologo-7 {
	animation: animate-svg-fill-7 3s ease-in 1.2s both infinite;
}

@keyframes animate-svg-fill-8 {
	0% {
		transform: translate(35px, -35px);
		fill: transparent;
	}

	10%,
	40% {
		transform: translate(0px, 0px);
		fill: #ffd026;
	}

	50%,
	100% {
		transform: translate(-35px, 35px);
		fill: transparent;
	}
}

.ologo-8 {
	animation: animate-svg-fill-8 3s ease-in-out 1.3s both infinite;
}

.st0 {
	fill: #a1e663;
}

.st1 {
	fill: #47d2a5;
}

.st2 {
	fill: #1db9ca;
}

.st3 {
	fill: #2797e8;
}

.st4 {
	fill: #a568bc;
}

.st5 {
	fill: #ff525f;
}

.st6 {
	fill: #ff8552;
}

.st7 {
	fill: #ffd026;
}

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

.w-100 {
	width: 100% !important;
}

/*#endregion*/
