/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

 .popup-container {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
}
.popup-content {
    margin: auto;
    width: 700px;
    position: relative;
}

.popup-content img {
    width: 100%;
}
.popup-content a.close{
    color: black;
    font-size: 28px;
    font-weight: 700;
    background: none;
    text-decoration: none;
    position: absolute;
    right: 10px;
    top: 0px;
    opacity: 1;
}

.popup-content a.close:hover{
  color:#333;
}

@media screen and (max-width: 700px){
    .popup-content {
        width: calc(100% - 50px);
    }
}
/*End popup styles*/