.weka-hello-bar{
    height: 45px;
    padding: 5px 45px 5px 15px;
    background-repeat: no-repeat;
    background-position: right top;
    width: 100%;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
}
.weka-hello-bar.fixed{
    position: fixed;
    top: 0;
    left: 0;
}
.weka-hello-bar .hello-bar-inner{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.weka-hello-bar.center{
    padding: 5px 45px;
}
.weka-hello-bar.center .hello-bar-inner{
    justify-content: center;
}
.weka-hello-bar .hello-bar-inner .hello-image{
    max-width: 80px;
    margin-right: 15px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.weka-hello-bar .hello-bar-inner .hello-image a{
    display: inline-block;
}
.weka-hello-bar .hello-bar-inner .hello-image img{
    max-width: 100%;
    max-height: 35px;
    display: block;
}
.weka-hello-bar .hello-bar-inner .hello-content{
    flex-grow: 1;
    margin-right: 15px;
}
.weka-hello-bar.center .hello-bar-inner .hello-content{
    flex-grow: initial;
}
.weka-hello-bar .hello-bar-inner .hello-content h6{
    color: #fff;
    margin: 0;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 22px;
}
.weka-hello-bar .hello-bar-inner .hello-content p{
    margin: 0;
    font-family: var(--ff-body);
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-sm);
    color: var( --weka-off-black);
    text-align: center;
}
.weka-hello-bar .hello-bar-inner .weka-btn{
    text-transform: capitalize;
    transition: transform .14s ease-in-out; 
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    outline: 0;
    text-decoration: none;
    flex-shrink: 0;
    background-color: var(--weka-off-black);
    border-color: var(--weka-grid-gray-dark-mode);
    color: var(--weka-off-white);
    font-family: var(--ff-mono);
    font-size: var(--fs-16);
    line-height: var(--line-height-md);
    padding: var(--spacing-8) var(--spacing-16);
    font-weight: var(--fw-regular);
}
.weka-hello-bar .hello-bar-inner .weka-btn:hover{
    background-color: var(--weka-grid-gray-dark-mode);
}
.weka-hello-bar .close{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 15px;
    height: 15px;
    display: block;
    opacity: 1;
}
.weka-hello-bar .close:before, .weka-hello-bar .close:after{
    content: "";
    position: absolute;
    top: -2px;
    right: 5px;
    width: 2px;
    height: 20px;
    background: var(--weka-off-black);
    transform: rotate(-45deg);
}
.weka-hello-bar .close:before {
    transform: rotate(45deg);
}
.wk-btn {
    font-family: var(--ff-mono);
    line-height: 150%;
    border-radius: var(--spacing-48);
    border: 1px solid;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4);
    text-decoration: none !important;
    color: var(--weka-off-white);
    transition: .3s ease-in-out !important;
}
.wk-btn.wk-secondary-btn{
  background-color: var(--weka-off-black);
  border-color: var(--weka-grid-gray-dark-mode);
  color: var(--weka-off-white);
}
.wk-btn.wk-secondary-btn:hover{
  background-color: var(--weka-grid-gray-dark-mode);
  border-color: var(--weka-grid-gray-dark-mode);
}
.wk-btn.wk-btn-sm {
    padding: var(--spacing-8) var(--spacing-12);
    font-size: var(--fs-12);
    line-height: var(--line-height-sm);
    height: var(--spacing-36);
}
.announcement-bar{
    padding-top: 45px;
}
.announcement-bar  header{
    margin-top: 45px;
	transition: margin-top .3s;
}
.announcement-bar.mt0  header{
    margin-top: 0px;
	
}
@media(min-width: 768px) and (max-width: 1350px){
	.weka-hello-bar .hello-bar-inner .hello-content p{
		font-size: 16px !important;
	}
}
@media(max-width: 767px){
    .weka-hello-bar{
        padding: 15px;
        width: 100%;
        left: 0;
        bottom: 0;
        top: auto;
        height: auto;
		position:fixed;
    }
    .weka-hello-bar.center{
        padding: 15px;
    }
    .weka-hello-bar.fixed{
        bottom: 0;
        top: auto;
    }
    .weka-hello-bar .hello-bar-inner{
        flex-direction: column;
        text-align: center;
    }
    .weka-hello-bar .hello-bar-inner p{
        margin-top: 10px;
    }
    .weka-hello-bar .hello-bar-inner .weka-btn{
        margin-top: 15px;
    }
    .weka-hello-bar .hello-bar-inner .hello-content, .weka-hello-bar .hello-bar-inner .hello-image{
        margin-right: 0;
    }
    .weka-hello-bar .hello-bar-inner .hello-content{
        margin-top: 10px;
    }
    .weka-hello-bar .close{
        top: 15px;
        transform: none;
    }
    .announcement-bar{
        padding-top: 0;
    }
    .announcement-bar header{
        margin-top: 0;
    }   
}