/*=== HEADER ===*/
.flexbox {
    display: flex; 
    flex-wrap: wrap;
    align-items: stretch; 
    justify-content: flex-start;
}
#header {
    /*height: 40px;*/
}
.header-wrapper {
    /*position: fixed;*/
    width: 100%;
    /*z-index: 120;*/
}
.header-wrapper .flexbox {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

/*Alert Bar */
.top-alert-content h5 {
    color: #585959;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: normal;
}
.top-alert-content p {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #585959;
}
.top-alert-content .btn {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
}
.top-alert-title{
    background-color: #922748;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #ffffff;
    min-height: 48px;
}
.top-alert-title .container{
    max-width: 1190px;
    padding: 0 100px;
    justify-content: center;
    align-items: flex-start;
}

.top-alert-title span{
    display: block;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.top-alert-title span i{
    font-size: 20px;
    margin-right: 8px;
    vertical-align: text-bottom;
    position: absolute;
    left: 0;
}
.top-alert .close-btn{
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 1px;
    color: #000;
    text-decoration: none;
}
.top-alert .toggle-btn{
    background: #000;
    position: absolute;
    width: 40px;
    height: 34px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    top: -12px;
    right: 50px;
    color: #fff;
    text-align: center;
    padding-top: 9px;
    text-decoration: none !important;
}
.top-alert .toggle-btn:after{
    content: '\f107';
    font: bold 18px/1 Font Awesome\ 5 Pro;
}
.top-alert-content{
    display: none;
    background: #fefaef;
    padding: 60px 0 30px;
}
.top-alert-content p a {
    font-weight: bold;
    color: #7e0027;;
}
.top-alert-content .container > ul{
    display: flex;
}
.top-alert-content .container > ul > li{
    width: 50%;
}
.top-alert-content .container > ul > li:first-child{
    padding-right: 25px;
}
.top-alert-content .container > ul > li:last-child{
    padding-left: 25px;
}
.top-alert-content .container > ul > li:first-child p:last-child,
.top-alert-content .container > ul > li:last-child p:last-child{
    margin-bottom: 0;
}
.top-alert .btn {
    border-color: #0b66bb;
    color: #fff;
    background-color: #0b66bb;
}
.alert-link i {
	position: relative;
	top: 2px;
	right: 0px;
	transition: all 0.3s ease 0s;
}
.alert-link:hover i {
	right: -8px;
}
.center {
    text-align: center;
}
.alert-content {
    width: 1190px;
    margin: 0 auto;
}