
/* For old browsers */
@supports (not(--css: variables))
{
    .supports-error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports-error
    {
        display: flex !important;
    }
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --font_family: "Roboto", sans-serif;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

html,
html *
{
    scrollbar-width: thin;
}


body
{
    color: #000;
    font: 16px/1.5 var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    background: #FFF;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}


.lazyload
{
    opacity: 0;

    transition: opacity .5s linear;
}

.lazyload.loaded
{
    opacity: 1;
}


._flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}


/*------------
    Header
------------*/
.header
{
    position: relative;

    padding-top: 195px;
}

.header__top
{
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;

    width: 100%;
    padding: 20px 0;

    transition: box-shadow .2s linear, background .2s linear;
}

.header.fixed .header__top
{
    position: fixed;

    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0,.20);
}

.header__logo
{
    justify-content: center;
}

.header__logo a,
.header__logo img
{
    display: block;

    max-width: 180px;
}

.header__not
{
    justify-content: center;
}

.header__not img
{
    display: block;

    max-width: 100px;
}


.catalog
{
    padding-bottom: 60px;
}

.catalog__grid
{
    align-content: stretch;
    align-items: stretch;

    margin: 0 0 0 -30px;
}

.product
{
    color: #000;

    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;

    width: calc(100%/3 - 30px);
    margin: 30px 0 0 30px;

    text-align: left;
    text-decoration: none;

    border: 1px solid transparent;
    background: #FFF;

    transition: box-shadow .2s linear;
}

.product:hover
{
    box-shadow: 0rem 0rem .7142857142857143rem 0rem rgba(0, 0, 0, .08);
}

.product__thumb
{
    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 130%;
}

.product__thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product__box
{
    display: block;

    width: 100%;
    padding: 16px;
}

.product__name
{
    display: block;
}

.product__price
{
    color: #F15382;

    display: block;

    margin-top: 4px;
}

.product__price span
{
    color: #6E6E6E;
    font-size: .8em;

    text-decoration: line-through;
}

.product__info
{
    font-size: .8em;

    display: block;

    margin-top: 4px;
}


/*------------------
    Form elements
------------------*/
::-webkit-input-placeholder
{
    color: #5A5A5A;
}

::-moz-placeholder
{
    color: #5A5A5A;

    opacity: 1;
}

:-moz-placeholder
{
    color: #5A5A5A;
}

:-ms-input-placeholder
{
    color: #5A5A5A;
}


.form__title
{
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -.002em;
}

.form__title span
{
    color: #5228B6;
}

.form__list
{
    color: #585858;
    font-size: 18px;

    margin-top: 20px;

    list-style: none;
}

.form__list li
{
    position: relative;

    padding-left: 32px;
}

.form__list li::before
{
    content: "";

    position: absolute;
    top: 6px;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #F7681C;
}

.form__list li + li
{
    margin-top: 11px;
}

.form__block
{
    margin-top: 35px;
}

.form__block.marg
{
    margin-top: 26px;
}

.form-flex
{
    justify-content: space-between;
}

.form__line
{
    margin-bottom: 26px;
}

.form-flex .form__line
{
    width: calc(100%/2 - 12px);
}

.form__field
{
    position: relative;
}

.form .form__input
{
    color: #2E2E2E;
    font: 500 15px var(--font_family2);

    display: block;

    width: 100%;
    height: 54px;
    padding: 0 19px;

    border: 1px solid #E1E1E1;
    border-radius: 6px;
    background: #FFF;

    transition: border .2s linear;
}

