body {
    padding: 0;
    margin: 0;
    font-family: Helvetica;
}
#backplate {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    z-index: 9;
    backdrop-filter: blur(5px);
}
#card {
    max-width: 720px;
    width: 100%;
    padding: 25px;
    background: #303030;
    background: radial-gradient(at right bottom, rgba(48, 48, 48, 1) 0%, rgba(26, 26, 26, 1) 50%, rgba(13, 13, 13, 1) 100%);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80vh;
}
#card iframe{
    width: -webkit-fill-available;
    width: moz-fill-available;
    margin-top: 16px;
}
#card > .close{
    padding: 23px;
    border: 1px solid #ffffff85;
    border-radius: 50px;
    position: fixed;
    top: 14px;
    right: 14px;
    cursor: pointer;
}
#card > .close:before, #card > .close:after{
    content:"";
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 50px;
    top: 22px;
    left: 12px;
    position: absolute;
    transition: 0.05s linear;
}
#card > .close:before{
    transform: rotateZ(45deg);
}
#card > .close:after{
    transform: rotate(-45deg);
}
#card > .close:hover:after{
    transform: rotateZ(0deg);
}
#card > .close:hover:before{
    transform: rotateZ(0deg);
}
#card > p {
    padding-left: 100px;
}
#card > .name:before,
#card > .desc:before,
#card > .address:before,
#card > .phone:before,
#card > .links:before{
    font-family: FontAwesome;
    font-weight: normal;
    position: absolute;
    left: 50px;
    top: -2px;
}
#card > .name:before {
    content: "\f007";
    top: 4px;
    font-size: 20pt;
}
#card > .desc:before {
    content: "\f0e5";
    font-size: 20pt;
}
#card > .address:before{
    content: "\f041";
    font-size: 20pt;
}
#card > .phone:before {
    content: "\f10b";
    font-size: 20pt;
}
#card > .links:before {
    content: "\f0ac";
    font-size: 18pt;
}

#card > .name:after, #card > .desc:after, #card > .address:after, #card > .links:after, #card > .phone:after {
    /*content: "";*/
    width: -webkit-fill-available;
    width: moz-fill-available;
    height: 1px;
    left: 100px;
    bottom: -5px;
    position: absolute;
    background-color: #3d3d3d;
}

#card > .title {
    color: #fff;
    font-size: 16pt;
    margin: 16px 0;
    position: relative;
    font-weight: bold;
}
#card > .name {
    font-size: 24pt;
}
#card > .info {
    color: #c1c1c1;
    font-size: 14pt;
    line-height: 1.35;
    margin-top: 0;
}
#card a {
    color: #c1c1c1;
    font-size: 14pt;
    border-radius: 40px;
    padding: 6px 14px;
    background-color: #ffffff26;
    display: inline-block;
    text-decoration: none;
    margin: 2px;
}
#card a:hover{
    background-color: #fff;
    color: #000;
    transition: 0.5s linear;
}
.hidden{
    display:none;
}
.visible{
    display:flex;
}
@media screen and (max-width: 600px) {
    #card > p{
        padding-left: 0;
    }
    #card > .name:before, #card > .phone:before, #card > .address:before, #card > .links:before{
        display: none;
    }
}