﻿/*Mobile design*/
.popup-container {
    position: fixed;
    width: 80%;
    height: auto;
    border-radius: 5px;
    background: white;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
    display: none;
    top: 40%;
    right: 10%;
    z-index: 1000;
}

#popup-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.popup-close {
    padding: .75rem 1.25rem;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    background: #fff;
    margin-right: 5px;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background-color: transparent;
    border: 0;
}

#popup-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px 65px 10px;
    z-index: 1000;
}

/*Desktop design*/
@media only screen and (min-width: 768px) {

    .popup-container {
        position: fixed;
        right: 10px;
        top: 60px;
        width: 25%;
        height: auto;
        border-radius: 5px;
        background: white;
        -moz-box-shadow: 0 0 3px #ccc;
        -webkit-box-shadow: 0 0 3px #ccc;
        box-shadow: 0 0 3px #ccc;
        display: none;
    }

    #popup-header {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 5px;
    }

    .popup-close {
        padding: .75rem 1.25rem;
        color: inherit;
        font-size: 1.5rem;
        font-weight: 600;
        border: none;
        background: #fff;
        margin-right: 5px;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
        background-color: transparent;
        border: 0;
    }

    #popup-body {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 10px 65px 10px;
    }
}
