.itdon-notice{
    position: relative;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 25px 15px 20px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Open Sans';
}
.itdon-notice-close{
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    width: 12px;
    height: 12px;
}
.itdon-notice-close::before{
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    transform: translateY(5px) rotate(45deg);
    background-color: #0000009d;
}
.itdon-notice-close::after{
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    transform: translateY(3px) rotate(-45deg);
    background-color: #0000009d;
}
.itdon-notice.hide{
    display: none;
}
.itdon-notice a{
	color: #fff;
	text-decoration: underline;
}
.itdon-notice a:hover{
	text-decoration: none;
}

@media (max-width: 640px) {
	.itdon-notice-text{
		font-size: 13px;
	}
}