﻿.glassy-window
{
    display: flex;
    flex-direction: column;
    margin: 8px 24px;
    width: 450px;
    border-radius: 16px;
}

.glassy-window .title
{
    padding: 16px;
    margin: 0 0 32px 0;
    background: rgba(255,255,255,1);
    /*background: rgba(255,255,255,0.1);*/
    border-radius: 16px 16px 0 0;
    z-index: 1;
    position: relative;
}

.glassy-window .title::before
{
    content: '';
    box-shadow: 0px 8px 8px -8px rgb(0 0 0 / 40%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.glassy-window .title::after
{
    content: '';
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.glassy-window .title.centre
{
    text-align: center;
    position: relative;
}

.glassy-window .title .icon
{
    margin: 0 16px 0 0;
}

.glassy-window .info
{
    padding: 0 30px 30px;
}