﻿/* IBE FULLSIZE */
.d21-ios {
    overflow-y: scroll; /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
}

.d21-popup {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10001;
    margin: auto;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#d21-ibe-fullsize .d21-content {
    display: block;
}

#d21-ibe-fullsize iframe,
#d21-ibe-fullsize .d21-content {
    width: 100%;
    height: 100%;
}

#d21-ibe-fullsize .d21-iframe-overlay {
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

    #d21-ibe-fullsize .d21-iframe-overlay > svg {
        display: block;
        margin: 25% auto;
    }

.d21-frame-close-trigger {
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    position: fixed;
    right: 15px;
    top: 10px;
    font-family: Roboto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.d21-spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 50% auto;
}

.d21-spinner .double-bounce1, .d21-spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.d21-spinner .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}