﻿.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.80);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.popup__content {
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;    
    /*width: 75%;*/
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(0,0,0, .2);
    border-radius: 3px;
    /*display: table;*/
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.25);
    transition: all .5s .2s;
}

.popup__text {
    text-align: center;
    margin-bottom: 30px;
    line-height: 20px !important;
}

.popup__btn-container {
    margin: 0 auto;
    /*text-align: center;*/
    display: flex;
    justify-content: space-around;
    width: 200px;
}

.accept__btn, .reject__btn {
    color: white;
    display: inline-block;
    background-color: rgb(0, 149, 160);
    border-radius: 3px;
    padding: 6px;
    width: 64px;
    text-align: center;
}

.popup__btn:hover {
    background-color: #008690 !important;
    color: white;
}

.popup a {
    cursor: pointer;
}

/*.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}*/
