﻿.popup.c-osfpob
{
    background: var(--terms-popup-background);
    border: transparent;
    border-radius: 5px;
    box-shadow: 0 0 20px #0000004d;
    font-family: var(--font-family);
    height: 100%;
    left: 0;
    margin: 0 auto;
    max-height: 80vh;
    max-height: 80dvh;
    max-width: 800px;
    overflow: hidden;
    padding: 30px;
    position: fixed;
    right: 0;
    top: 50px;
    visibility: hidden;
    width: 100%;
    z-index: 99;
}
.popup.active.c-osfpob
{
    visibility: visible;
}
.header.c-osfpob
{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}
.title.c-osfpob
{
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}
.close.c-osfpob
{
    flex: 0 0 auto;
    height: 23px;
    width: 23px;
}
.article.c-osfpob
{
    color: #fff;
    font-family: "sans-serif";
    height: 75%;
    overflow-y: auto;
    text-align: left;
}
.article.c-osfpob h4
{
    margin: 10px 0;
}
.article.c-osfpob p
{
    font-size: 1rem;
    font-weight: 400;
    margin: 10px;
    text-transform: none;
}
.article.c-osfpob::-webkit-scrollbar
{
    width: 10px;
}
.article.c-osfpob::-webkit-scrollbar-track
{
    background: var(--popup-wrapper-background);
    border-radius: 5px;
    box-shadow: var(--input-focus-box-shadow-color);
}
.article.c-osfpob::-webkit-scrollbar-thumb
{
    background: var(--input-focus-box-shadow-color);
    border-radius: 5px;
}
.close-btn.c-osfpob
{
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 30px auto 0;
    min-width: 128px;
    padding: 5px 10px;
    text-transform: uppercase;
    transform: skew(-10deg);
}
.close-btn.c-osfpob:hover
{
    background-color: #fff3;
}
@media(max-width: 500px)
{
    .popup.c-osfpob
    {
        max-height: none;
        overflow-y: auto;
        padding: 20px;
        top: 0;
    }
    .article.c-osfpob
    {
        font-size: 15px;
        height: auto;
    }
    .article.c-osfpob p
    {
        font-size: 13px;
    }
}