.follow {
    position: fixed;
    bottom: calc(40% - 36px);
    right: -120px;
    width: 50px;
    height: 50px;
    z-index: 100000;
    pointer-events: none;
    transition-duration: 0.5s;
    padding: 0;
    margin: 0;
}

.follow.call {
  display: none;
}

.follow img.follow-icon {
    width: 48px;
    height: 48px;
    z-index: 12;
    position: relative;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.follow.open .popup {
    right: 32px;
    opacity: 1;
    transition-timing-function: ease-out;
}

.follow .icon {
    position: relative;
    background-color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    z-index: 1111;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.2);
}


.follow .icon svg {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
}

.follow .popup {
    position: absolute;
    top: -3px;
    right: 32px;
    opacity: 0;
    width: 312px;
    padding: 17px 30px 17px 17px;
    pointer-events: none;
    background: white;
    border: 1px solid orange;
    border-radius: 10px;
    z-index: 11;
    transition-duration: 0.25s;
    transition-timing-function: ease-in;
}

.follow .popup .heading {
    line-height: 26px;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #033b58;
}

.follow.active {
    pointer-events: auto;
    right: 16px;
}

@media (min-width: 64em) {
    .follow {
        bottom: 212px;
        width: 72px;
        height: 72px;
    }
    
    .follow img.follow-icon {
        width: 72px;
        height: 72px;
    }

    .follow.open .popup {
        right: 0;
    }

    .follow .icon {
        width:69px;
        height: 69px;
    }

    .follow .popup {
        top:unset;
        bottom: 0;
        right: -50px;
        width: 632px;
        padding: 22px 90px 10px 24px;
        border-radius: 20px;
        border-bottom-right-radius: 40px;
        box-sizing: border-box;
    }

    .follow .popup .heading {
        line-height:18px;
        letter-spacing: 0.1px;
        font-size: 14px;
    }

    .follow.active {
        right: 42px;
    }
}
