@charset "UTF-8";
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}
@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	animation-name: flash;
}
@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
.pulse {
	animation-name: pulse;
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	animation-name: headShake;
	animation-timing-function: ease-in-out;
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.swing {
	animation-name: swing;
	transform-origin: top center;
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
.tada {
	animation-name: tada;
}
@keyframes wobble {
	0% {
		transform: translateZ(0);
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: translateZ(0);
	}
}
.wobble {
	animation-name: wobble;
}
@keyframes jello {
	0%,
	11.1%,
	to {
		transform: translateZ(0);
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes heartBeat {
	0% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.3);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.3);
	}
	70% {
		transform: scale(1);
	}
}
.heartBeat {
	animation-duration: 1.3s;
	animation-name: heartBeat;
	animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	animation-duration: 0.75s;
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	animation-duration: 0.75s;
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	animation-name: bounceOutUp;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInDownBig {
	animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInLeft {
	animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInRight {
	animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInRightBig {
	animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInUpBig {
	animation-name: fadeInUpBig;
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	animation-name: fadeOut;
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}
@keyframes flip {
	0% {
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	}
	40% {
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	}
	50% {
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	}
	80% {
		animation-timing-function: ease-in;
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
	}
	to {
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	}
}
.animated.flip {
	animation-name: flip;
	backface-visibility: visible;
}
@keyframes flipInX {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg);
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	animation-name: flipInX;
	backface-visibility: visible !important;
}
@keyframes flipInY {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg);
	}
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateY(10deg);
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	animation-name: flipInY;
	backface-visibility: visible !important;
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg);
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
}
.flipOutX {
	animation-duration: 0.75s;
	animation-name: flipOutX;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg);
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg);
	}
}
.flipOutY {
	animation-duration: 0.75s;
	animation-name: flipOutY;
	backface-visibility: visible !important;
}
@keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg);
	}
	60% {
		opacity: 1;
		transform: skewX(20deg);
	}
	80% {
		transform: skewX(-5deg);
	}
	to {
		transform: translateZ(0);
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(30deg);
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: center;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: right bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom;
	}
	to {
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	0% {
		opacity: 1;
		transform-origin: center;
	}
	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform-origin: left bottom;
	}
	to {
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform-origin: right bottom;
	}
	to {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: right bottom;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform-origin: left bottom;
	}
	to {
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform-origin: right bottom;
	}
	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		animation-timing-function: ease-in-out;
		transform-origin: top left;
	}
	20%,
	60% {
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left;
	}
	40%,
	80% {
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg);
		transform-origin: top left;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 700px, 0);
	}
}
.hinge {
	animation-duration: 2s;
	animation-name: hinge;
}
@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}
	50% {
		transform: rotate(-10deg);
	}
	70% {
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.jackInTheBox {
	animation-name: jackInTheBox;
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.rollIn {
	animation-name: rollIn;
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
.rollOut {
	animation-name: rollOut;
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomInDown {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
}
@keyframes zoomInLeft {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	}
}
@keyframes zoomInRight {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	0% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	}
	60% {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	}
	to {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	}
	to {
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInDown {
	animation-name: slideInDown;
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInRight {
	animation-name: slideInRight;
}
@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInUp {
	animation-name: slideInUp;
}
@keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}
.animated {
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.delay-1s {
	animation-delay: 1s;
}
.animated.delay-2s {
	animation-delay: 2s;
}
.animated.delay-3s {
	animation-delay: 3s;
}
.animated.delay-4s {
	animation-delay: 4s;
}
.animated.delay-5s {
	animation-delay: 5s;
}
.animated.fast {
	animation-duration: 0.8s;
}
.animated.faster {
	animation-duration: 0.5s;
}
@media (prefers-reduced-motion: reduce), (print) {
	.animated {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}
}
.bold {
	font-family: Ubuntu-Bold;
}
.light {
	font-family: Ubuntu-Light;
}
.casino__qa.card .card-body p,
.casino__stars a,
.medium,
.widget__wrapper .widget__bottomtext,
.widget__wrapper .widget__subtext,
.widget__wrapper .widget__tag {
	font-family: Ubuntu-Medium;
}
.italic {
	font-family: Ubuntu-Italic;
}
.contentblocks figure span,
.contentblocks figure + span,
.light-italic {
	font-family: Ubuntu-LightItalic;
}
.bold-italic,
.content__wrapper .category {
	font-family: Ubuntu-BoldItalic;
}
.regular {
	font-family: Ubuntu-Regular;
}
.calgary-regular {
	font-family: Calgary-Regular;
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Italic;
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/Ubuntu-Italic.eot);
	src: url(../fonts/Ubuntu-Italic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Italic.woff2) format('woff2'),
		url(../fonts/Ubuntu-Italic.woff) format('woff'),
		url(../fonts/Ubuntu-Italic.ttf) format('truetype'),
		url(../images/Ubuntu-Italic.svg#Ubuntu-Italic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-MediumItalic;
	font-style: italic;
	font-weight: 500;
	src: url(../fonts/Ubuntu-MediumItalic.eot);
	src: url(../fonts/Ubuntu-MediumItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-MediumItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-MediumItalic.woff) format('woff'),
		url(../fonts/Ubuntu-MediumItalic.ttf) format('truetype'),
		url(../images/Ubuntu-MediumItalic.svg#Ubuntu-MediumItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-LightItalic;
	font-style: italic;
	font-weight: 300;
	src: url(../fonts/Ubuntu-LightItalic.eot);
	src: url(../fonts/Ubuntu-LightItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-LightItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-LightItalic.woff) format('woff'),
		url(../fonts/Ubuntu-LightItalic.ttf) format('truetype'),
		url(../images/Ubuntu-LightItalic.svg#Ubuntu-LightItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Light;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/Ubuntu-Light.eot);
	src: url(../fonts/Ubuntu-Light.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Light.woff2) format('woff2'),
		url(../fonts/Ubuntu-Light.woff) format('woff'),
		url(../fonts/Ubuntu-Light.ttf) format('truetype'),
		url(../images/Ubuntu-Light.svg#Ubuntu-Light) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Medium;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Ubuntu-Medium.eot);
	src: url(../fonts/Ubuntu-Medium.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Medium.woff2) format('woff2'),
		url(../fonts/Ubuntu-Medium.woff) format('woff'),
		url(../fonts/Ubuntu-Medium.ttf) format('truetype'),
		url(../images/Ubuntu-Medium.svg#Ubuntu-Medium) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Ubuntu-Regular.eot);
	src: url(../fonts/Ubuntu-Regular.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Regular.woff2) format('woff2'),
		url(../fonts/Ubuntu-Regular.woff) format('woff'),
		url(../fonts/Ubuntu-Regular.ttf) format('truetype'),
		url(../images/Ubuntu-Regular.svg#Ubuntu-Regular) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-BoldItalic;
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/Ubuntu-BoldItalic.eot);
	src: url(../fonts/Ubuntu-BoldItalic.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-BoldItalic.woff2) format('woff2'),
		url(../fonts/Ubuntu-BoldItalic.woff) format('woff'),
		url(../fonts/Ubuntu-BoldItalic.ttf) format('truetype'),
		url(../images/Ubuntu-BoldItalic.svg#Ubuntu-BoldItalic) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Ubuntu-Bold;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Ubuntu-Bold.eot);
	src: url(../fonts/Ubuntu-Bold.eot#iefix) format('embedded-opentype'),
		url(../fonts/Ubuntu-Bold.woff2) format('woff2'),
		url(../fonts/Ubuntu-Bold.woff) format('woff'),
		url(../fonts/Ubuntu-Bold.ttf) format('truetype'),
		url(../images/Ubuntu-Bold.svg#Ubuntu-Bold) format('svg');
}
@font-face {
	font-display: swap;
	font-family: Calgary-Regular;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/CalgaryScript-Regular.eot);
	src: url(../fonts/CalgaryScript-Regular.eot#iefix) format('embedded-opentype'),
		url(../fonts/CalgaryScript-Regular.woff2) format('woff2'),
		url(../fonts/CalgaryScript-Regular.woff) format('woff'),
		url(../fonts/CalgaryScript-Regular.ttf) format('truetype'),
		url(../images/CalgaryScript-Regular.svg#CalgaryScript-Regular) format('svg');
}
/*!
 * Font Awesome Pro 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
.fa-star:before {
	content: '\f005';
}
.fa-check:before {
	content: '\f00c';
}
.fa-times:before {
	content: '\f00d';
}
.fa-long-arrow-left:before {
	content: '\f177';
}
.fa-bullhorn:before {
	content: '\f0a1';
}
.fa-home:after {
	content: '\f015';
}
.fa-home-alt:after {
	content: '\f80a';
}
.fa-star-half:after {
	content: '\f089';
}
.fa-star-half-alt:after {
	content: '\f5c0';
}
.fa-search:before {
	content: '\f002';
}
.fa-chevron-circle-left:after {
	content: '\f137';
}
.fa-chevron-circle-right:after {
	content: '\f138';
}
.fa-file-pdf:before {
	content: '\f1c1';
}
.fa-plus:before {
	content: '\f067';
}
@font-face {
	font-display: swap;
	font-family: Font Awesome\5 Pro;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/fa-regular-400.eot);
	src: url(../fonts/fa-regular-400.eot#iefix) format('embedded-opentype'),
		url(../fonts/fa-regular-400.woff2) format('woff2'),
		url(../fonts/fa-regular-400.woff) format('woff'),
		url(../fonts/fa-regular-400.ttf) format('truetype'),
		url(../images/fa-regular-400.svg#fontawesome) format('svg');
}
.far {
	font-weight: 400;
}
@font-face {
	font-display: swap;
	font-family: Font Awesome\5 Pro;
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/fa-solid-900.eot);
	src: url(../fonts/fa-solid-900.eot#iefix) format('embedded-opentype'),
		url(../fonts/fa-solid-900.woff2) format('woff2'),
		url(../fonts/fa-solid-900.woff) format('woff'),
		url(../fonts/fa-solid-900.ttf) format('truetype'),
		url(../images/fa-solid-900.svg#fontawesome) format('svg');
}
.fa,
.far,
.fas {
	font-family: Font Awesome\5 Pro;
}
.fa,
.fas {
	font-weight: 900;
}
.fa-lightbulb:before {
	content: '\f0eb';
}
.fa-lightbulb-dollar:before {
	content: '\f670';
}
.fa-lightbulb-exclamation:before {
	content: '\f671';
}
.fa-lightbulb-on:before {
	content: '\f672';
}
.fa-lightbulb-slash:before {
	content: '\f673';
}
.fad.fa-lightbulb:after {
	content: '\10f0eb';
}
.fad.fa-lightbulb-dollar:after {
	content: '\10f670';
}
.fad.fa-lightbulb-exclamation:after {
	content: '\10f671';
}
.fad.fa-lightbulb-on:after {
	content: '\10f672';
}
.fad.fa-lightbulb-slash:after {
	content: '\10f673';
}
.casino__wrapper {
	background: #fff;
	border-radius: 33px;
	box-shadow: 0 42px 49px 0 hsla(0, 0%, 55%, 0.36);
	margin-bottom: 40px;
	overflow: hidden;
	z-index: 1;
}
@media (max-width: 767.98px) {
	.casino__wrapper {
		margin: 0 -10px 40px;
	}
}
.casino__wrapper figure img {
	max-width: 275px;
	position: static;
	top: 0;
	width: 100%;
}
@media (max-width: 767.98px) {
	.casino__wrapper figure img {
		max-width: none;
	}
}
.casino__top {
	display: flex;
}
.casino__top h1,
.casino__top p {
	max-width: 600px;
}
@media (max-width: 767.98px) {
	.casino__top {
		display: block;
	}
}
.casino__mobile {
	left: 0;
	margin-bottom: 40px;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1;
	z-index: -999;
}
.casino__mobile .casino__top {
	background: #fff;
	border-radius: 33px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	height: 87px;
	overflow: hidden;
	position: relative;
}
.casino__mobile .casino__top figure {
	left: 0;
	position: absolute;
	top: 0;
}
.casino__mobile .casino__top img {
	max-width: 160px;
}
.casino__mobile .casino__top + a.btn {
	bottom: inherit;
	left: inherit;
	margin-top: 0 !important;
	right: 125px;
	top: 11px;
}
.casino__mobile .casino__top + a + img,
.casino__mobile .casino__top + a.btn + img,
.casino__mobile .casino__top + img {
	height: 80%;
	position: absolute;
	right: 5%;
	top: 10%;
	width: auto;
}
@media (max-width: 767.98px) {
	.casino__mobile .casino__top + a + img,
	.casino__mobile .casino__top + a.btn + img,
	.casino__mobile .casino__top + img {
		right: 7%;
	}
}
.casino__mobile.show {
	display: block;
	opacity: 1;
	z-index: 2;
}
.casino__mobile .casino__stars {
	margin-left: 190px;
	padding-left: 0;
	padding-top: 15px;
	position: relative;
	width: 100%;
}
.casino__mobile .casino__stars .casino__stars_title {
	color: #4e2b62;
	font-family: Ubuntu-Bold;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}
.casino__mobile .casino__stars i {
	font-size: 20px;
}
.casino__mobile .casino__intro {
	padding-bottom: 20px;
}
.casino__mobile .btn {
	bottom: 30px;
	color: #fff;
	font-family: Ubuntu-Bold;
	font-size: 20px;
	left: 60px;
	margin-bottom: 0;
	margin-top: 20px;
	position: absolute;
	right: 60px;
	width: auto !important;
}
.casino__mobile h2 {
	color: #4e2b62;
	font-size: 24px;
	margin-bottom: 5px;
}
.casino .btn-wrapper {
	display: none;
	padding: 50px 60px;
}
.casino__bottom {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 60px 20px;
}
.casino__bottom img {
	height: auto;
	max-width: 430px;
	width: 100%;
}
.casino__bottom h3 {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 15px;
}
@media (max-width: 767.98px) {
	.casino__bottom {
		padding: 20px 30px;
	}
	.casino__bottom p,
	.casino__bottom span {
		font-size: 18px !important;
		line-height: 27px !important;
	}
	.casino__bottom li {
		font-size: 16px;
		line-height: 24px;
	}
}
.casino__bottom .casino__intro--header {
	font-family: Ubuntu-Bold;
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 15px;
}
.casino .btn {
	display: block;
	width: 100%;
}
.casino .btn.mobile {
	display: none;
}
@media (max-width: 767.98px) {
	.casino .casino__wrapper .btn + .btn {
		background: #fff;
		border: 4px solid #fff;
		border-radius: 0;
		border-top-left-radius: 32.5px;
		border-top-right-radius: 32.5px;
		bottom: 0;
		left: 0;
		position: fixed;
		z-index: 1;
	}
	.casino .casino__wrapper .btn + .btn:before {
		background: linear-gradient(180deg, #ff9649, #ff725d 46%, #ff4a6b);
		border-radius: 32.5px;
		bottom: 0;
		content: '';
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 1;
	}
	.casino .casino__wrapper .btn + .btn span {
		position: relative;
		z-index: 2;
	}
}
.casino__intro {
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
}
.casino__intro img {
	max-width: 200px;
	position: absolute;
	right: 0;
	top: 0;
}
@media (max-width: 1019.98px) {
	.casino__intro img {
		max-width: 150px;
	}
}
@media (max-width: 767.98px) {
	.casino__intro img {
		bottom: 100%;
		max-width: 70px;
		top: auto;
		transform: translateY(30%);
	}
}
@media only screen and (max-width: 400px) {
	.casino__intro img {
		bottom: 100%;
		max-width: 70px;
		top: auto;
		transform: translateY(50%);
	}
}
.casino__stars {
	padding: 30px 50px;
}
@media (max-width: 767.98px) {
	.casino__stars {
		padding: 20px 30px;
	}
}
.casino__stars h1 {
	font-size: 40px;
	margin-bottom: 5px;
}
.casino__stars i {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(180deg, #fee12c, #ffae28);
	-webkit-background-clip: text;
	font-size: 25px;
	margin-bottom: 10px;
}
.casino__stars i.grey {
	-webkit-text-fill-color: initial;
	background: transparent;
	color: #ececec;
}
.casino__stars i.rating {
	font-family: Ubuntu-Bold;
	font-style: normal;
	padding: 0 0 0 3px;
}
.casino__stars a {
	color: #b2b2b2;
	display: block;
	font-size: 16px;
	letter-spacing: 0;
	margin-bottom: 25px;
}
.casino blockquote {
	margin-bottom: 30px;
	padding-right: 220px;
	position: relative;
}
.casino blockquote:before {
	content: '“';
	left: -10px;
	top: -32px;
}
.casino blockquote:after,
.casino blockquote:before {
	color: #593070;
	font-family: Ubuntu-Bold;
	font-size: 60px;
	opacity: 0.2;
	position: absolute;
}
.casino blockquote:after {
	bottom: -40px;
	content: '”';
	right: 210px;
}
@media (max-width: 1019.98px) {
	.casino blockquote:after {
		right: 160px;
	}
}
@media (max-width: 767.98px) {
	.casino blockquote:after {
		right: 90px;
	}
}
@media only screen and (max-width: 400px) {
	.casino blockquote:after {
		right: -15px;
	}
}
@media (max-width: 1019.98px) {
	.casino blockquote {
		padding-right: 170px;
	}
}
@media (max-width: 767.98px) {
	.casino blockquote {
		padding-right: 0;
	}
}
@media only screen and (max-width: 400px) {
	.casino blockquote {
		padding-right: 0;
	}
}
.casino blockquote p {
	font-family: Ubuntu-Regular;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.5em;
	position: relative;
}
.casino__procons {
	flex: 1;
	margin-bottom: 35px;
}
@media (max-width: 767.98px) {
	.casino__procons {
		flex: none;
	}
}
.casino__procons p {
	font-family: Ubuntu-Bold;
	font-size: 24px;
	margin-bottom: 20px;
}
.casino__procons ul {
	list-style-type: none;
	padding-left: 0;
	padding-right: 30px;
}
.casino__procons ul li {
	color: #4e2b62;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 15px;
	padding-left: 30px;
	position: relative;
}
.casino__procons ul li i {
	color: #00a850;
	font-size: 16px;
	left: 0;
	position: absolute;
	top: 5px;
}
.casino__procons ul li:last-child {
	margin-bottom: 0;
}
.casino__procons:last-of-type i {
	color: #238bfc;
}
.casino__qa .temporarytext {
	padding-top: 30px;
}
.casino__qa.card {
	margin-bottom: 40px;
}
@media (max-width: 1019.98px) {
	.casino__qa.card {
		margin-bottom: 30px;
	}
}
@media (max-width: 767.98px) {
	.casino__qa.card h2 {
		font-size: 16px;
		margin-bottom: 0;
	}
}
.casino__qa.card .card-header button {
	padding: 0;
}
.casino__qa.card .card-header button i {
	font-size: 18px;
}
.casino__qa.card .card-body {
	padding: 0;
}
.casino__qa.card .card-body p {
	align-items: center;
	background: #f6f4f7;
	display: flex;
	flex-direction: row;
	gap: 5px;
	justify-content: space-between;
	margin-bottom: 0;
	padding: 20px 30px;
}
.casino__qa.card .card-body p b {
	font-weight: 400;
}
@media (max-width: 767.98px) {
	.casino__qa.card .card-body p b {
		display: block;
	}
}
.casino__qa.card .card-body p img {
	background: #fff;
	border: 1px solid #f6f4f7;
	border-radius: 16px;
	height: auto;
	padding: 5px 10px;
	width: 60px;
}
@media (max-width: 767.98px) {
	.casino__qa.card .card-body p img {
		float: none;
	}
}
.casino__qa.card .card-body p span {
	color: #4e2b62;
	float: right;
	font-family: Ubuntu-Regular;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 24px;
	margin-left: 5px;
	text-align: right;
}
@media (max-width: 767.98px) {
	.casino__qa.card .card-body p span {
		display: block;
		float: none;
		margin-left: 0;
		text-align: left;
	}
}
.casino__qa.card .card-body p:nth-child(2n) {
	background: #fff;
}
.casino__qa.card + .btn {
	margin-bottom: 40px !important;
}
@media (max-width: 1019.98px) {
	.casino__qa.card + .btn {
		margin-bottom: 30px !important;
	}
}
.casino__qa__title h2 {
	color: #4e2b62;
	font-family: Ubuntu-Bold;
	font-size: 1.25rem;
	letter-spacing: 0;
}
@media (max-width: 767.98px) {
	.casino__qa__title h2 {
		font-size: 16px !important;
		margin-bottom: 0;
	}
}
.casino__qa__title p {
	margin-bottom: 0 !important;
}
.casino__qa .review {
	padding: 1.5rem 1.875rem 1.875rem 0.75rem !important;
}
.casino__qa__content .card-header button {
	cursor: auto;
	padding-bottom: 5px;
	padding-right: 30px;
}
.casino__qa__content .card-header button i {
	display: none;
}
.casino__qa__content .card-header + div {
	display: block !important;
	height: auto !important;
}
.casino__qa__content #accordion ol {
	counter-reset: item;
}
.casino__qa__content #accordion ol li {
	display: block;
	position: relative;
}
.casino__qa__content #accordion ol li a {
	color: #4e2b62;
	font-family: Ubuntu-Regular;
	font-size: 1rem;
	line-height: 1.75rem;
	text-decoration: underline;
	transition: all 0.2s ease-in-out;
}
.casino__qa__content #accordion ol li a:hover {
	color: #f23f2d;
}
.casino__qa__content #accordion ol li:before {
	color: #238bfc;
	content: counters(item, '.');
	counter-increment: item;
	font-family: Ubuntu-Medium;
	font-size: 0.875rem;
	line-height: 1.75rem;
	margin-right: 5px;
}
.casino__qa.card .card-header button {
	cursor: auto;
}
.casino__qa.card .card-header button i {
	display: none;
}
.casino__qa.card .card-header + div {
	display: block !important;
	height: auto !important;
}
.casino .btn-primary.shadow {
	margin-bottom: 40px;
}
.casino .widget__content .widget__header {
	color: #4e2b62;
	font-family: Ubuntu-Bold;
	font-size: 2rem;
}
.casino .widget__content .widget__slots {
	color: #238bfc;
	font-family: Ubuntu-Bold;
	font-size: 40px;
	letter-spacing: 0;
	margin-bottom: 5px;
}
.casino .widget__wrapper {
	padding: 0;
}
.casino .casino__author {
	padding-left: 60px !important;
}
@media (max-width: 1019.98px) {
	.casino .casino__author {
		padding-left: 1.875rem !important;
	}
}
.casino__author {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 1.1875rem;
	padding: 0 60px 50px;
}
@media (max-width: 1019.98px) {
	.casino__author {
		align-items: baseline;
		flex-direction: column;
		padding-right: 1.875rem;
	}
}
.casino__author--image {
	background: #e5e0e8;
	border-radius: 33px;
	width: 12.9375rem;
}
.casino__author--image a {
	align-items: center;
	display: flex;
	gap: 0.8125rem;
	padding: 0.5625rem;
}
.casino__author--image a img {
	aspect-ratio: 1/1;
	border-radius: 50%;
	height: 2.75rem;
	width: 2.75rem;
}
.casino__author--image a p {
	margin: 0;
}
.casino__author--image a p span {
	color: #4e2b62;
	display: block;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
}
.casino__author--image a p span:first-child {
	font-family: Ubuntu-Regular;
	font-weight: 700;
}
.casino__author--image a p span:last-child {
	font-family: Ubuntu-Medium;
	font-weight: 500;
}
.casino__author--content button {
	text-align: left;
}
.casino__author--content p {
	color: #4e2b62;
	font-family: Ubuntu-Medium;
	font-size: 14px;
	line-height: normal;
	margin: 0;
	opacity: 60%;
}
.casino__author--content button {
	background-color: transparent;
	border: 0;
	color: #f23f2d;
	font-family: Ubuntu-Medium;
	font-size: 0.875rem;
	line-height: normal;
	outline: none;
	padding: 0;
	transition: all 0.2s ease-in-out;
}
.casino__author--content button:hover {
	text-decoration: underline;
}
.casino--image {
	padding-bottom: 1.875rem;
}
.casino--image img {
	border-radius: 2.0625rem;
	width: 100%;
}
.main.scroller .casino__wrapper {
	position: sticky;
	top: 60px;
}
.main.scroller .casino__bottom {
	display: none;
}
.main.scroller .btn-wrapper,
.main.scroller .mobile {
	display: block;
}
.casino blockquote p a {
	color: #f23f2d !important;
}
.casino blockquote p a:hover {
	text-decoration: underline;
}
.trustmodal.show {
	align-items: center;
	display: flex !important;
	justify-content: center;
}
.trustmodal .modal-dialog {
	display: block;
	margin: 0;
	max-width: 530px;
}
.trustmodal .modal-content {
	border-radius: 2.0625rem;
}
.trustmodal .modal-header {
	align-items: center;
	background-color: rgba(78, 43, 98, 0.146);
	flex-direction: row;
	padding: 1.625rem 30px 18px;
}
.trustmodal .modal-header p {
	color: #4e2b62;
	font-family: Ubuntu-Bold;
	font-size: 1.25rem;
	line-height: normal;
	max-width: 22.625rem;
}
.trustmodal .modal-header button {
	background-color: transparent;
	border: 0;
	outline: none;
}
.trustmodal .modal-header button i {
	cursor: pointer;
}
.trustmodal .modal-header button i:before {
	color: #4e2b62;
	font-size: 1.25rem;
	font-weight: 400;
}
.trustmodal .modal--content {
	padding: 1.875rem;
}
.trustmodal .modal--content--header {
	color: #4e2b62;
	font-family: Ubuntu-Bold !important;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0.3125rem !important;
}
.trustmodal .modal--content p {
	color: #4e2b62;
	font-family: Ubuntu-Regular;
	font-size: 1rem;
	line-height: 1.625rem;
	margin-bottom: 1.875rem;
}
.trustmodal .modal--content p:last-child {
	margin-bottom: 0;
}
.trustmodal .modal--content p a {
	color: #f23f2d;
}
.trustmodal .modal--content p a:hover {
	text-decoration: underline;
}
.intro p {
	margin-bottom: 20px;
}
.casino__author {
	padding-bottom: 1.875rem !important;
	padding-left: 1.5625rem !important;
}
.subnav__wrapper {
	background: rgba(255, 75, 108, 0.247);
	border-top-right-radius: 33px;
	padding: 50px;
}
@media (max-width: 1019.98px) {
	.subnav__wrapper {
		border-radius: 0;
	}
}
.subnav__wrapper nav ul {
	list-style-type: none;
	padding-left: 0;
}
.subnav__wrapper nav ul li {
	margin-bottom: 20px;
}
.subnav__wrapper nav ul li a {
	background: #fff;
	border-radius: 32.5px;
	color: #4e2b62;
	display: block;
	font-family: Ubuntu-Bold;
	font-size: 18px;
	letter-spacing: 0;
	padding: 20px 30px;
	transition: all 0.3s ease-in-out;
}
.subnav__wrapper nav ul li:last-child {
	margin-bottom: 0;
}
.subnav__wrapper nav ul li ul {
	margin-top: 20px;
}
.subnav__wrapper nav ul li.active a,
.subnav__wrapper nav ul li:hover a {
	background: #238bfc;
	color: #fff;
}
.subnav__wrapper + .widget__wrapper {
	border-top-right-radius: 0;
}
.widget__wrapper {
	padding: 50px 50px 1px;
	position: sticky;
	top: 20px;
}
@media (max-width: 1259.98px) {
	.widget__wrapper {
		background: #e0dbe3;
		padding: 30px;
	}
}
@media (max-width: 1019.98px) {
	.widget__wrapper {
		background: unset;
		border-bottom-left-radius: 33px;
		border-bottom-right-radius: 33px;
		box-shadow: 0 42px 49px 0 hsla(0, 0%, 55%, 0.36);
		margin-bottom: 20px;
		padding: 0 !important;
		position: relative;
		top: 0;
		z-index: 1;
	}
	.widget__wrapper .widget__content .review {
		align-items: center;
		display: flex !important;
		flex-direction: row;
		gap: 10px;
		justify-content: space-between;
		padding-right: 20px !important;
	}
	.widget__wrapper .widget__content .review__stars {
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		gap: 2px;
	}
	.widget__wrapper .widget__content .review__stars a.review {
		align-items: baseline;
		display: flex;
		gap: 20px;
		justify-content: space-between;
		padding-right: 10px !important;
	}
	.widget__wrapper .review__stars i.fas:not(:first-child),
	.widget__wrapper .widget {
		display: none;
	}
}
@media (max-width: 767.98px) {
	.widget__wrapper {
		padding: 10px;
	}
}
@media only screen and (max-width: 360px) {
	.widget__wrapper {
		padding: 10px;
	}
}
.widget__wrapper--mobile {
	border-radius: 33px;
	display: none;
}
@media (max-width: 1019.98px) {
	.widget__wrapper--mobile,
	.widget__wrapper--mobile .widget {
		display: block;
	}
}
.widget__wrapper .widget {
	border-radius: 33px;
	overflow: hidden;
}
@media only screen and (max-height: 800px) {
	.widget__wrapper .widget {
		margin-bottom: 20px;
	}
	.widget__wrapper .widget:last-of-type {
		margin-bottom: 0;
	}
	.widget__wrapper .widget figure {
		max-height: 110px;
		min-height: 110px;
		position: relative;
	}
	.widget__wrapper .widget figure img {
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
	}
}
.widget__wrapper .widget + .widget {
	margin-top: 30px;
}
.widget__wrapper .widget__content {
	background: #fff;
	padding: 20px 35px;
	position: relative;
}
.widget__wrapper .widget__content--grey {
	background: #f2f8ff;
	position: relative;
}
.widget__wrapper .widget__content--grey img {
	position: absolute;
	right: 30px;
	top: 20px;
}
.widget__wrapper .widget__content h4 {
	color: #4e2b62;
	font-size: 40px;
}
.widget__wrapper .widget__content h2 {
	color: #238bfc;
	font-size: 40px;
	letter-spacing: 0;
	margin-bottom: 5px;
}
.widget__wrapper .widget__content a {
	border: 0;
	border-radius: 32.5px;
	display: block;
	font-family: Ubuntu-Bold;
	font-size: 20px;
	margin: 0 -15px;
	padding: 17px 40px;
}
@media only screen and (max-height: 800px) {
	.widget__wrapper .widget__content h4 {
		font-size: 32px;
	}
	.widget__wrapper .widget__content img {
		height: 40px;
	}
	.widget__wrapper .widget__content h2 {
		font-size: 32px;
	}
	.widget__wrapper .widget__content p {
		font-size: 22px;
		margin-bottom: 5px;
	}
	.widget__wrapper .widget__content p.widget__bottomtext {
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 360px) {
	.widget__wrapper .widget__content img {
		height: 40px;
	}
}
.widget__wrapper .widget__tag {
	background: #593070;
	border-radius: 3px;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	color: #fff;
	font-size: 24px;
	height: 40px;
	line-height: 20px;
	padding: 10px;
	position: absolute;
	right: 30px;
	text-align: right;
	top: -5px;
	transform: rotate(20deg);
	width: auto;
}
.widget__wrapper .widget__tag:before {
	background: #593070;
	border-radius: 3px;
	content: '';
	height: 30px;
	left: -15px;
	position: absolute;
	top: 5px;
	transform: rotate(45deg);
	width: 29px;
	z-index: -1;
}
.widget__wrapper .widget__tag:after {
	background: rgba(229, 224, 232, 0.315);
	border-radius: 50%;
	content: '';
	height: 8px;
	left: -9px;
	position: absolute;
	top: 16px;
	width: 8px;
}
@media only screen and (max-height: 800px) {
	.widget__wrapper .widget__tag {
		top: 11px;
	}
}
.widget__wrapper .widget__subtext {
	color: #238bfc;
	font-size: 24px;
	margin-bottom: 5px;
}
.widget__wrapper .widget__bottomtext {
	color: #4e2b62;
	font-size: 24px;
	margin-bottom: 30px;
}
@media only screen and (max-width: 360px) {
	.widget__wrapper .widget h2,
	.widget__wrapper .widget h4 {
		font-size: 24px;
	}
	.widget__wrapper .widget p {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.widget__wrapper .widget p.widget__bottomtext {
		margin-bottom: 10px;
	}
	.widget__wrapper .widget .btn {
		font-size: 18px;
		padding: 12px 40px;
	}
}
.widget__wrapper .widget--list {
	margin: -30px -30px 0 -25px;
}
@media (max-width: 1259.98px) {
	.widget__wrapper .widget--list {
		margin: 0 -10px;
	}
}
@media (max-width: 767.98px) {
	.widget__wrapper .widget--list {
		margin: auto;
	}
}
.widget__wrapper .widget--list .widget__content {
	padding: 25px 25px 20px;
}
.widget__wrapper .widget--list .widget__content h2 {
	color: #593070;
	font-size: 20px;
	margin: 0;
}
.widget__wrapper .widget--list .widget__content + .widget__content {
	padding: 0;
}
.widget__wrapper .widget--list .widget__content + .widget__content ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.widget__wrapper .widget--list .widget__content + .widget__content ul li {
	border-bottom: 1px solid rgba(224, 219, 227, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 15px 19px 15px 23px;
	gap: 10px;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li:last-child {
	border-bottom: none;
}
.widget__wrapper .widget--list .widget__content + .widget__content ul li a {
	flex: 1;
	margin: 0;
	padding: 0;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	strong {
	color: #593070;
	font-size: 16px;
	line-height: 1.25em;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	.review__content {
	flex: 1;
	line-height: 1em;
	margin: -2px 0 2px;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	.review__content
	.review__stars
	i {
	color: #fecf2e;
	font-size: 16px;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	.review__content
	.review__stars
	i.grey {
	color: #e9e9e9;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	.review__content
	.review__stars
	i.rating {
	font-family: Ubuntu-Bold;
	font-style: normal;
	margin-left: 2px;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a:hover
	strong {
	text-decoration: underline;
}
.widget__wrapper .widget--list .widget__content + .widget__content ul li a + a {
	flex: none;
	margin-left: 5px;
	width: auto;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	+ a.btn-primary {
	border-radius: 10px;
	font-size: 13px;
	padding: 10px 12px;
	transition: transform 0.15s ease-in-out;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	ul
	li
	a
	+ a.btn-primary:hover {
	transform: scale(1.1);
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget {
	border-bottom: 1px solid #efedf1;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget:after {
	display: none;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 12px;
}
.casino-widget-link {
	display: flex;
	width: 100%;
	height: 40px;
	justify-content: center;
	align-items: center;
	background-color: #238bfc;
	color: #fff;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a
	figure {
	border-radius: 8px;
	max-height: 44px;
	min-height: 44px;
	overflow: hidden;
	width: 81px;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a
	figure
	img {
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	top: 0;
	transform: unset;
	width: 100%;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a
	.review__content
	strong {
	display: block;
	font-size: 1rem;
	line-height: normal;
	margin-bottom: 0.25rem;
	position: relative;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a
	.review__content
	.review__bonusses {
	align-items: center;
	color: #238bfc;
	display: flex;
	font-size: 0.875rem;
	line-height: normal;
	position: relative;
}
.widget__wrapper
	.widget--list
	.widget__content
	+ .widget__content
	.casino-widget
	> a
	.review__content
	.review__bonusses:before {
	content: '\f06b';
	font-family: Font Awesome\5 Pro;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: normal;
	margin-right: 0.2rem;
}
.content {
	color: #4e2b62;
}
.content .pl-0,
.content .pr-0 {
	margin-bottom: 35px;
}
@media (max-width: 1019.98px) {
	.content .pl-0,
	.content .pr-0 {
		margin-bottom: 0;
	}
	.content .pl-0 {
		margin-bottom: 35px;
	}
}
@media (max-width: 767.98px) {
	.content .pl-0,
	.content .pr-0 {
		padding: 0 10px !important;
	}
}
.content__wrapper {
	background: #fff;
	border-radius: 33px;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	height: 100%;
	padding: 40px 60px;
	position: relative;
	z-index: 1;
}
@media (max-width: 1019.98px) {
	.content__wrapper {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-top-right-radius: 33px;
	}
}
@media (max-width: 767.98px) {
	.content__wrapper {
		padding: 24px;
	}
}
.content__wrapper .category {
	color: #238bfc;
	font-size: 16px;
	font-weight: italic;
	letter-spacing: 0;
	line-height: 24px;
	position: absolute;
	right: 40px;
	top: 10px;
}
.content__wrapper .category i {
	margin-right: 5px;
}
@media (max-width: 767.98px) {
	.content__wrapper .category {
		margin-bottom: 10px;
		position: static;
	}
}
.content__wrapper h1 {
	font-size: 40px;
	letter-spacing: 0;
	line-height: 43px;
	margin-bottom: 23px;
	padding-right: 130px;
}
.content__wrapper strong {
	font-size: 24px;
	letter-spacing: 0;
	line-height: 26px;
	margin-bottom: 23px;
	padding-right: 130px;
	color: #4e2b62;
}
@media (max-width: 767.98px) {
	.content__wrapper h1 {
		padding-right: 0;
	}
}
.content__wrapper h1 + p {
	font-family: Ubuntu-Bold;
	font-size: 28px;
	letter-spacing: 0;
	line-height: 36px;
	margin-bottom: 30px;
}
@media (max-width: 767.98px) {
	.content__wrapper h1 + p {
		color: #4e2b62;
		font-size: 18px;
		letter-spacing: 0;
		line-height: 27px;
	}
}
.contentblocks .col-sm-12 .col-md-6 {
	margin-bottom: 30px !important;
	padding-right: 15px;
}
.contentblocks .col-sm-12 .col-md-6 + .col-md-6 {
	padding-left: 15px;
	padding-right: 25px;
}
@media (max-width: 767.98px) {
	.contentblocks .col-sm-12 .col-md-6 {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
}
.contentblocks .item {
	margin-bottom: 30px;
}
@media (max-width: 767.98px) {
	.contentblocks .item {
		margin-bottom: 20px;
	}
}
.contentblocks .item:last-child {
	margin-bottom: 0;
}
.contentblocks .item h4 {
	font-size: 18px !important;
}
.contentblocks .item.image {
	margin-bottom: 20px;
}
.contentblocks blockquote,
.contentblocks figure,
.contentblocks ol,
.contentblocks p,
.contentblocks table,
.contentblocks ul {
	margin-bottom: 15px;
}
.contentblocks blockquote:last-child,
.contentblocks figure:last-child,
.contentblocks ol:last-child,
.contentblocks p:last-child,
.contentblocks table:last-child,
.contentblocks ul:last-child {
	margin-bottom: 0;
}
.contentblocks li a,
.contentblocks p a {
	color: #f23f2d;
}
.contentblocks li a:hover,
.contentblocks p a:hover {
	text-decoration: underline;
}
.contentblocks h1,
.contentblocks h2,
.contentblocks h3,
.contentblocks h4,
.contentblocks h5,
.contentblocks h6 {
	margin-bottom: 5px;
}
.contentblocks h1:last-child,
.contentblocks h2:last-child,
.contentblocks h3:last-child,
.contentblocks h4:last-child,
.contentblocks h5:last-child,
.contentblocks h6:last-child {
	margin-bottom: 0;
}
.contentblocks p {
	line-height: 28px;
}
.contentblocks h2 {
	font-size: 24px;
}
.contentblocks h3 {
	font-size: 20px;
}
.contentblocks figure {
	position: relative;
}
.contentblocks figure a i {
	background: #fff;
	border-radius: 50%;
	border-radius: 27px;
	bottom: 20px;
	box-shadow: 0 42px 49px 0 hsla(0, 0%, 55%, 0.36);
	font-size: 24px;
	height: 55px;
	position: absolute;
	right: 45px;
	transition: all 0.3s ease-in-out;
	width: 55px;
}
.contentblocks figure a i:before {
	color: #593070;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}
.contentblocks figure a i:hover {
	background: #593070;
}
.contentblocks figure a i:hover:before {
	color: #fff;
}
@media (max-width: 767.98px) {
	.contentblocks figure a i {
		font-size: 14px;
		height: 30px;
		width: 30px;
	}
}
.contentblocks figure span,
.contentblocks figure + span {
	color: #4e2b62;
	display: inline-block;
	display: block;
	font-family: Ubuntu-LightItalic;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.5em;
	margin: -10px 0 0;
}
@media (max-width: 767.98px) {
	.contentblocks figure span,
	.contentblocks figure + span {
		font-size: 16px;
	}
}
.contentblocks figure span {
	margin-left: 0;
	margin-top: 5px;
}
.contentblocks .item.col-md-6 figure a i {
	right: 25px;
}
.contentblocks .item.col-md-6 figure + span {
	margin-left: 0;
}
.contentblocks .download span {
	margin-right: 10px;
}
.contentblocks ul {
	list-style-type: none;
	padding-left: 0;
}
.contentblocks ul li {
	line-height: 32px;
	padding-left: 30px;
	position: relative;
}
.contentblocks ul li:before {
	color: #f23f2d;
	content: '\f111';
	font-family: Font Awesome\5 Pro;
	font-size: 10px;
	font-weight: 900;
	left: 0;
	position: absolute;
	top: 0;
}
.contentblocks ol {
	counter-reset: section;
	list-style-type: none;
	padding-left: 0;
}
.contentblocks ol li {
	counter-increment: section;
	line-height: 32px;
	padding-left: 30px;
	position: relative;
}
.contentblocks ol li:before {
	color: #f23f2d;
	content: counter(section);
	font-family: Ubuntu-Bold;
	left: 0;
	position: absolute;
}
.contentblocks blockquote {
	background: rgba(78, 43, 98, 0.151);
	padding: 40px;
}
.contentblocks blockquote p {
	font-family: Ubuntu-Regular;
	font-size: 18px;
	letter-spacing: 0;
	line-height: 27px;
	margin-bottom: 0;
	position: relative;
}
.contentblocks blockquote p:before {
	color: #593070;
	content: '"';
	font-family: Ubuntu-Bold;
	font-size: 60px;
	left: -10px;
	opacity: 0.2;
	position: absolute;
	top: 0;
}
.contentblocks blockquote cite {
	color: #593070;
	font-family: Ubuntu-Regular;
	font-size: 14px;
	font-style: normal;
}
.contentblocks .btn {
	padding: 17px 40px;
}
.contentblocks .btn:hover {
	color: #fff;
}
.news__related {
	margin: 0 0 100px;
}
@media (max-width: 1019.98px) {
	.news__related {
		margin: 0 0 20px;
	}
	.news__related .col-lg-4 {
		margin-bottom: 20px;
	}
}
.news__related h2 {
	color: #b5b5b5;
	font-size: 40px;
	letter-spacing: 0;
	margin: 0 0 25px;
	text-align: center;
}
.news__related .article {
	background: #fff;
	border-radius: 33px;
	box-shadow: 0 42px 49px 0 hsla(0, 0%, 55%, 0.36);
	height: 100%;
	overflow: hidden;
	position: relative;
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}
.news__related .article h3 {
	color: #4e2b62;
	font-size: 20px;
}
@media (max-width: 767.98px) {
	.news__related .article h3 {
		font-size: 14px !important;
	}
}
.news__related .article figure {
	max-height: 150px;
	min-height: 150px;
	overflow: hidden;
}
.news__related .article figure img {
	width: 100%;
}
.news__related .article__content {
	background: #fff;
	padding: 20px 35px 35px;
}
.news__related .article__content time {
	color: #4e2b62;
	font-size: 14px;
	opacity: 0.61;
}
@media (max-width: 1019.98px) {
	.news__related .article figure {
		border-radius: 13px;
		max-height: none;
		max-width: 105px;
		min-height: auto;
		overflow: hidden;
		position: absolute;
		right: 20px;
		top: 20px;
	}
	.news__related .article__content {
		padding: 20px 145px 40px 25px;
	}
}
.news__related .article:hover {
	transform: scale(1.02);
}
body.compensate-for-scrollbar {
	overflow: hidden;
}
.fancybox-active {
	height: auto;
}
.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden;
}
.fancybox-container {
	-webkit-tap-highlight-color: transparent;
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: none;
	position: fixed;
	top: 0;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}
.fancybox-container * {
	box-sizing: border-box;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}
.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
	opacity: 0.9;
	transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity 0.25s ease, visibility 0s ease 0.25s;
	visibility: hidden;
	z-index: 99997;
}
.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
	visibility: visible;
}
.fancybox-infobar {
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-touch-callout: none;
	color: #ccc;
	font-size: 13px;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.fancybox-toolbar {
	right: 0;
	top: 0;
}
.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}
.fancybox-slide {
	-webkit-overflow-scrolling: touch;
	-webkit-backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: auto;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}
.fancybox-slide:before {
	content: '';
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
	display: block;
}
.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0;
}
.fancybox-slide--image:before {
	display: none;
}
.fancybox-slide--html {
	padding: 6px;
}
.fancybox-content {
	-webkit-overflow-scrolling: touch;
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
	-webkit-backface-visibility: hidden;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	transform-origin: top left;
	transition-property: transform, opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
	cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
	cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
	cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
	background: transparent;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	width: 100%;
}
.fancybox-spaceball {
	z-index: 1;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%;
}
.fancybox-slide--video .fancybox-content {
	background: #000;
}
.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
	background: #fff;
}
.fancybox-iframe,
.fancybox-video {
	background: transparent;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}
.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0;
}
.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%;
}
.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}
.fancybox-button {
	background: rgba(30, 30, 30, 0.6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color 0.2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
	color: #ccc;
}
.fancybox-button:hover {
	color: #fff;
}
.fancybox-button:focus {
	outline: none;
}
.fancybox-button.fancybox-focus {
	outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: none;
}
.fancybox-button div {
	height: 100%;
}
.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}
.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0;
}
.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
	display: none;
}
.fancybox-progress {
	background: #ff5268;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998;
}
.fancybox-close-small {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: 0.8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401;
}
.fancybox-close-small:hover {
	color: #fff;
	opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none;
}
.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px;
}
.fancybox-navigation .fancybox-button div {
	padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right);
}
.fancybox-caption {
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.85) 0,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0.15) 65%,
		rgba(0, 0, 0, 0.075) 75.5%,
		rgba(0, 0, 0, 0.037) 82.85%,
		rgba(0, 0, 0, 0.019) 88%,
		transparent
	);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996;
}
.fancybox-caption--separate {
	margin-top: -50px;
}
.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none;
}
.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}
.fancybox-loading {
	animation: fancybox-rotate 1s linear infinite;
	background: transparent;
	border: 4px solid;
	border-color: #888 #888 #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999;
}
@keyframes fancybox-rotate {
	to {
		transform: rotate(1turn);
	}
}
.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scaleX(1) translateZ(0);
}
.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
	transform: translateZ(0) scale(1);
}
@media (max-height: 576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px;
	}
	.fancybox-slide--image {
		padding: 6px 0;
	}
	.fancybox-close-small {
		right: -6px;
	}
	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px;
	}
	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px;
	}
}
