/* Ordi */
@media (min-width: 700px) {
    div.modal {
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 94%;
        height: 96%;
        text-align: center;
        z-index: 1000;
        background-color: #111;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        transform: translate(3%, 2%);
    }
}

/* Tel */
@media (max-width: 700px) {
    div.modal {
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 80%;
        height: 90%;
        text-align: center;
        z-index: 1000;
        background-color: #111;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        transform: translate(15%, 5%);
    }
}

a.close {
    position: absolute;
    text-align: center;
    background-color: #111;
    color: blue;
    font-size: 20px;
    line-height: 31px;
    width: 30px;
    right: 15px;
    top: 15px;
    border-radius: 15px;
    box-shadow: 1px 1px 3px #000;
}
a.close:hover {
    background-color: #111;
    color: orange;
}
div.modal iframe {
    overflow: hidden;
    width: 100%;
    height: 100%;
}


/* ScrollBar */
div.container.scrollbar-overflow ::-webkit-scrollbar {
    height: 6px;
 }
  
div.container ::-webkit-scrollbar {
    height: 0px;
}
  
div.container ::-webkit-scrollbar-track {
    background: #c0b6af;
    border-radius: 10pt;
}
  
div.container ::-webkit-scrollbar-thumb {
    background: #5e4c5a;
    border-radius: 10pt;
}
  
div.container ::-webkit-scrollbar-thumb:hover {
    background: #2d242b;
}