.krane-popup{
    display:none;
    position:fixed;
    top:5vh;
    left:0px;
    right:0px;
    margin:0 auto;
    background-color:black;
    border:3px solid black;
    border-right-width:5px;
    border-left-width:5px;
    border-bottom-width:1px;
    max-width:516px;
    z-index:999;
}
.krane-popup.show{
    display:block;
}
.krane-popup .closer{
    position:absolute;
    right:10px;
    top:0px;
    background-color: black;
    color:white;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left:4px;
    padding-right:4px;
    cursor:pointer;
}