.widget {
    z-index: 10000;
    position: fixed;
    bottom: 95px;
    right: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.widget__input {
    display: none;
}
.widget__label {
    position: relative;
    cursor: pointer;
    z-index: 2;
    display: -webkit-box;
    display: flex;
    width: 60px;
    height: 60px;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    background: #08c;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
}
.widget__label:hover {
    box-shadow: 0 0 20px 0 rgba(0,0,0,.4);
}
.widget__input:checked + .widget__label .widget__message {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.1);
            transform: scale(.1)
}
.widget__input:checked + .widget__label .widget__close {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
}
.widget__input:checked + .widget__label {
    background: #fff!important;
    -webkit-animation: none;
            animation: none;
}
.widget__icon {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.widget__close {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.1);
            transform: scale(.1);
}
.widget__link {
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
}
.widget__tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    -webkit-transform: translateX(0%) translateY(-50%);
            transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.widget__tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-left-color: #292929;
}
.widget__link:hover .widget__tooltip {
    opacity: .85;
    visibility: visible;
}
.widget__input:checked ~ .widget__link {
    opacity: 1;
    visibility: visible;
}
.widget__input:checked ~ .widget__link:nth-of-type(1) {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate(0,-135%);
            transform: translate(0,-135%);
}
.widget__input:checked ~ .widget__link:nth-of-type(2) {
    -webkit-transition: all 0.225s ease-in-out;
    transition: all 0.225s ease-in-out;
    -webkit-transform: translate(0,-255%);
            transform: translate(0,-255%);
}
.widget__input:checked ~ .widget__link:nth-of-type(3) {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translate(0,-375%);
            transform: translate(0,-375%);
}