﻿
.modal_close a {
    text-decoration: none;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    text-transform: uppercase;
    color: black;
}

.modal {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, .7);
    transition: all .4s;
}

.modal:target {
    visibility: visible;
    opacity: 1;
}

.modal_content {
    border-radius: 4px;
    position: relative;
    width: 1000px;
    /* max-width: 90%;*/
    height:700px;
    background: white;
    padding: 1.5em 2em;
    font-size:18px;
}

.modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: grey;
    text-decoration: none;
}

.scroller {
    overflow-y: scroll;
    /*scrollbar-color: rebeccapurple green;
    scrollbar-width: thin;*/
}