.header-information {
    display: flex;
    justify-content: space-between;
}

.header-information p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    flex: 1;
}

.header-top {
    background-color: #5b4e40;
    padding: 10px 0;
}

.header-information p span span {
    position: relative;
    padding-left: 15px;
}

span.open-now:after {
    position: absolute;
    content: "";
    background: #009700;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

span.open-now:before {
    position: absolute;
    content: "";
    background: #009700;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: pulseGreen 1.5s infinite
}

span.close-now:after {
    position: absolute;
    content: "";
    background: #c30000;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

span.close-now:before {
    position: absolute;
    content: "";
    background: #c30000;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: pulseRed 1.5s infinite
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(20,199,111,0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(20,199,111,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20,199,111,0)
    }
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255,0,0,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0)
    }
}


@media (max-width: 980px){
	.header-top {
			margin-bottom: 15px;
	}
	.header-information p {
			padding: 2px 0;
	}
	.header-information {
        flex-direction: column;
        align-items: center;
	}
	.et_header_style_split #main-header {
			padding-top: 0;
	}
}