/* start hellobar css */
.with-hb #header {
	height: 45px;
}

.with-hb #hellobar {
	position: fixed;
	text-align: initial;
	transition: bottom 500ms ease-in-out;
	width: 100%;
	z-index: 11;
}

.with-hb #wn-plugging {
	display: none !important;
}

.with-hb #hellobar.toast {
	bottom: 0 !important;
	height: 400px !important;
	right: 50px !important;
	width: 325px !important;
}

.with-hb #hellobar.toast.closed {
	bottom: -400px !important;
}

.with-hb #hellobar.hb-modal {
	visibility: visible;
	opacity: 1;
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	position: fixed;
	z-index: 100;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: white;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	transition: all 0.5s ease;
}
.with-hb #hellobar.hb-modal.closed {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}
.with-hb .hb-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	background: rgba(0, 0, 0, 0.6);
}
.with-hb #hellobar.hb-modal .hb-modal-content {
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    border: none;
}
.with-hb #hellobar.hb-modal .hb-modal-close-button {
	cursor: pointer;
	position: absolute;
	z-index: 1;
	top: 6px;
	right: 3px;
	border: 0;
	background: transparent;
	color: #999999;
	padding: 5px 10px;
	font-size: 2.3rem;
}
/* end hellobar css */
@media (max-width: 991px) {

.with-hb #hellobar.hb-modal {
	display: none;
}
}