.wc_hellobar {

}

.wc_hellobar_box {
    position: relative;
    box-shadow: 0 0 8px var(--color-black);
}

.wc_hellobar_close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 1px 5px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 1.5em;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    cursor: pointer;
}

.wc_hellobar_close:hover {
    background: var(--hover-color-red);
}

.wc_hellobar_box_content {
    padding: 30px 20px 30px 20px;
    text-align: center;
    position: relative;
}

.wc_hellobar_box_content_btn {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
}


.wc_hellobar_center {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: none;
    overflow: auto;
}

.wc_hellobar_center .wc_hellobar_box {
    display: block;
    background: var(--color-white);
    width: 500px;
    max-width: 90%;
    margin: auto;
    top: -100px;
    opacity: 0.5;
}

.wc_hellobar_right_top,
.wc_hellobar_right_bottom {
    position: fixed;
    right: -360px;
    bottom: 20px;
    z-index: 99;
    width: 360px;
    max-width: calc(100% - 40px);
    opacity: 0;
}

.wc_hellobar_right_top .wc_hellobar_box,
.wc_hellobar_right_bottom .wc_hellobar_box {
    background: var(--color-white);
}

.wc_hellobar_right_top {
    bottom: auto;
    top: 20px;
}

.btn_cta_blue {
    color: var(--color-white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    background: #0E96E5;
    border-bottom: 5px solid #096397;
}

.btn_cta_blue:hover {
    background-color: #096397;
    border-color: #0A537d;
}

.btn_cta_green {
    color: var(--color-white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    background: #00B494;
    border-bottom: 5px solid #008068;
}

.btn_cta_green:hover {
    background-color: #008068;
    border-color: #0B5747;
}

.btn_cta_yellow {
    color: var(--color-white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    background: #FAAD50;
    border-bottom: 5px solid #CC8d41;
}

.btn_cta_yellow:hover {
    background-color: #CC8D41;
    border-color: #A67436;
}

.btn_cta_red {
    color: var(--color-white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    background: #F45563;
    border-bottom: 5px solid #C54550
}

.btn_cta_red:hover {
    background-color: #C54550;
    border-color: #93343c;
}