/*

Theme Name: Pro &ndash; Child Theme
Theme URI: http://theme.co/pro/
Author: Themeco
Author URI: http://theme.co/
Description: Make all of your modifications to Pro in this child theme.
Version: 1.0.2
Template: pro

*/

header.x-masthead div.e640-e5.x-bar-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

header.x-masthead div.e640-e5.x-bar-content > div:first-of-type {
    flex-shrink: 0;
}

#special-notices-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
    font-weight: bold;
}

#special-notices-container .special-notice {
	position: absolute;
	left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
	transform: translate(-50%, -100%);
    transition: transform 0.5s ease;
    color: white;
    font-size: 1rem;
    opacity: 0;
}

#special-notices-container .special-notice > div {
    display: flex;
}

#special-notices-container .special-notice i {
    height: fit-content;
    transform: translateX(-.5rem);
    font-size: 2rem;
}

#special-notices-container .special-notice p {
    margin: 0;
}

@media screen and (max-width: 1000px) {
    header.x-masthead div.e640-e5.x-bar-content {
        flex-wrap: wrap;
    }

    #special-notices-container {
        height: 2.25rem;
    }
}

@media screen and (max-width: 400px) {
    #special-notices-container {
        height: 4rem;
    }
}