﻿.popup {
    height: 150px;
    width: 250px;
    background: gray;
    bottom: -170px;
    right: 0;
    position: absolute;
    transition: all 0.8s;
    padding-top: 20px;
    border-radius: 10px;
    vertical-align: top;
}

.open {
    bottom: 0;
}

.band {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: right;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.8s;
}

.popup:hover {
    box-shadow: inset 0 0 15px black;
}

.band:hover {
    background: white;
}



.popup.open {
    border-radius: 0px;
    position: fixed;
    left: auto;
    right: 17px;
    bottom: 5px;
    height: 38px;
    background: #fff;
    width: 20%;
    text-align: center;
    z-index:999999;
}

    .popup.open .band {
        color: #000;
        text-align: center;
        background: #d6d6d6;
        border-radius: 0px;
        height: auto;
        padding: 3px;
        font-weight: bold;
        cursor: pointer;
        display: block;
    }

    .popup.open p {
        margin: 0;
        color: #000;
        border-radius: 0px;
        font-weight: bold;
    }
        
        

