.fab-container {
    margin: 1em;
    position: fixed;
    bottom: 40% !important;
    right: 0;
    z-index: 999;
}

.fab {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.fab:before {
    content: attr(tooltip);
    background: #595959;
    padding: 4px 8px;
    border-radius: 2px;
    position: absolute;
    top: 16px;
    right: 100%;
    color: white;
    font: 400 15px Roboto;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: .3s;
}

.fab:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.fab:hover:before {
    right: 110%;
    opacity: 1;
    visibility: visible;
}

.profile {
    margin-bottom: 1em;
    background: #159c21;
    transition: .3s;
}

.profile img {
    padding: 6px 0px 5px 6px;
    z-index: 1000;
}

.profile:hover {
    transform: rotate(90deg);
}

/* Firefox old*/
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    -moz-animation: blink normal 1s infinite ease-in-out;
    /* Firefox */
    -webkit-animation: blink normal 1s infinite ease-in-out;
    /* Webkit */
    -ms-animation: blink normal 1s infinite ease-in-out;
    /* IE */
    animation: blink normal 1s infinite ease-in-out;
    /* Opera and prob css3 final iteration */
}





.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
}

.popup {
    margin: 0px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
    z-index: 1001;

}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #00b0ba;
    padding: 0px 4px;

}

.popup .close:hover {
    color: #06D85F;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px) {

    .box {
        width: 90%;
    }

    .popup {
        width: 90%;
    }
}


.popup-submit {
    background: #00b0ba !important;
    color: #fff !important;
}
