.wp-block[data-type="intellitv/intellitv-iframe-block-gutenberg"]:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: all;
    cursor: pointer
}

.wp-block[data-type="intellitv/intellitv-iframe-block-gutenberg"].is-selected:before {
    display: none
}

.wp-block .embed-container > iframe {
    pointer-events: none;
}
.wp-block .intellitv-block-anchor{
    margin-top: 1em;
}
.intellitv-external-link-icon{
    width: 1.4em;
    height: 1.4em;
    margin: -0.2em 0.1em 0px;
    vertical-align: middle;
    fill: currentcolor;
}
.intellitv-block-input-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}
.intellitv-block-input{
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    padding: 6px 8px;
    box-shadow: 0 0 0 transparent;
    transition: box-shadow .1s linear;
    border-radius: 2px !important;
    border: 1px solid #757575;
    font-size: 16px;
    line-height: normal;
    margin: 0 8px 0 0;
    flex: 1 1 auto;
}
.intelli-tv-embed{
    margin-left: 0;
    margin-right: 0;
    clear: both;    
    margin-bottom: 1em;
}
.intelli-tv-embed.is-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
    min-height: 200px;
    text-align: center;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #1e1e1e;
}
.intelli-spinner {
    display: inline-block;
    background-color: #949494;
    width: 18px;
    height: 18px;
    opacity: .7;
    margin: 5px 11px 0;
    border-radius: 100%;
    position: relative;
}
.intelli-spinner:before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    transform-origin: 6px 6px;
    -webkit-animation: intelli-spinner__animation 1s linear infinite;
    animation: intelli-spinner__animation 1s linear infinite;
}
@-webkit-keyframes intelli-spinner__animation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes intelli-spinner__animation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}
