.radaar-demo-session{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.radaar-demo-session.radaar-demo-session-open{
    opacity: 1;
    visibility: visible;
}

.radaar-demo-session-backdrop{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75);
    backdrop-filter: blur(3px);
}

.radaar-demo-session-close-button{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 5;
    transition: background-color 0.5s ease-in-out;
}

.radaar-demo-session-close-button:hover {
     background-color: black;
}

.radaar-demo-session-close-button:before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") no-repeat center;
    background-size: contain;
}

.radaar-demo-session-fullscreen-button{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    z-index: 5;
    transition: background-color 0.5s ease-in-out;
}

.radaar-demo-session-fullscreen-button:hover {
     background-color: black;
}

.radaar-demo-session-fullscreen-button:before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    color: white;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3H3v6'/><path d='M15 21h6v-6'/><path d='M21 9V3h-6'/><path d='M3 15v6h6'/></svg>") no-repeat center;
    background-size: contain;
}

.radaar-demo-session-iframe{
    position: absolute;
    left: 5vw;
    top: 5vh;
    right: 5vw;
    bottom: 5vh;
    border: 0;
    outline: 0;
    border-radius: 10px;
    height: calc(100% - 10vh);
    width: calc(100% - 10vw);
}

@media (max-width: 560px){
    .radaar-demo-session-close-button{
        top: 7px;
        right: 5vw;
    }

    .radaar-demo-session-fullscreen-button{
        bottom: unset;
        right: 5vw;
        top: 7px;
        margin-right: 43px;
    }

    .radaar-demo-session-iframe{
        top: 7vh;
        bottom: 7vh;
        height: calc(100% - 14vh);
    }
}