body
{
    font-family: var(--base-font);
    color: #303036;
    font-weight: 400;
}

body.no-scroll
{
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

*:focus {
    outline: none;
}

.clearfix:after
{
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clear:before, .clear:after {
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}

.translucency
{
    transition: opacity var(--transition-duration) ease-out;
}

.translucency:hover
{
    opacity: 0.85;
}

.link
{
    text-decoration: underline;
    transition: opacity, text-decoration, filter var(--transition-duration) ease-out;
    color: var(--link-color);
}

.link:hover
{
    filter: invert(30%);
    text-decoration: underline;

    text-decoration-color: transparent;
    -webkit-text-decoration-color: transparent;
    -moz-text-decoration-color: transparent;
}

.link_default-not-underlined
{
    text-decoration: none;
    text-decoration-color: transparent;
}

.link_default-not-underlined:hover
{
    text-decoration: underline;
    text-decoration-color: currentColor;
}

.no-select
{
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.price-row .price-row__digit
{
    margin-right: 3px;
}

.price-row .price-row__digit_before-ruble
{
    margin-right: 2px;
}

.price-row .price-row__digit_before-cents
{
    margin-right: 1px
}

.text_notice
{
    font-size: 14px;
    line-height: 19px;
}

.text_gray
{
    color: var(--gray-text);
}

@media screen and (max-width: 1023px) {
    body
    {
        min-width: 320px;
    }

    .no-scroll-on-mobile
    {
        height: 100%;
        overflow-y: hidden;
    }

    .no-mobile
    {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .no-desktop
    {
        display: none;
    }
}