body.popup_opened
{
    overflow: hidden;
}

.popup_c
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 55px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 151;
    overflow-y: auto;
}

.popup_c::after
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 1000px;
    background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(51,51,51,1) 100%);
    opacity: 0.9;
}

.popup
{
    width: 100%;
    max-width: 550px;
    background-color: #FFF;
    position: relative;
    z-index: 2;
}

.popup .image_c
{
    width: 100%;
    float: left;
}

.popup .image_c img
{
    width: 100%;
}

.popup .content_c
{
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 40px 50px 20px;
}
.popup .content_c > *
{
    text-align: center;
}

.popup .title
{
    width: 100%;
    float: left;
    font: 700 1.875rem/120% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #65594C;
    padding-bottom: 15px;
}

.popup .subtitle
{
    width: 100%;
    float: left;
    font: 600 1rem/140% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #9F7F46;
    padding-bottom: 20px;
    position: relative;
}

.popup .subtitle::after
{
    content: " ";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform:translateX(-50%);
    width: 71px;
    height: 4px;
    background-color: #B6925D;
}

.popup .text
{
    width: 100%;
    float: left;
    padding-top: 20px;
    font: 300 1em/180% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #463F33;
}

.popup strong
{
    font-weight: 500;
}

.popup .text ul
{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.popup .text ul li
{
    display: inline-block;
    width: 100%;
    position: relative;
    padding-left: 20px;
}

.popup .text ul li::after
{
    content: " ";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #B6925D;
}

.popup .line
{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
    align-items: center;
}

.popup .price_c
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.popup .price_c .prefix
{
    font: 400 1rem/100% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #9F7F46;
}

.popup .price_c .price
{
    font: 600 4.063rem/100% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #9F7F46;
}

.popup .price_c .price > span
{
    position: relative;
}

.popup .price_c .price > span::after
{
    content: "*";
    position: absolute;
    top: 10px;
    right: 0;
    font: 400 1rem/100% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #AF0942;
}

.popup .popup_link
{
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 14px 16px;
    text-align: center;
    font: 600 0.875rem/120% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    background-color: #65594C;
    transition: background-color ease 0.7s;
    -webkit-transition: background-color ease 0.7s;
}

.popup .popup_link:hover,
.popup .popup_link:focus
{
    background-color: #9F7F46;
}

.popup .mention
{
    width: 100%;
    float: left;
    padding-top: 35px;
    margin-left: -25px;
    font: 400 0.813rem/150% "PT Sans", "Trebuchet MS", Verdana, "Lucida Sans", "sans-serif";
    color: #444;
}

.close_popup
{
    cursor: pointer;
    position: absolute;
    top: 0;
    right: -60px;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    width: 26px;
}

.close_popup img
{
    width: 100%;
}

@media(max-width: 800px)
{
    .close_popup
    {
        right: -25px;
        width: 20px;
    }
}

@media(max-width: 650px)
{
    .popup_c
    {
        padding: 35px 0;
    }

    .popup_c::after
    {
        min-height: 800px;
    }

    .popup
    {
        max-width: 300px;
    }

    .popup .content_c
    {
        padding: 50px 25px 20px;
    }

    .popup .text
    {
        display: none;
    }

    .popup .title
    {
        font-size: 1.6rem;
    }

    .popup .line
    {
        flex-direction: clolumn;
    }

    .popup .price_c
    {
        width: 100%;
    }

    .popup .price_c .price
    {
        font-size: 3.125rem;
    }

    .popup .popup_link
    {
        width: 100%;
    }

    .popup .mention
    {
        padding-top: 15px;
        margin-left: 0;
    }

    .close_popup
    {
        top: -5px;
        right: 0;
        width: 20px;
    }
}

@media(max-width: 550px)
{





}
