#new_version_popup #popup_container
{
	background-color: var(--bright-menu-bg-color);
	color: var(--alt-font-color);
	box-shadow: var(--popup-box-shadow);
	opacity: 0;
	transition: opacity 1.5s;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

#new_version_popup
{
	transform-origin: center center;
	will-change: transform, opacity;
}

#new_version_container
{
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

#new_version_container_content
{
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.5em;
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
	align-content: flex-start;
}

#new_version_release_notes_content
{
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.5em;
	flex-basis: 100%;
}

#new_version_video_container
{
	display: none;
	opacity: 0;
	flex-basis: 100%;
	flex: 1 1 auto;
	min-height: 0;
	align-items: center;
	justify-content: center;
}

#custom_column_profiles_video
{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	margin-left: 0;
}

#new_version_release_notes_content > div:first-child
{
	flex-basis: 100%; 
	text-align: center; 
	margin: 0.5em 0em 0.25em; 
	font-size: 1.25em; 
	font-weight: 600; 
	font-family: 'poppins';
}

#new_verson_logo
{
	color: rgb(90, 137, 247);
}

.new_version_update_item
{
	flex-basis: 100%; 
	padding-bottom: 0.5em;
}

#new_version_update_item_header
{
	font-weight: 800;
    font-size: 1.25em;
}

#new_version_update_subtext
{
	font-weight: 400;
	line-height: 1.5rem;
}

#new_version_updates_list
{
	padding-inline-start: 1em; 
	margin-block-end: 0.5em; 
	flex-basis: 100%; 
	list-style-type: disc; 
	line-height: 1.5em;
	margin-block-start: 0em;
}

#new_version_image_carousel
{
	--new-version-carousel-stage-height: 29em;
	--new-version-carousel-stage-width: 22.6em;
	flex: 0 1 auto;
	display: grid;
	grid-template-columns: 2.6em minmax(0, 1fr) 2.6em;
	grid-template-rows: var(--new-version-carousel-stage-height) auto;
	align-items: center;
	column-gap: 0.65em;
	row-gap: 0.55em;
	width: min(100%, calc(var(--new-version-carousel-stage-width) + 6.5em));
	margin: 0.15em auto 0.65em;
	transition: width 220ms var(--transition-easing-standard);
}

#new_version_carousel_image_container
{
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--new-version-carousel-stage-height);
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 9%);
	border-radius: 0.65em;
	background:
		linear-gradient(180deg, rgb(255 255 255 / 2.5%) 0%, rgb(255 255 255 / 0.6%) 100%),
		rgb(13 22 38 / 42%);
	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 4%),
		0 12px 26px -24px rgb(0 0 0 / 78%);
}

#new_version_carousel_image
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 0.35em;
}

.new_version_carousel_arrow
{
	grid-row: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.45em;
	height: 2.45em;
	padding: 0;
	border: 1px solid var(--ol-setup-action-button-border);
	border-radius: 50%;
	background: var(--ol-setup-action-button-background);
	box-shadow: var(--ol-setup-action-button-shadow);
	color: var(--ol-setup-action-button-color);
	font-size: 1.2em;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition:
		border-color var(--transition-duration-standard) var(--transition-easing-standard),
		background var(--transition-duration-standard) var(--transition-easing-standard),
		box-shadow var(--transition-duration-standard) var(--transition-easing-standard),
		color var(--transition-duration-standard) var(--transition-easing-standard);
}

.new_version_carousel_arrow:hover,
.new_version_carousel_arrow:focus-visible
{
	border-color: var(--ol-setup-action-button-hover-border);
	background: var(--ol-setup-action-button-hover-background);
	box-shadow: var(--ol-setup-action-button-hover-shadow);
	outline: none;
}

#new_version_carousel_previous
{
	grid-column: 1;
}

#new_version_carousel_next
{
	grid-column: 3;
}

#new_version_carousel_dots
{
	grid-column: 1 / 4;
	grid-row: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.45em;
}

