/** Urgen Message Bereich **/
#urgentBoxClose {
    display: none;
}
#urgentBoxClose {
	position: absolute;
	right: 26px;
	top: 20px;
	font-size: 6em;
	color: #fff;
	background: #000;
	border: 1px solid #000;
	border-radius: 50%;
	transition: all 0.5s;
}
#urgentBoxClose:hover {
	color: #000;
	background: #fff;
	transition: all 0.5s;
}
.urgentBox.open #urgentBoxClose {
    display: block;
}
.urgentBox {
    position: relative;
    background: #000;
	z-index: 30;
}
.urgentBox p {
    color: #fff;
    font-size: 1.5em;
    line-height: 1.4em;
}ed1c24
.urgentBox a {
    color: #06e0b5;
}
.clickArea {
    width: 100%;
    height: 40px;
    background: #405bc1;
    text-align: center;
    color: #fff;
	transition: color 1000ms;
    font-size: 1.5em;
    line-height: 40px;
}
.clickArea:hover {
    cursor: pointer;
}
.urgentBox.open .clickArea {
    color: #000;
}
.urgentBoxContent {
    max-height: 0px;
    overflow: hidden;
    width: 100%;
    transition: max-height 1500ms;
    background: #000;
}
.clickAreaText {
    width: 100%;
    height: 100%;
    display: none;
	color: #fff;
	text-decoration: underline;
}
.urgentBoxContent > div > div p {
    padding: 3rem 5%;
}
.urgentBoxContent > div > div > a > div {
    margin-top: 4rem;
	margin-left: 5%;
	width: 50%;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	aspect-ratio: 16 / 9;
    border: solid #ed1c24 3px;
}
.urgentBoxContent.open {
    max-height: 1000px;
    transition: max-height ease 3000ms;
}
.urgentBox a:hover {
    cursor: pointer;
}