﻿.privacypopup-modal {
    position: fixed;
    /*position:center;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.privacypopup-modal-content {
    width:fit-content;
    margin: auto;
    margin-top: 150px;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    overflow: hidden;
}

.show {
    display: block;
    animation-name: show-animation;
    animation-duration: 1s;
}

@keyframes show-animation {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hide {
    display: none;
}

.privacypopup-modal-header {
    background-color: lightslategray;
    padding: 15px;
    color: white;
}

.privacypopup-modal-title {
    margin: 5px;
    display: inline-block;
}

.privacypopup-modal-close-button {
    float: right;
    margin: 5px;
    cursor: pointer;
}

    .privacypopup-modal-close-button:hover {
        color: red;
    }

.privacypopup-modal-body {
    padding: 10px;
}

.privacypopup-modal-footer {
    background-color: slategrey;
    padding: 10px;
}
