.event-info-container-seemore {
	display:flex;
	justify-content: center;
	align-items: center;
	/* min-height:100vh; */
	background-color:transparent;

    position: absolute;
    /* left: 50%;
    top: 50%; */
    width: 104px;
    height: 104px;
    z-index: 8;
}
.event-info-container-seemore-circle {
	position:relative;
	width:104px;
	height:104px;
	border-radius:50%;
	background:transparent;
	display:flex;
	justify-content:center;
	align-items:center;
}
.event-info-container-seemore-logo {
	position:absolute;
	width:64px;
	height:64px;
	background:#fff;
	border-radius:50%;
	/* filter: brightness(1.5) contrast(1.5); */
	background-size:cover;
    text-align: center;
}
.event-info-container-seemore-logo p {
    margin:10px 10px 0px 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #00829B;
}
.event-info-container-seemore-logo i {
    color: #00829B;
}
.event-info-container-seemore-text {
	position:absolute;
	width:100%;
	height:100%;
	animation: rotateText 5s linear infinite;
	cursor: pointer;
}
@keyframes rotateText {
	0% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
.event-info-container-seemore-text span {
	position: absolute;
	left: 50%;
	transform-origin: 0 52px;

	font-family: var(--wp--preset--font-family--heading);
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	color: #FFFFFF;
}
