#virtualshowroom-modal {
    position: fixed;
    z-index: 15;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgba(255,255,255,0.8);
}

.modal-loading-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
}

.modal-loading-mask .loader:after {
    border-width: 0 3px 0 0;
    border-style: solid;
    border-color: rgb(252, 97, 115);
    border-radius: 50%;
    display: block;
    height: 55px;
    width: 55px;
    content: "";
    animation: spin .6s infinite linear;
    -webkit-animation: spin .6s infinite linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

#virtualshowroom-modal .modal-content {
    background-color: #fff;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    box-shadow: #999 0 0 9px 0;
    position: relative;
}

#virtualshowroom-modal .modal-body {
    height: 100%;
    width: 100%;
    overflow: hidden auto;
}

#virtualshowroom-modal .modal-body.fullview {
    overflow: hidden;
}

#virtualshowroom-modal .close {
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: -14px;
    right: -14px;
    background: #333;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
    z-index: 10;
    line-height: 32px;
}

#virtualshowroom-modal .close:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    content: '\e616';
    font-family: 'luma-icons';
    font-weight: bold;
    overflow: hidden;
    speak: none;
    text-align: center;
    line-height: 27px;
}

#virtualshowroom-modal .close:hover,
#virtualshowroom-modal .close:focus {
    cursor: pointer;
}

#virtualshowroom-modal .vr-staging {
    width: 100%;
    height: 100%;
}

#virtualshowroom-modal .vr-staging .showcase {
    width: 100%;
    height: 100%;
    align-self: center;
    box-shadow: 0 4px 8px rgb(43, 43, 43);
}

.virtualshowroom-error {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #cdcdcd;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
}

.virtualshowroom-error i {
    color: #cdcdcd;
    font-size: 3.8rem;
    margin-right: 15px;
}

@media (max-width: 1023px) {

}

@media (max-width: 767px) {
    #virtualshowroom-modal .close {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        line-height: 32px;
    }

    #virtualshowroom-modal .modal-content {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }
}

@media (max-width: 539px) {

}
