.callbackwidget{
    position: fixed;
    width: 100%;
    bottom: -20px;
    z-index: 9999;
    background: #fff;
    padding: 10px;
    border: 15px solid #E83269;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: bottom .4s ease, opacity .4s linear;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .callbackwidget.showwidget{
        opacity: 1;
        bottom: 20px;
        visibility: visible;
    }
}
.callbackwidget a{
    color: #3f3f3f
}
.callbackwidget__content-dismiss{
    color: #fff !important;
    position: absolute;
    top: -25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 1.3em;
    background: #222222;
    display: inline-block;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
}
.callbackwidget h4.block-title{
    margin: 0 0 5px 0;
}
.callbackwidget__content{
    width: 100%;
    height: 100%;
}
.callbackwidget__content--left{
    width: 100%;
    float: left;    
}
.callbackwidget__content--right{
    width: 100%;
    float: left;
}
@media screen and (min-width: 760px) {
    .callbackwidget{
        max-width: 500px;
        left: 20px;
    }
    .callbackwidget__content--left{
        width: 50%;
        float: left;
    }
    .callbackwidget__content--right{
        width: 50%;
        float: left;
    }
    .callbackwidget__content-dismiss{
        top: -25px;
        right: -20px;
        left: inherit;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}
