/* Notice bar */

#header .container.news-container {
    background-color: #f7d741;
    border-color: #f7d741;
    color: #021e39;
	padding: 0
}

div#news span.news-title {
    font-weight: 700;
    font-size: 1.2em;
}

.container.news-container .pcwt-promocontent p {
    font-size: 16px;
}

.container.news-container .av_promobox {
    background-color: #f7d741;
    border-color: #f7d741;
    color: #021e39;
}

div#news {
    z-index: 1;
}

.nb-text {
    padding-left: 68px;
}

span.notice-toggle {
/* 	text-indent: -9999px; */
	cursor: pointer;
}

span.notice-toggle.notice-opened {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    background: #021e39;
    width: 40px;
    height: 40px;
    color: #FFF;
    z-index: 2;
	cursor: pointer;
	text-decoration: none;
}

span.notice-toggle.notice-closed {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    background: #021e39;
    width: 40px;
    height: 40px;
    color: #021e39;
    z-index: 2;
}

span.notice-toggle.notice-opened:before,
span.notice-toggle.notice-opened:after {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 24px;
    background: #FFF;
    left: 50%;
    top: calc(50% - 12px);
	transition: 0.2s all;
	z-index: 2
}

span.notice-toggle.notice-closed:before,
span.notice-toggle.notice-closed:after {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 20px;
    background: #FFF;
    left: 50%;
    top: calc(50% - 10px);
	transition: 0.2s all;
	z-index: 2
}

span.notice-toggle.notice-opened:before {
    transform: rotate(45deg);
}

span.notice-toggle.notice-opened:after {
    transform: rotate(135deg);
}

span.notice-toggle.notice-closed:before {
    transform: rotate(0deg);	
}

span.notice-toggle.notice-closed:after {
    transform: rotate(90deg);
}


.notice-toggle .av_font_icon.pcwt-icon-animate {
    margin: 0;
    float: none;
}

.notice-toggle .av_font_icon.pcwt-icon-animate span:before {
    transform: rotate(45deg);
    display: block;
}

@media screen and (max-width: 989px) {
	span.notice-toggle span {
		display: none;
	}
}

@media screen and (min-width: 990px) {
	/* Hovers */
	
	span.notice-toggle span {
		text-indent: 0px
	    display: block;
	    position: absolute;
	    height: 40px;
	    width: 120px;
	    line-height: 40px;
	    padding: 0 12px;
	    background: #0a4f81;
	    text-align: center;
		left:-120px;
		top: -10px;
		opacity: 0;
		transition: 0.2s all;
	    z-index: -1;
		color:#FFF
	}
	
	span.notice-toggle:hover span {
	    z-index: 1;
		opacity: 1;
		top: 0
	}
}