/*Head Notification*/

#overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 3040px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#ffffff7a;
    z-index: 2;
    cursor: pointer;
}

#imgg{
    position: absolute;
    top: 11%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

#hellobar-bar {
    font-family: "Helvetica", sans-serif;
    width: 100%;
    margin: 0;
    height: 30px;
    display: table;
    font-size: 17px;
    font-weight: 400;
    padding: .33em .5em;
    -webkit-font-smoothing: antialiased;
    color: #333333;
    background-color: #fdfdfd;
    box-shadow: 0 1px 3px 2px rgba(0,0,0,0.15);
    position: relative;
}
#hellobar-bar.regular {
    height: 30px;
    font-size: 14px;
    padding: .2em .5em;
}
.hb-content-wrapper {
    text-align: center;
    position: relative;
    display: table-cell;
    vertical-align: middle;
}
.hb-content-wrapper p {
    margin-top: 0;
    margin-bottom: 0;
}
.hb-text-wrapper {
    margin-right: .67em;
    display: inline-block;
    line-height: 1.3;
}
.hb-text-wrapper .hb-headline-text {
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
}

.hb-text-wrapper .hb-headline-text .noti-p {
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
}
#hellobar-bar .hb-cta {
    display: none;
    vertical-align: middle;
    margin: 5px 0;
    color: #ffffff;
    background-color: #cc2f00b8;
    border-color: #0099cc;
}
.hb-cta-button {
    opacity: 1;
    color: #fff;
    display: block;
    cursor: pointer;
    line-height: 1.5;
    max-width: 22.5em;
    text-align: center;
    position: relative;
    border-radius: 3px;
    white-space: nowrap;
    margin: 1.75em auto 0;
    text-decoration: none;
    padding: 0;
    overflow: hidden;
}
.hb-cta-button .hb-text-holder {
    border-radius: inherit;
    padding: 5px 15px;
}
.hb-close-wrapper {
    display: table-cell;
    width: 1.6em;
}
.hb-close-wrapper .icon-close {
    font-size: 14px;
    top: 15px;
    right: 25px;
    width: 15px;
    height: 15px;
    opacity: .3;
    color: #000;
    cursor: pointer;
    position: absolute;
    text-align: center;
    line-height: 15px;
    z-index: 1000;
    text-decoration: none;
}

/*Side notification*/
.sidebar{transition:all 0.5s;-webkit-transition:all 0.5s;}

.toggle1{
    font-size:30px;
    border:1px solid black;
    border-radius:30px;
    display:inline-block;
    height:40px;
    width:40px;
    cursor:pointer;
}

.toggle1:hover{

}
.sidebar{
    position:fixed;
    width:300px;
    right:-500px;
    background-color:#4fb9b4e6;
    height:100%;
    z-index: 55;
    top:0px;
    overflow: scroll;
}
.sidebar h5{
    color:white;
    text-align:center;
    font-family: 'Muli', sans-serif;
}

.sidebar.active{
    right:0px;
}
.notibox{
    color:#000020;
    font-family:'Muli', sans-serif;
    font-size: 14px;
    background-color:#e8f1ff;
    width:calc(100% - 60px);
    padding: 15px 45px 45px 1px;
    margin:1px 6px 10px 6px;
    border-radius:4px;
    position:relative;
}
.cancel{
    position:absolute;
    right:7px;
    top:10px;
    cursor:pointer;
    padding:3px;
    padding-left:8px;
    padding-right:8px;
    border-radius:20px;
}
.cancel:hover{
    color:black;
    background-color:white;
}
.gone{
    display:none;
}