/**
 * Modal
 */
.furgonetka-modal.furgonetka-modal-hidden {
    display: none;
}

@media only screen and (max-width: 960px) {
    .furgonetka-modal .furgonetka-iframe-container .furgonetka-iframe {
        margin: 0 20px;
    }
}

.furgonetka-iframe {
    position: relative;
    width: calc(100% - 80px - 160px);
    max-width: 1400px;
    margin: 0 20px 0 120px;
    padding: 0;

    height: 900px;
    max-height: calc(100vh - 140px);
    overflow: hidden;

    background: #FFFFFF;

    box-shadow: 0 3px 6px rgba(0,0,0,0.2), 0 3px 6px rgba(0,0,0,0.3);
}

.furgonetka-iframe iframe {
    width: 100%;
    height: 100%;
    overflow: auto;
    border: 0;
}

.furgonetka-iframe-exit {
    top: 0px;
    right: 0px;
    width: 12px;
    height: 13px;
    color: white;
    position: absolute;
    font-size: 13px;
    padding: 7px;
    background-color: black;
    box-sizing: content-box;
    text-decoration: none;
}

.furgonetka-iframe-backdrop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1050;
    background-color: rgba(0,0,0, 0.6);
}

.furgonetka-iframe-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1060;
}