.form .form__input.name
{
    padding-left: 52px;

    background-image: url(../images/ic_user.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 19px 50% !important;
}

.form .form__input.phone
{
    padding-left: 52px;

    background-image: url(../images/ic_phone.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 19px 50% !important;
}

.form .form__textarea
{
    color: #2E2E2E;
    font: 500 15px var(--font_family2);

    display: block;

    width: 100%;
    height: 160px;
    padding: 14px 19px;

    resize: none;

    border: 1px solid #E1E1E1;
    border-radius: 6px;
    background: #FFF;

    transition: border .2s linear;
}


.form .error:not(:focus),
.form .error + .nice-select .current
{
    color: #DB422C;

    border-color: #DB422C;
    background-color: #FFEAEA;
}


.form .form__input:disabled,
.form .form__textarea:disabled
{
    color: rgba(1, 1, 1, .3);

    cursor: default;
    pointer-events: none;
}


.form .error-text
{
    color: red;
    font-size: 12px;

    margin-top: 4px;
}

.form__bot
{
    justify-content: space-between;
}

.form__bot .form-submit
{
    width: calc(50% - 12px);
}

.form__agree
{
    min-height: 25px;
    margin-top: 25px;
}

.form__bot .form__agree
{
    width: calc(50% - 12px);
    margin-top: 0;
}

.form__agree
{
    position: relative;

    color: #696969;
    font-size: 14px;
    font-weight: 400;

    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    min-height: 25px;

    letter-spacing: -.002em;
}

.form__agree span
{
    position: relative;

    display: block;

    padding-left: 34px;
}

.form__agree span::before
{
    content: "!";

    position: absolute;
    top: 0;
    left: 0;

    color: #9D9D9D;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;

    width: 25px;
    height: 25px;

    text-align: center;

    border: 1px solid #ECECEC;
    border-radius: 50%;
}

.form__agree a,
.form__agree button
{
    color: #F15382;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition: border .2s linear;
}

.form__agree a:hover,
.form__agree button:hover
{
    border-bottom-color: currentColor;
}


/*----------------
    Typography
----------------*/
.section-text
{
    padding: 60px 0;
}

.text-block > :last-child
{
    margin-bottom: 0 !important;
}

.text-block h1,
.text-block .h1
{
    color: #262626;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.22;

    margin-bottom: 27px;
}

.text-block h2
{
    color: #262626;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.22;

    margin-bottom: 27px;
}

.text-block h3
{
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;

    margin-bottom: 27px;

    letter-spacing: -.002em;
}

.text-block h4
{
    color: #2E2E2E;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.14;

    margin-bottom: 27px;
}

.text-block p
{
    margin-bottom: 21px;
}

.text-block img
{
    display: block;

    max-width: 100%;
    margin-bottom: 27px;

    border-radius: 20px;
}

.text-block a
{
    color: currentColor;

    text-decoration: none;

    border-bottom: 1px solid;

    transition: border .2s linear;
}

.text-block a:hover
{
    border-bottom-color: transparent;
}

.text-block ul
{
    font-size: 18px;

    margin-bottom: 30px;

    list-style: none;
}

.text-block ul li
{
    position: relative;

    padding-left: 32px;
}

.text-block ul li::before
{
    content: "";

    position: absolute;
    top: 6px;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #F15382;
}

.text-block ul li + li
{
    margin-top: 11px;
}


/*-----------------
    BTNS
-----------------*/
.wrap-btn_marg
{
    margin-top: 40px;
}

.wrap-btn_center
{
    text-align: center;
}

.btn-orange
{
    color: #EFEFEF;
    font-size: 18px;
    font-weight: 500;
    line-height: 54px;

    display: inline-block;

    padding: 0 40px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: -.0024em;

    border-radius: 6px;
    background: #F15382;

    transition: background .2s linear;
}

.btn-orange.big
{
    display: block;

    width: 100%;
    padding: 0;
}

.btn-orange:hover
{
    background: #ED5C9A;
}


.footer
{
    padding-bottom: 30px;
}

.footer__copy
{
    color: #696969;
    font-size: 12px;

    text-align: center;
}

.footer a
{
    color: #F15382;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition: border .2s linear;
}

.footer a:hover
{
    border-bottom-color: currentColor;
}


/*------------
    Modal
------------*/
.modal
{
    position: relative;
    z-index: 3;

    display: none;
    visibility: visible !important;

    width: 500px;
    max-width: 100%;
    padding: 56px 48px;

    border-radius: 5px;
    background: #FFF;
}

.modal_policy
{
    width: 1000px;
}

.modal__title
{
    margin-bottom: 30px;
}

.modal__title b
{
    color: #262626;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.22;
}


@media (max-width: 1199px)
{
    body
    {
        font-size: 14px;
    }
}


@media (max-width: 1024px)
{
    /*----------------
		Typography
	----------------*/
    .text-block h1,
    .text-block .h1
    {
        font-size: 28px;
    }

    .text-block h2
    {
        font-size: 28px;
    }

    .text-block h3
    {
        font-size: 22px;
    }

    .text-block h4
    {
        font-size: 16px;
    }

    .text-block ul
    {
        font-size: 14px;
    }

    .text-block ul li
    {
        padding-left: 20px;
    }

    .text-block ul li::before
    {
        width: 6px;
        height: 6px;
    }

    .text-block ul li + li
    {
        margin-top: 8px;
    }
}


@media (max-width: 767px)
{
    .catalog__grid
    {
        margin: 10px 0 0 -20px;
    }

    .product
    {
        width: calc(100% / 2 - 20px);
        margin: 20px 0 0 20px;
    }

    /*----------------
		Typography
	----------------*/
    .text-block h1,
    .text-block .h1
    {
        font-size: 22px;

        margin-bottom: 20px;
    }

    .text-block h2
    {
        font-size: 22px;

        margin-bottom: 20px;
    }

    .text-block h3
    {
        font-size: 18px;

        margin-bottom: 20px;
    }

    .text-block h4
    {
        font-size: 16px;

        margin-bottom: 20px;
    }

    .text-block p
    {
        margin-bottom: 18px;
    }


    /*------------
		Modal
	------------*/
    .modal
    {
        width: 400px;
        padding: 40px 16px;
    }

    .modal_policy
    {
        width: 100%;
    }
}


@media (max-width: 479px)
{
    body
    {
        font-size: 12px;
    }

    .header
    {
        padding-top: 160px;
    }

    .header__logo a,
    .header__logo img
    {
        max-width: 140px;
    }

    .catalog__grid
    {
        margin: 10px 0 0 -10px;
    }

    .product
    {
        width: calc(100% / 2 - 10px);
        margin: 10px 0 0 10px;
    }

    .product__box
    {
        padding: 14px 10px;
    }


    /*----------------
		Typography
	----------------*/
    .text-block h1,
    .text-block .h1
    {
        font-size: 20px;
    }

    .text-block h2
    {
        font-size: 20px;
    }
}