.bstt-social-open {

    color: inherit;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;

}

#bstt-social-overlay {

    position: fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.75);

    display:none;

    z-index:999999;

}

.bstt-social-popup {

    width:100%;
    background:#000;

    transform:translateY(-100%);
    transition:.35s ease;

}

#bstt-social-overlay.active .bstt-social-popup {

    transform:translateY(0);

}

.bstt-social-header {

    max-width:1200px;

    margin:auto;

    padding:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.bstt-social-logo {

    color:#fff;

    font-size:50px;

    font-family:Georgia, serif;

    font-weight:bold;

}

.bstt-social-close {

    background:none;
    border:none;

    color:#fff;

    cursor:pointer;

}

.bstt-social-content {

    max-width:1200px;

    margin:auto;

    padding:60px 25px;

}

.bstt-social-content h2 {

    color:#fff;

    text-align:center;

    margin-bottom:50px;

}

.bstt-social-links {

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:20px;

}

.bstt-social-links a {

    color:#fff;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.25);

    padding:25px;

    text-align:center;

    transition:.3s;

}

.bstt-social-links a:hover {

    background:#c00000;

    border-color:#c00000;

}

.bstt-social-links a{

    transition:all .25s ease;

}

.bstt-social-links a:hover{

    background:#c00000;

    border-color:#c00000;

    transform:translateY(-3px);
    
    color: #FFF;
}

@media(max-width:768px){

    .bstt-social-open{
        font-size:14px;
    }

    #bstt-social-overlay{
        overflow-y:auto;
    }

    .bstt-social-header{

        padding:18px;

        gap:15px;

        flex-wrap:wrap;

    }

    .bstt-social-logo{

        font-size:28px;

        margin-left:auto;

    }

    .bstt-social-close{

        border:1px solid rgba(255,255,255,.30);

        padding:10px 14px;

        font-size:12px;

    }

    .bstt-social-content{

        padding:35px 18px;

    }

    .bstt-social-content h2{

        font-size:32px;

        margin-bottom:30px;

    }

    .bstt-social-links{

        grid-template-columns:1fr;

        gap:12px;

    }

    .bstt-social-links a{

        padding:18px;

        font-size:18px;

    }

}