/**
 * sc27-iframe
 */

.sc27-iframe {
    position: relative;
}

.sc27-iframe .sc27-iframe-content,
.sc27-iframe .sc27-iframe-live {
    width: 100%;
    height: 100%;
}

.sc27-iframe .sc27-iframe-content {
    background-color: #ccc;
    width: 100%;
    height: 100%;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-preview {
    width: 100%;
    height: 100%;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation {
    text-align: center;
    margin: 25px;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .sc27-iframe-confirmation-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.75);
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .desc,
.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .desc a {
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .desc a {
    text-decoration: underline !important;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .desc p:last-child {
    margin-bottom: 0;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .buttons {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .buttons .btn {
    border: 0;
    padding: 10px 20px;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    line-height: 1.5em;
}

.sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .buttons .btn:hover, .sc27-iframe .sc27-iframe-content .sc27-iframe-placeholder .sc27-iframe-confirmation .buttons .btn:focus {
    cursor: pointer;
}

.sc27-iframe .sc27-iframe-live {
    display: none;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
}

.sc27-iframe.active .sc27-iframe-placeholder {
    display: none;
}

.sc27-iframe.active {
    height: 60vh !important;
    min-height: 500px;
}

.sc27-iframe.active .sc27-iframe-live {
    display: block;
    position: relative !important;
    height: 100%;
}

.sc27-iframe.active .sc27-iframe-live iframe {
    width: 100%;
    height: 100%;
}
