﻿/* Overlay */
.ac-overlay-alert-msg {
	opacity: 0;
    visibility: hidden; /* Hidden initially */
    transition: opacity 10s ease-in-out, visibility 10s linear 10s; /* Delay visibility change until the opacity transition is complete */
}
.ac-overlay-alert-msg.active {
	opacity: 1;
    visibility: visible; /* Make it visible when active */
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0s; /* Instant visibility change when transitioning to active */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Krasar, Arial, sans-serif;
}

/* Overlay content */
.ac-overlay-alert-msg > .ac-overlay-alert-msg-content {
    height: 100vh;
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    position: relative;
    flex-direction: column; /* Optional: If you want content stacked vertically */
    text-align: center; /* Ensure that text inside content is centered */
}

/* Card alert message */
.ac-card-alert-msg{
	background-color: white;
	width: 796px;
	height: 465px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}
/* Card alert message */

/* Card header alert message */
.ac-card-header-alert-msg{
	border-bottom: 1px solid #F3F3F3;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 67px;
}
/* Card header alert message */

/* Button switch languages */
.btn-switch-lang{
	width: 69px;
	height: 32px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	gap: 8px;
	color: black;
	cursor: pointer;
}
.btn-switch-lang.active {
	background-color: #E9F0FF;
}
.btn-switch-lang > img {
	width: 16px;
	height: 16px;
}
/* Button switch languages */

/* Card body alert message */
.ac-card-body-alert-msg{
	width: 100%;
	height: 100%;
	padding-top: 15px;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
}
/* Card body alert message */

/* Alert message content */
.ac-alert-msg-flex-title {
	display: flex;
		align-items: center;
		gap: 20px;
		padding-bottom: 10px;
}
.ac-card-body-alert-msg img {
	width: 36px;
}
.ac-card-body-alert-msg .ac-alert-msg-title-text {
	font-size: 18px;
	font-weight: 500;
    text-align: left;
}

.ac-alert-msg-flex-content {
	padding-left: 55px;
}

.ac-alert-msg-content-text {
	width: 679px;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: 0;
	vertical-align: middle;
    text-align: justify;
}
.ac-alert-msg-content-text-en {
	width: 679px;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0;
	vertical-align: middle;
	text-align: justify;
}
/* Alert message content */

/* Alert message direct link to new system content */
.ac-alert-msg-link {
	padding-top: 0px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap:20px;
}
.ac-alert-msg-link > .ac-alert-msg-link-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
	cursor: pointer;
}
.ac-alert-msg-link > .ac-alert-msg-link-content > button {
	width: 202px;
	height: 49px;
	border-radius: 100px;
	border: 0;
	cursor: pointer;
}
.ac-btn-alert-msg-secondary {
	background-color: #EFEFEF;
	color: #1671C7;
}
.ac-btn-alert-msg-primary {
	background-color: #1671C7;
	color: #FFFFFF;
}
.ac-alert-msg-link-img {
	width: 239px;
	height: 129px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	border: 2px solid #1671C7;
}
.ac-alert-msg-link-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Alert message direct link to new system content */