.new_version_carousel_dot
{
	width: 0.56em;
	height: 0.56em;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 32%);
	border-radius: 50%;
	background: rgb(255 255 255 / 16%);
	box-shadow: none;
	cursor: pointer;
	transition:
		transform var(--transition-duration-standard) var(--transition-easing-standard),
		background-color var(--transition-duration-standard) var(--transition-easing-standard),
		border-color var(--transition-duration-standard) var(--transition-easing-standard);
}

.new_version_carousel_dot_active
{
	transform: scale(1.25);
	border-color: rgb(90 137 247 / 96%);
	background: rgb(90 137 247 / 96%);
}

[data-theme="light"] #new_version_carousel_image_container
{
	border-color: rgb(57 81 135 / 14%);
	background: rgb(255 255 255 / 62%);
	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 68%),
		0 12px 26px -24px rgb(15 23 42 / 32%);
}

[data-theme="light"] .new_version_carousel_dot
{
	border-color: rgb(79 93 122 / 32%);
	background: rgb(79 93 122 / 18%);
}

[data-theme="light"] .new_version_carousel_dot_active
{
	border-color: rgb(67 105 176 / 96%);
	background: rgb(67 105 176 / 96%);
}

#new_version_icon_reference_grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13em, 1fr));
	gap: 0.65em 0.85em;
	flex-basis: 100%;
	margin: 0.15em 0 0.75em;
}

.new_version_icon_reference_item
{
	display: flex;
	align-items: center;
	column-gap: 0.7em;
	padding: 0.55em 0.7em;
	border-radius: 0.5em;
	background: rgb(255 255 255 / 4%);
	border: 1px solid rgb(255 255 255 / 8%);
	box-sizing: border-box;
}

[data-theme="light"] .new_version_icon_reference_item
{
	background: rgb(255 255 255 / 58%);
	border-color: rgb(57 81 135 / 14%);
}

.new_version_icon_reference_icon
{
	flex: 0 0 auto;
	color: var(--alt-font-color);
}

.new_version_icon_reference_label
{
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

#new_version_buttons_container
{
	font-size: 1.2em;
	display: flex;
	flex-basis: 100%;
	justify-content: space-between;
	column-gap: 1em;
    margin-top: 0em;
}

#new_version_buttons_container > input
{
	flex-basis: 48%;
}

.new_version_sequence_frame
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.new_version_sequence_frame_1
{
	animation: fade_frame_1 10s infinite linear;
}

.new_version_sequence_frame_2
{
	animation: fade_frame_2 10s infinite linear;
}

/* Crossfade window: 45% -> 55% (i.e., around the 5s mark) */
@keyframes fade_frame_1
{
	/* seam crossfade IN at start */
	0%   { opacity: 1; }
	5%   { opacity: 1; }

	/* first half hold */
	45%  { opacity: 1; }

	/* mid crossfade OUT */
	55%  { opacity: 0; }

	/* second half off */
	95%  { opacity: 0; }

	/* seam crossfade IN before loop ends */
	100% { opacity: 1; }
}

@keyframes fade_frame_2
{
	/* seam crossfade OUT at start */
	0%   { opacity: 0; }
	5%   { opacity: 0; }

	/* first half off */
	45%  { opacity: 0; }

	/* mid crossfade IN */
	55%  { opacity: 1; }

	/* second half hold */
	95%  { opacity: 1; }

	/* seam crossfade OUT before loop ends */
	100% { opacity: 0; }
}
/* ------------ new releease animation-------------- */

.animated-border-box, .animated-border-box-glow
{
	height: 100%;
	width: 100%;
	overflow: hidden; 
	z-index: 0;
	border-radius: 10px;
}

.animated-border-box-glow
{
	overflow: hidden;
	-webkit-backdrop-filter: blur(20px);
	filter: blur(20px);
}

.animated-border-box:before, .animated-border-box-glow:before 
{
    content: '';
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    position: absolute;
    width: 99999px;
    height: 99999px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(rgba(0, 0, 0, 0), #1976ed, rgba(0, 0, 0, 0) 50%);
    animation: rotate 3.5s linear infinite;
}

.animated-border-box:after 
{
	content: '';
	position: absolute;
	z-index: -1;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	background: #fbfbff;
	border-radius: 7px;
}

@keyframes rotate {
	100% {
		transform: translate(-50%, -50%) rotate(1turn);
	}
}
