/* annount*/
:root {
  --blue: #1e90ff;
  --white: #ffffff; 
}
#root .announcement-box {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
    z-index: 2;
}#root .announcement-box, #root .home-notice-box .notice-popup .btn-item>span.btn-close {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	z-index: 9999;
}#root .announcement-box .announcement-popup {
	width: 550px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 200px;
    background: #e5e5e5;
    position: relative;
    text-align: center;
	padding: 25px 25px;
    border-radius: 10px;
	margin-top: -50px;
}#root .announcement-box .announcement-popup .announcement-title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,28,66,.2);
    font-size: 20px;
    color: rgba(0,28,66,.5);
}#root .announcement-box .announcement-popup .announcement-content {
	margin-top: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,28,66,.2);
    color: #001b42;
    font-size: 16px;
    text-align: justify;
}#root .announcement-box .announcement-popup .announcement-content li {
	margin-bottom: 10px;
	padding-top:10px
}#root .announcement-box .announcement-popup .btn-item, #root .announcement-box .announcement-popup .btn-item .dont-show-again {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
#root .announcement-box .announcement-popup .btn-item {
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}#root .announcement-box .announcement-popup .btn-item, #root .announcement-box .announcement-popup .btn-item .dont-show-again {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}#root .announcement-box .announcement-popup .btn-item .dont-show-again input {
	width: 20px;
    height: 20px;
    border: 1px solid rgba(0,28,66,.2);
}#root .announcement-box .announcement-popup .btn-item .dont-show-again span {
    font-size: 14px;
    margin-left: 15px;
    color: rgba(0,28,66,.5);
}#root .announcement-box .announcement-popup .btn-item>span.btn-close {
	font-family: "Nunito-Bold";
    color: #fff;
    width: 100px;
    height: 40px;
    cursor: pointer;
    background-color: #001b42;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
#root .announcement-box .announcement-popup .btn-item>span {
	font-size: 14px;
    margin-left: 10px;
    color: rgba(0,28,66,.5);
    position: relative;
    padding-top: 5px;
}.announcement-img{
	width: 100%;
    position: relative;
    padding: 20px 0;
}.announcement-img img{
	width:100%;
	border-radius:10px;
}.animate-zoom{
	-webkit-animation: zoomIn 0.4s !important;
    animation: zoomIn 0.4s !important;
}.close-zoom{
	-webkit-animation: zoomOut 0.3s !important;
    animation: zoomOut 0.3s !important;
}.animate-slide{
	-webkit-animation: slideInDown 0.4s !important;
    animation: slideInDown 0.4s !important;
	animation-delay: 2s;
}.close-slide{
	-webkit-animation: slideOutUp 0.3s !important;
    animation: slideOutUp 0.3s !important;
}