@font-face
{
    font-family: 'BloggerSans';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/BloggerSans.woff') format('woff'),
    url('../fonts/BloggerSans.ttf') format('truetype');
}

@font-face
{
    font-family: 'BloggerSans';
    font-weight: 500;
    font-style: normal;

    src: url('../fonts/BloggerSans-Medium.woff') format('woff'),
    url('../fonts/BloggerSans-Medium.ttf') format('truetype');
}

@font-face
{
    font-family: 'BloggerSans';
    font-weight: 700;
    font-style: normal;

    src: url('../fonts/BloggerSans-Bold.woff') format('woff'),
    url('../fonts/BloggerSans-Bold.ttf') format('truetype');
}


@font-face
{
    font-family: 'Noteworthy';
    font-weight: 700;
    font-style: normal;

    src: url('../fonts/Noteworthy-Bold.woff') format('woff'),
    url('../fonts/Noteworthy-Bold.ttf') format('truetype');
}


@font-face
{
    font-family: 'ALSMalina';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/ALSMalina.woff') format('woff'),
    url('../fonts/ALSMalina.ttf') format('truetype');
}


*
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*:before,
*:after
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

img
{
    border: none;
}
textarea
{
    overflow: auto;
}
input,
textarea,
input:active,
textarea:active
{
         outline: none transparent !important;
    box-shadow: none;

    -moz-outline: none !important;
}
input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}
:focus
{
    outline: none;
}
.swal-title,.swal-text{font-family:BloggerSans;}
/*---------------
    Main styles
---------------*/
.clear
{
    clear: both;
}
.left
{
    float: left;
}
.right
{
    float: right;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    background: #fff url(../images/happy_bg.jpg);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}

.wrap
{
    overflow: hidden;
}

.cont
{
    position: relative;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



.block_title
{
    color: #00a08c;
    font: 700 40px/40px Noteworthy;

    margin-bottom: 40px;

    text-align: center;
}



.breadcrumbs
{
    color: #494949;
    font: 16px BloggerSans;

    margin-bottom: 20px;
}

.breadcrumbs a
{
    color: #494949;

    text-decoration: none;
}

.breadcrumbs a:hover
{
    text-decoration: underline;
}

.breadcrumbs .sep
{
    margin: 0 5px;
}



.page_title
{
    color: #00a08c;
    font: 700 40px/40px Noteworthy;

    margin-bottom: 40px;
}



/*---------------
   Header
---------------*/
header .top
{
    background: #494949;
}

header .top .cont
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .mob_menu_link
{
    display: none;

    width: 65px;
    height: 40px;
    margin-left: -15px;
    padding: 9px 15px 10px;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 35px;
    height: 3px;
    margin: 0 auto;

    transition: .2s linear;

    background: #fff;
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}


header .mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1)
{
    top: 9px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3)
{
    top: -9px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


header .menu
{
    margin: 0 -11px;
}

header .menu a
{
    color: #fff;
    font: 16px/40px BloggerSans;

    display: inline-block;

    height: 40px;
    padding: 0 11px;

    transition: background .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .menu a:hover,
header .menu a.active
{
    background: #00a08c;
}


header .cart_link
{
    color: #fff;
    font: 14px/40px BloggerSans;

    display: block;

    height: 40px;
    padding-left: 25px;

    text-decoration: none;

    background: url(../images/ic_cart_link.png) 0 50% no-repeat;
}

header .cart_link span
{
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin-left: 6px;

    text-align: center;
    vertical-align: middle;

    border-radius: 50%;
    background: #00a08c;
}

header .cart_link .price
{
    font-size: 18px;

    display: inline-block;

    margin-left: 6px;

    vertical-align: top;
}

header .cart_link img
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-left: 2px;

    vertical-align: middle;
}


header .info
{
    padding: 17px 0 19px;
}

header .info .cont
{
    display: flex;

    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}


header .logo
{
    width: 170px;
}

header .logo a,
header .logo img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}


header .info .col.right
{
    display: flex;

    width: calc(100% - 200px);

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .info .hourse24
{
    color: #494949;
    font: 16px/16px BloggerSans;

    padding-left: 42px;

    background: url(../images/ic_hourse24.png) 0 50% no-repeat;
}


header .info .adres
{
    color: #494949;
    font: 16px/16px BloggerSans;

    padding-top: 1px;
    padding-left: 34px;

    background: url(../images/ic_adres.png) 0 0 no-repeat;
}

header .info .adres img
{
    position: relative;
    top: -1px;

    display: inline-block;

    vertical-align: middle;
}


header .info .phones
{
    color: #626262;
    font: 24px BloggerSans;
}
header .info .phones .table td{padding-right:10px; text-align:right;}

header .info .callback_link
{
    color: #f05b95;
    font: 16px/38px BloggerSans;

    display: inline-block;

    height: 38px;
    padding: 0 25px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #f05b95;
    border-radius: 50px;
}

header .info .callback_link:hover
{
    color: #fff;

    background: #f05b95;
}


header .info .bottom
{
    display: flex;

    width: 100%;
    margin-top: 28px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .info .socials
{
    width: 121px;
    padding-right: 16px;
}

header .info .socials a
{
    display: inline-block;

    width: 29px;
    height: 28px;

    vertical-align: top;

    border-radius: 50%;
    background: url(../images/ic_socials.png) 0 0 no-repeat;
}

header .info .socials a + a
{
    margin-left: 3px;
}

header .info .socials a.soc1
{
    background-position: 0 0;
}

header .info .socials a.soc2
{
    background-position: -29px 0;
}

header .info .socials a.soc3
{
    background-position: -58px 0;
}


header .info .search
{
    width: calc(100% - 121px);
}

header .info .search .input
{
    color: #000;
    font: italic 14px BloggerSans;

    display: block;

    width: calc(100% - 100px);
    height: 36px;
    padding: 0 20px;

    border: 1px solid #e3e3e3;
    border-right: none;
    border-radius: 30px 0 0 30px;
    background: #fff;
}

header .info .search ::-webkit-input-placeholder
{
    color: #a9a9a9;
}
header .info .search ::-moz-placeholder
{
    color: #a9a9a9;
}
header .info .search :-moz-placeholder
{
    color: #a9a9a9;
}
header .info .search :-ms-input-placeholder
{
    color: #a9a9a9;
}

header .info .search .submit_btn
{
    color: #fff;
    font: 14px/36px BloggerSans;

    width: 100px;
    height: 36px;

    cursor: pointer;

    border: none;
    border-radius: 0 30px 30px 0;
    background: #03a18d;
}

header .info .search .submit_btn img
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-right: 12px;

    vertical-align: middle;
}



/*---------------
   Sidebar
---------------*/
aside
{
    width: 170px;
    margin-bottom: 50px;
}



aside .cats .title
{
    color: #fff;
    font: 700 20px/59px BloggerSans;

    height: 55px;
    padding: 0 20px;

    border-radius: 15px 15px 0 0;
    background: #00a08c;
}

aside .cats .title img
{
    position: relative;
    top: -2px;

    display: inline-block;

    margin-right: 10px;

    vertical-align: middle;
}


aside .cats > ul
{
    padding: 15px;

    border: 1px solid #e3e3e3;
    border-top: none;
    border-radius: 0 0 15px 15px;
    background: #fff;
}

aside .cats li
{
    display: block;

    list-style-type: none;
}

aside .cats li + li
{
    margin-top: 10px;
}

aside .cats li a
{
    color: #494949;
    font: 14px BloggerSans;

    position: relative;

    display: block;

    padding-right: 16px;

    transition: color .2s linear;
    text-decoration: none;
}

aside .cats li a.sub_link:after
{
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin-top: -4px;

    content: '';
    transition: border-color .2s linear;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-right: 1px solid #494949;
    border-bottom: 1px solid #494949;
}

aside .cats li a:hover
{
    color: #00a08c;
}

aside .cats li a.active
{
    font-weight: 700;
}
aside .cats li.active>a{font-weight:700;}
aside .cats li a.sub_link.active:after
{
    margin-top: -7px;

    border: none;
    border-bottom: 1px solid #494949;
    border-left: 1px solid #494949;
}


aside .cats .sub_cats
{
    display: none;

    padding-top: 10px;
    padding-left: 5px;
}
 aside .cats .active .sub_cats
{
    display: block;
}

/*---------------
   Main section
---------------*/
.content
{
    width: calc(100% - 200px);
}



.main_slider
{
    margin-bottom: 30px;

    border: 1px solid #e6e6e6;
    border-radius: 20px;
    background:    -moz-linear-gradient(-45deg, rgba(255,255,255,.88) 0%, rgba(247,247,247,.88) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,.88) 0%,rgba(247,247,247,.88) 100%);
    background:         linear-gradient(135deg, rgba(255,255,255,.88) 0%,rgba(247,247,247,.88) 100%);
}

.main_slider .slide
{
    position: relative;

    display: none;
    overflow: hidden;
}

.main_slider .slider .slide:first-child,
.main_slider .owl-loaded .slide
{
    display: block;
}

.main_slider .slide .info
{
    position: relative;
    z-index: 9;

    display: flex;

    min-height: 367px;
    padding: 40px 68px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_slider .slide .title
{
    color: #00a08c;
    font: 700 24px/40px Noteworthy;

    width: 100%;
    margin-bottom: 30px;

    letter-spacing: .2em;
}

.main_slider .slide .title span
{
    font-size: 46px;
    line-height: 50px;

    display: block;

    margin-bottom: 5px;

    text-transform: uppercase;
}

.main_slider .slide .desc
{
    color: #4a4a4a;
    font: 24px BloggerSans;

    width: 100%;
    margin-bottom: 40px;
}

.main_slider .slide .link
{
    color: #05a28e;
    font: 18px/48px BloggerSans;

    display: inline-block;

    height: 50px;
    padding: 0 38px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #05a28e;
    border-radius: 30px;
    background: #fff;
}

.main_slider .slide .link:hover
{
    color: #fff;

    background: #05a28e;
}

.main_slider .slide .img
{
    position: absolute;
    top: 50%;
    right: -140px;

    display: block;

    transform: translateY(calc(-50% + 35px));
}



.cats_wall
{
    margin-bottom: 50px;
}

.cats_wall .grid
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.cats_wall .item
{
    color: #00a08c;
    font: 700 20px BloggerSans;

    width: 20%;
    margin-bottom: 20px;

    text-align: center;
    text-decoration: none;
}

.cats_wall .item .icon
{
    position: relative;

    display: flex;

    height: 182px;
    margin-bottom: 45px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cats_wall .item .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.cats_wall .item .icon:after
{
    position: absolute;
    bottom: -36px;
    left: 50%;

    display: block;

    width: 110px;
    height: 36px;
    margin-left: -55px;

    content: '';

    background: url(../images/sh_icon.png) 0 0 no-repeat;
}

.cats_wall .item:hover
{
    text-decoration: underline;
}



.popular_cats
{
    margin-bottom: 45px;
}

.popular_cats .links
{
    width: 900px;
    max-width: 100%;
    margin: 0 auto;

    text-align: center;
}

.popular_cats .links a
{
    color: #f05b95;
    font: 700 19px/20px BloggerSans;

    display: inline-block;

    margin: 0 8px 20px;
    padding: 15px 29px 13px;

    transition: box-shadow .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;

    border: 1px solid #d7d7d7;
    border-radius: 30px;
    background: #fff;
}

.popular_cats .links a:hover
{
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #ea518e;
}



.products .grid
{
    display: flex;

    margin-left: -40px;
    padding-bottom: 10px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
}

.products .grid .product
{
    width: calc(33.333% - 40px);
    margin-bottom: 30px;
    margin-left: 40px;
}


.products .slider
{
    width: calc(100% + 30px);
    margin: -15px -15px 65px;
}

.products .slide
{
    display: none;
}

.products .owl-loaded .slide
{
    display: block;
}

.products .slide .product
{
    margin: 15px;
}


.products .product
{
    position: relative;

    padding: 30px 20px;

    transition: .2s linear;

    border: 1px solid #d7d7d7;
    border-radius: 15px;
    background: #fff;
}


.products .product .thumb
{
    margin-bottom: 20px;
}

.products .product .thumb a
{
    display: flex;

    height: 200px;

    text-decoration: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.products .product .name
{
    margin-bottom: 15px;
}

.products .product .name a
{
    color: #494949;
    font: 24px/25px BloggerSans;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.products .product .name a:hover
{
    color: #00a08c;
}


.products .product .amount
{
    margin-bottom: 15px;
    padding-top: 10px;

            column-count: 2;
    -webkit-column-count: 2;
       -moz-column-count: 2;
}

.products .product .amount input[type=radio]
{
    display: none;
}

.products .product .amount label
{
    color: #494949;
    font: 500 24px BloggerSans;

    position: relative;

    display: inline-block;

    width: 100%;
    margin-bottom: 10px;
    padding-left: 23px;

    cursor: pointer;
    vertical-align: top;
}

.products .product .amount label:before
{
    position: absolute;
    top: 4px;
    left: 0;

    display: block;

    width: 15px;
    height: 15px;

    content: '';
    transition: background .2s linear;

    border: 2px solid #00a08c;
    border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.products .product .amount input[type=radio]:checked + label:before
{
    background: #00a08c;
}


.products .product .price
{
    color: #494949;
    font: 500 24px/52px BloggerSans;

    height: 50px;

    white-space: nowrap;
}

.products .product .price img
{
    position: relative;
    top: -2px;

    display: inline-block;

    margin-left: 6px;

    vertical-align: middle;
}


.products .product .buy_link
{
	border:none;
    color: #f05b95;
    font: 700 16px/50px BloggerSans;

    display: inline-block;

    width: 130px;
    height: 50px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 38px rgba(127,127,127,.3);
}

.products .product .buy_link:hover
{
    color: #fff;

    background: #f05b95;
    box-shadow: none;
}


.products .product:hover
{
    border-color: #00a08c;
    box-shadow: 0 0 25px rgba(0,160,140,.2);
}



.products.related
{
    margin-bottom: 50px;
}

.products.related .block_title
{
    color: #f05c96;
}

.products.related .grid
{
    margin-left: -29px;
}

.products.related .grid .product
{
    width: calc(20% - 29px);
    margin-bottom: 25px;
    margin-left: 29px;
    padding: 25px;

    text-align: center;
}

.products.related .grid .product .thumb a
{
    height: 110px;
}

.products.related .product .name a
{
    color: #00a08c;
    font: 16px BloggerSans;
}

.products.related .product .price
{
    line-height: normal;

    width: 100%;
    height: auto;
    margin-bottom: 13px;

    text-align: center;
}

.products.related .product .buy_link
{
    font-size: 13px;
    line-height: 32px;

    width: 100%;
    height: 30px;
    padding: 0;
}

.products.related .all
{
    text-align: center;
}

.products.related .all a
{
    color: #494949;
    font: 20px/20px BloggerSans;

    display: inline-block;

    width: auto;

    vertical-align: top;
    text-decoration: none;

    border: none;
    border-radius: 0;
}

.products.related .all a:hover
{
    text-decoration: underline;
}



.bg_block
{
    position: relative;

    margin: 165px 0 0;
    padding: 55px 0 130px;

    background: #00a08c url(../images/bg_block.png) 50% 50% repeat;
}

.bg_block:before
{
    position: absolute;
    top: -96px;
    left: 0;

    display: block;

    width: 100%;
    height: 96px;

    content: '';

    background: url(../images/bg_block_before.png) 50% 100% no-repeat;
}

.bg_block .block_title
{
    color: #fff;
}



.advantages .grid
{
    display: flex;

    padding-bottom: 15px;

    counter-reset: div;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.advantages .item
{
    color: #defffb;
    font: 500 18px BloggerSans;

    position: relative;
    z-index: 9;

    width: 33.333%;
    margin-bottom: 40px;

    text-align: center;
}

.advantages .item:before
{
    color: #b1eee6;
    font: 200px/160px ALSMalina;

    position: absolute;
    z-index: -1;
    right: 50%;
    bottom: 0;

    margin-right: -125px;

    content: counter(div);
    counter-increment: div;

    opacity: .2;
}

.advantages .item .icon
{
    position: relative;
    z-index: 9;

    display: flex;

    width: 100px;
    height: 100px;
    margin: 0 auto 20px;

    border-radius: 50%;
    background: #f05e97;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.advantages .item .icon:before
{
    position: absolute;
    z-index: -1;
    top: -6px;
    left: -6px;

    display: block;

    width: calc(100% + 12px);
    height: calc(100% + 12px);

    content: '';

    border: 1px solid rgba(144,254,239,.59);
    border-radius: 50%;
}

.advantages .item .name
{
    color: #fff;
    font: 700 24px/24px BloggerSans;

    margin-bottom: 15px;
}



.portfolio .slider
{
    width: calc(100% + 30px);
    margin: 0 -15px 30px;
}

.portfolio .slide
{
    display: none;
}

.portfolio .owl-loaded .slide
{
    display: block;
}

.portfolio .slide a
{
    display: block;
    overflow: hidden;

    width: calc(100% - 30px);
    margin: 15px;

    transition: box-shadow .2s linear;

    border-radius: 15px;
}

.portfolio .slide img
{
    display: block;

    width: 100%;
}

.portfolio .slide a:hover
{
    box-shadow: 0 0 25px rgba(255,255,255,.7);
}



.portfolio .grid
{
    display: flex;

    margin-left: -30px;
    padding-bottom: 11px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
}

.portfolio .grid .item
{
    color: #727272;
    font: 16px/24px BloggerSans;

    display: block;
    overflow: hidden;

    width: calc(50% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;

    text-decoration: none;

    border: 1px solid #d7d7d7;
    border-radius: 15px;
    background: #fff;
}

.portfolio .grid .item img
{
    display: block;

    width: 100%;
}

.portfolio .grid .item .info
{
    padding: 15px 18px;
}

.portfolio .grid .item .name
{
    color: #494949;
    font: 24px BloggerSans;

    margin-bottom: 5px;
}

.portfolio .grid .item:hover .name
{
    text-decoration: underline;
}



.bg_block2
{
    position: relative;
    z-index: 9;

    padding: 60px 0 1px;

    background: #fcfcfc url(../images/bg_block2.png) 50% 50% repeat;
}

.bg_block2:before
{
    position: absolute;
    top: -70px;
    left: 0;

    display: block;

    width: 100%;
    height: 70px;

    content: '';

    background: url(../images/bg_block2_before.png) 50% 100% no-repeat;
}

.bg_block2:after
{
    position: absolute;
    bottom: -112px;
    left: 0;

    display: block;

    width: 100%;
    height: 112px;

    content: '';

    background: url(../images/bg_block2_after.png) 50% 100% no-repeat;
}



.video_block
{
    width: calc(50% - 15px);
    margin-bottom: 55px;
}

.video_block .block_title
{
    text-align: left;
}

.video_block .video_link
{
    color: #fff;
    font: 700 27px/40px Noteworthy;

    display: block;
    overflow: hidden;

    padding: 25px 25px 35px;

    text-align: center;
    text-decoration: none;

    border-radius: 15px;
    background: url(../images/bg_video_link.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.video_block .video_link img
{
    display: block;

    max-width: 100%;
    margin: 0 auto 30px;
}

.video_block .video_link span
{
    display: block;

    letter-spacing: .01em;
    text-transform: uppercase;
}



.about_block
{
    width: calc(50% - 15px);
    margin-bottom: 55px;
}

.about_block .block_title
{
    text-align: left;
}



.delivery_info
{
    padding-bottom: 40px;
}

.delivery_info .block + .block
{
    margin-top: 30px;
}



.article_info
{
    margin-bottom: 50px;
}

.article_info h1
{
    margin-bottom: 10px;
}

.article_info .date
{
    color: #9b9b9b;
    font: 16px/24px BloggerSans;

    margin-bottom: 30px;
    padding-left: 26px;

    background: url(../images/ic_date.png) 0 0 no-repeat;
}



.holidays_text
{
    margin-bottom: 50px;
}


.holiday
{
    margin-bottom: 50px;
}

.holiday .name
{
    color: #00a08c;
    font: 700 40px/40px Noteworthy;

    margin-bottom: 15px;
}

.holiday .desc
{
    color: #494949;
    font: 16px/30px BloggerSans;
}

.holiday .desc b
{
    font-size: 20px;
}

.holiday .slider
{
    margin-top: 30px;
    padding: 0 68px;
}

.holiday .slide
{
    display: none;
}

.holiday .owl-loaded .slide
{
    display: block;
}

.holiday .slide a
{
    display: block;
    overflow: hidden;

    border: 1px solid #d7d7d7;
    border-radius: 15px;
}

.holiday .slide img
{
    display: block;

    width: 100%;
}



.text_block
{
    color: #484848;
    font: 16px/24px BloggerSans;
}

.text_block h2
{
    color: #494949;
    font: 700 20px/30px BloggerSans;

    margin-bottom: 5px;
}

.text_block p,
.text_block img,
.text_block iframe,
.text_block ul,
.text_block ol,
.text_block blockquote,
.text_block hr,
.text_block table,
.text_block figure
{
    margin-bottom: 20px;
}


.text_block img,
.text_block iframe
{
    display: block;

    max-width: 100%;
    margin: 0 0 30px;
}

.text_block img.left
{
    max-width: calc(50% - 40px);
    margin-right: 40px;
}

.text_block img.right
{
    max-width: calc(50% - 40px);
    margin-left: 40px;
}


.text_block a
{
    color: #00a08c;

    transition: color .2s linear;
    text-decoration: none;
}

.text_block a:hover
{
    color: #f05b95;

    text-decoration: underline;
}


.text_block ul li
{
    display: block;

    list-style-type: none;
}



.articles
{
    margin-bottom: 50px;
}

.articles .block_title
{
    color: #f05b95;
}


.articles .grid
{
    display: flex;

    margin-left: -80px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
}

.articles .grid .item
{
    width: calc(33.333% - 80px);
    margin-bottom: 40px;
    margin-left: 80px;
}


.articles.list
{
    margin-bottom: 5px;
}

.articles.list .item
{
    display: flex;

    margin-bottom: 28px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.articles.list .item .thumb
{
    overflow: hidden;

    width: 269px;
    max-width: 100%;

    border: 1px solid #d7d7d7;
    border-radius: 10px;
}

.articles.list .item .thumb a,
.articles.list .item .thumb img
{
    display: block;

    width: 100%;
}

.articles.list .item .info
{
    width: calc(100% - 300px);
    padding-right: 110px;
}


.articles .item
{
    color: #484848;
    font: 16px/24px BloggerSans;
}

.articles .item .date
{
    color: #9b9b9b;
    font: 16px/24px BloggerSans;

    margin-bottom: 15px;
    padding-left: 26px;

    background: url(../images/ic_date.png) 0 0 no-repeat;
}

.articles .item .name
{
    margin-bottom: 10px;
}

.articles .item .name a
{
    color: #00a08c;
    font: 700 24px/24px BloggerSans;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.articles .item .name a:hover
{
    color: #f05b95;

    text-decoration: underline;
}

.articles .item .details
{
    color: #00a08c;
    font: 700 16px/24px BloggerSans;

    display: inline-block;

    margin-top: 10px;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.articles .item .details:hover
{
    color: #f05b95;

    text-decoration: underline;
}


.articles .all
{
    text-align: center;
}

.articles .all a
{
    color: #f05b95;
    font: 700 19px/50px BloggerSans;

    display: inline-block;

    height: 50px;
    padding: 0 29px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #f05b95;
    border-radius: 50px;
}

.articles .all a:hover
{
    color: #fff;

    background: #f05b95;
}



.contacts_block
{
    position: relative;
    z-index: 5;
}

.contacts_block .info
{
    color: #484848;
    font: 20px BloggerSans;

    position: absolute;
    z-index: 100;
    top: 0;
    left: 50%;

    width: 500px;
    max-width: calc(100% - 30px);
    margin-left: -585px;
    padding: 170px 40px 40px 40px;

    border-radius: 0 0 15px 15px;
    background: #fff;
    box-shadow: 0 3px 106px rgba(177,177,177,.47);
}

.contacts_block .info .block_title
{
    margin-bottom: 30px;

    text-align: left;
}

.contacts_block .info .phones
{
    line-height: 27px;

    padding-left: 55px;

    background: url(../images/ic_phones.png) 0 50% no-repeat;
}

.contacts_block .info .time
{
    line-height: 27px;

    margin-top: 30px;
    padding-left: 55px;

    background: url(../images/ic_time.png) 0 50% no-repeat;
}

.contacts_block .info .adres
{
    margin-top: 30px;
    padding-left: 55px;

    background: url(../images/ic_adres.png) 0 0 no-repeat;
}


#map
{
    overflow: hidden;

    width: 100%;
    height: 865px;

    background: #f7f7f7;
}

.ymaps-layers-pane
{
            filter: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale'); /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}



.contacts_info
{
    margin-bottom: 60px;
}

.contacts_info .info
{
    color: #484848;
    font: 20px BloggerSans;

    width: calc(50% - 15px);
}

.contacts_info .phones
{
    line-height: 27px;

    padding-left: 55px;

    background: url(../images/ic_phones.png) 0 50% no-repeat;
}

.contacts_info .time
{
    line-height: 27px;

    margin-top: 30px;
    padding-left: 55px;

    background: url(../images/ic_time.png) 0 50% no-repeat;
}

.contacts_info .adres
{
    margin-top: 30px;
    padding-left: 55px;

    background: url(../images/ic_adres.png) 0 0 no-repeat;
}


.contacts_info .feedback
{
    width: calc(50% - 15px);
    padding: 40px;

    border: 1px solid #d7d7d7;
    border-radius: 15px;
    background: #fff;
}

.contacts_info .feedback .title
{
    color: #00a08c;
    font: 700 20px BloggerSans;

    margin-bottom: 20px;

    text-align: center;
}

.contacts_info .feedback .title span
{
    color: #494949;
    font-size: 14px;
    font-weight: normal;

    display: block;
}

.contacts_info .feedback .form
{
    width: 270px;
    max-width: 100%;
    margin: 0 auto;
}



.form .line
{
    margin-bottom: 25px;
}

.form .name
{
    color: #494949;
    font: 16px/18px BloggerSans;

    margin-bottom: 10px;
}

.form .required
{
    color: #f05b95;
}

.form .field
{
    position: relative;
}

.form .input
{
    color: #494949;
    font: 16px BloggerSans;

    display: block;

    width: 100%;
    height: 30px;
    padding: 0 20px;

    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
}

.form textarea
{
    color: #494949;
    font: 16px BloggerSans;

    display: block;

    width: 100%;
    height: 100px;
    padding: 6px 20px;

    resize: none;

    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
}


.form .exp
{
    color: #494949;
    font: 14px BloggerSans;
}


.form .radios
{
    margin-bottom: -10px;
    margin-left: -20px;
}

.form .radios label
{
    margin-bottom: 10px;
}


.form input[type=radio]
{
    display: none;
}

.form label
{
    color: #494949;
    font: 16px BloggerSans;

    position: relative;

    display: block;
    float: left;

    margin-left: 20px;
    padding-left: 23px;

    cursor: pointer;
}

.form label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 15px;
    height: 15px;

    content: '';
    transition: background .2s linear;

    border: 2px solid #00a08c;
    border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.form input[type=radio]:checked + label:before
{
    background: #00a08c;
}


.form .captcha
{
    padding: 5px 0;
}

.form .captcha img
{
    display: block;

    max-width: 100%;
}


.form .submit
{
    padding-top: 10px;

    text-align: center;
}

.form .submit_btn
{
    color: #fff;
    font: 16px/50px BloggerSans;

    display: inline-block;

    min-width: 177px;
    height: 50px;
    padding: 0 25px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: 1px solid #f05b95;
    border-radius: 50px;
    background: #f05b95;
}

.form .submit_btn:hover
{
    color: #f05b95;

    background: #fff;
}



.pagination
{
    margin-bottom: 50px;

    text-align: center;
}

.pagination a
{
    color: #d7d7d7;
    font: 20px/50px BloggerSans;

    position: relative;

    display: inline-block;

    width: 50px;
    height: 50px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border: 1px solid #d8d8d8;
    border-radius: 50%;
}

.pagination a + a
{
    margin-left: 7px;
}

.pagination a.prev:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -3px;

    content: '';
    transition: border-color .2s linear;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

.pagination a.next:after
{
    position: absolute;
    top: 50%;
    right: 50%;

    display: block;

    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-right: -4px;

    content: '';
    transition: border-color .2s linear;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.pagination a:hover
{
    color: #00a08c;

    border-color: #00a08c;
}

.pagination a:hover:after
{
    border-color: #00a08c;
}

.pagination a.active
{
    color: #fff;

    border-color: #00a08c;
    background: #00a08c;
}


.pagination .all
{
    padding-top: 20px;
}

.pagination .all a
{
    color: #494949;
    font: 20px/30px BloggerSans;

    display: inline-block;

    width: auto;

    vertical-align: top;
    text-decoration: none;

    border: none;
    border-radius: 0;
}

.pagination .all a:hover
{
    text-decoration: underline;
}



.filter
{
    margin-bottom: 20px;
}


.filter .quike_filter .name
{
    color: #00a08c;
    font: 700 16px/30px BloggerSans;

    display: inline-block;

    padding-right: 10px;

    vertical-align: top;
}

.filter .quike_filter a, #toTop
{
    color: #494949;
    font: 13px/30px BloggerSans;

    display: inline-block;

    height: 30px;
    margin-right: 5px;
    margin-bottom: 15px;
    padding: 0 14px;

    transition: box-shadow .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;

    border: 1px solid #d7d7d7;
    border-radius: 20px;
    background: #fff;
}

.filter .quike_filter a img
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-right: 10px;

    vertical-align: middle;
}

.filter .quike_filter a:hover, #toTop:hover,
.filter .quike_filter a.active
{
    box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #ea518e;
}


.filter .color .name
{
    color: #00a08c;
    font: 700 16px/30px BloggerSans;

    display: inline-block;

    padding-right: 10px;

    vertical-align: top;
}

.filter .color .data
{
    display: inline-block;

    height: 30px;
    padding: 6px 14px;

    vertical-align: top;

    border: 1px solid #d7d7d7;
    border-radius: 20px;
    background: #fff;
}

.filter .color .data a
{
    display: inline-block;

    vertical-align: top;
}

.filter .color .data a + a
{
    margin-left: 6px;
}

.filter .color .data a img
{
    display: block;

    border-radius: 50%;
}



.product_info .images
{
    width: 270px;
    max-width: 100%;
    margin-bottom: 40px;
}

.product_info .images .big .slide
{
    display: none;
}

.product_info .images .big .slider .slide:first-child,
.product_info .images .big .owl-loaded .slide
{
    display: block;
}

.product_info .images .big .slide a
{
    position: relative;

    display: flex;

    width: 100%;
    height: 270px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .images .big .slide img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.product_info .images .thumbs
{
    display: flex;

    margin-top: 10px;
    margin-left: -32px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
}

.product_info .images .thumbs a
{
    display: flex;
    overflow: hidden;

    width: calc(33.333% - 32px);
    height: 69px;
    margin-left: 32px;

    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .images .thumbs img
{
    display: block;

    max-width: 80%;
    max-height: 80%;
}


.product_info .data
{
    width: calc(100% - 300px);
    margin-bottom: 40px;
}

.product_info .product_name
{
    color: #00a08c;
    font: 700 40px/40px Noteworthy;

    max-width: calc(100% - 170px);
    margin-bottom: 20px;
}

.product_info .articul
{
    color: #494949;
    font: 14px/40px BloggerSans;

    max-width: 170px;
    margin-bottom: 20px;

    text-align: right;
}


.product_info .price
{
    color: #494949;
    font: 20px/27px BloggerSans;

    display: inline-block;

    height: 45px;
    margin-bottom: 20px;
    padding: 9px 19px;

    vertical-align: top;

    border: 1px solid #d7d7d7;
    border-radius: 10px;
}

.product_info .price img
{
    position: relative;
    top: -1px;

    display: inline-block;

    vertical-align: middle;
}


.product_info .amount
{
    display: inline-block;

    margin-left: 20px;

    vertical-align: top;
}

.product_info .amount .box
{
    display: inline-block;
    overflow: hidden;

    margin-left: 10px;

    vertical-align: top;

    border-radius: 15px;
}

.product_info .amount .bt
{
    color: #fff;
    font: 700 13px/25px BloggerSans;

    display: block;
    float: left;

    width: 30px;
    height: 25px;

    text-align: center;
    text-decoration: none;

    border: 1px solid #00a08c;
    background: #00a08c;
}

.product_info .amount .input
{
    color: #494949;
    font: 700 16px BloggerSans;

    display: block;
    float: left;

    width: 30px;
    height: 25px;
    padding-top: 3px;

    text-align: center;

    border: 1px solid #00a08c;
    background: #fff;
}


.product_info .composition
{
    color: #494949;
    font: 16px/20px BloggerSans;

    margin-bottom: 25px;
}

.product_info .composition li
{
    list-style-type: none;
}


.product_info .buy_link
{
	border:none;
    color: #fff;
    font: 16px/38px BloggerSans;

    display: inline-block;

    height: 38px;
    padding: 0 25px;

    vertical-align: top;
    text-decoration: none;

    border-radius: 30px;
    background: #00a08c;
}


.product_info .pluses
{
    color: #494949;
    font: 16px/20px BloggerSans;

    margin-top: 25px;
}

.product_info .pluses .title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;

    margin-bottom: 5px;
}

.product_info .pluses li
{
    list-style-type: none;
}

.product_info .pluses li + li
{
    margin-top: 10px;
}



.cart_info
{
    margin-bottom: 50px;
}

.cart_info table
{
    width: 100%;
    margin-bottom: 20px;

    border-spacing: 0;
    border-collapse: collapse;
}

.cart_info table th
{
    color: #494949;
    font: 20px BloggerSans;

    padding: 0 15px 15px;

    text-align: left;
    vertical-align: middle;
}

.cart_info table th:last-child
{
    padding-right: 0;
}


.cart_info table td
{
    position: relative;

    padding: 20px 15px;

    text-align: left;
    vertical-align: middle;

    border-top: 1px solid #c6c6c6;
}

.cart_info table td:last-child
{
    padding-right: 0;
}


.cart_info table td.image
{
    width: 95px;

    table-layout: fixed;
}

.cart_info table td.image a,
.cart_info table td.image img
{
    display: block;

    width: 55px;
    max-width: 100%;
    margin: 0 auto;
}


.cart_info table td.name
{
    width: 50%;
}

.cart_info table td.name a
{
    color: #00a08c;
    font: 700 20px BloggerSans;

    display: inline-block;

    text-decoration: none;
}

.cart_info table td.name a:hover
{
    text-decoration: underline;
}


.cart_info table td.amount .box
{
    display: inline-block;
    overflow: hidden;

    vertical-align: top;

    border-radius: 15px;
}

.cart_info table td.amount span.bt
{
		cursor:pointer;
    color: #fff;
    font: 700 13px/25px BloggerSans;

    display: block;
    float: left;

    width: 30px;
    height: 25px;

    text-align: center;
    text-decoration: none;

    border: 1px solid #00a08c;
    background: #00a08c;
}

.cart_info table td.amount .input
{
    color: #494949;
    font: 700 16px BloggerSans;

    display: block;
    float: left;

    width: 30px;
    height: 25px;
    padding-top: 3px;

    text-align: center;

    border: 1px solid #00a08c;
    background: #fff;
}


.cart_info table td.price
{
    color: #494949;
    font: 700 20px/25px BloggerSans;
}

.cart_info table td.price img
{
    position: relative;
    top: -1px;

    display: inline-block;

    vertical-align: middle;
}


.cart_info table td.delete
{
    padding-right: 0;

    text-align: right;
}

.cart_info table td.delete a
{
    color: #00a08c;
    font: 700 16px/25px BloggerSans;

    display: inline-block;

    padding-left: 19px;

    text-decoration: none;

    background: url(../images/ic_delete.png) 0 calc(50% - 2px) no-repeat;
}

.cart_info table td.delete a:hover
{
    text-decoration: underline;
}


.cart_info .delivery_method
{
    margin-bottom: 20px;

    text-align: right;
}

.cart_info .delivery_method input[type=radio]
{
    display: none;
}

.cart_info .delivery_method label
{
    color: #494949;
    font: 500 20px BloggerSans;

    position: relative;

    display: inline-block;

    margin-left: 20px;
    padding-left: 23px;

    cursor: pointer;
    vertical-align: top;
}

.cart_info .delivery_method label:before
{
    position: absolute;
    top: 2px;
    left: 0;

    display: block;

    width: 15px;
    height: 15px;

    content: '';
    transition: background .2s linear;

    border: 2px solid #00a08c;
    border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.cart_info .delivery_method input[type=radio]:checked + label:before
{
    background: #00a08c;
}


.cart_info .cart_total
{
    width: 385px;
    max-width: 100%;
}

.cart_info .cart_total .line
{
    color: #494949;
    font: 20px BloggerSans;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: nowrap;
}

.cart_info .cart_total .line + .line
{
    margin-top: 15px;
}

.cart_info .cart_total .name
{
    width: 200px;
    padding-right: 5px;

    text-align: right;
    white-space: nowrap;
}

.cart_info .cart_total .solid
{
    width: 100%;
    margin-bottom: 6px;

    border-bottom: 1px solid #494949;
}

.cart_info .cart_total .price
{
    font-weight: 700;

    padding-left: 5px;

    white-space: nowrap;
}

.cart_info .cart_total .price.big
{
    font-size: 26px;
}

.cart_info .cart_total .price img
{
    position: relative;
    top: -2px;

    display: inline-block;

    vertical-align: middle;
}



.checkout
{
    margin-bottom: 50px;
}

.checkout .block_title
{
    color: #00a08c;
    font: 700 40px/40px Noteworthy;

    margin-bottom: 40px;

    text-align: left;
}

.checkout .form
{
    display: flex;

    margin-left: -100px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.checkout .form .col
{
    width: calc(33.333% - 100px);
    margin-left: 100px;
}

.checkout .form .col.big
{
    width: calc(66.666% - 100px);
}

.checkout .form .title
{
    color: #00a08c;
    font: 700 20px BloggerSans;

    margin-bottom: 30px;
}

.checkout .form .input
{
    width: 270px;
    max-width: 100%;
}

.checkout .form textarea
{
    width: 400px;
    max-width: 100%;
}

.checkout .form .submit
{
    width: calc(100% - 80px);
    margin-left: 100px;
    padding-top: 5px;

    text-align: right;
}



/*---------------
   Footer
---------------*/
footer
{
    padding: 25px 0 15px;

    background: #484848;
}

footer .cont
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


footer .logo img
{
    display: block;

    max-width: 100%;
}


footer .copyright
{
    color: #f1f0ef;
    font: 16px BloggerSans;

    margin-top: 20px;
}


footer .socials
{
	text-align:center;
	    width: 100%;
    margin-bottom: 20px;
    /*position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);*/
}
#timeDate table{width:100%;}
#timeDate table td{width:50%;}
#timeDate table p{display:block; font: 16px BloggerSans; margin-bottom:10px;}
#timeDate table input{width:100%;}

footer .socials a
{
    display: inline-block;

    width: 39px;
    height: 38px;

    vertical-align: top;

    border-radius: 50%;
    background: url(../images/ic_socials2.png) 0 0 no-repeat;
}

footer .socials a + a
{
    margin-left: 3px;
}

footer .socials a.soc1
{
    background-position: 0 0;
}

footer .socials a.soc2
{
    background-position: -39px 0;
}

footer .socials a.soc3
{
    background-position: -78px 0;
}


footer .contacts
{
    color: #f1f0ef;
    font: 20px BloggerSans;

    text-align: right;
}

footer .phones
{
    font-size: 28px;

    margin-bottom: 15px;
}

footer .adres img
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-right: 2px;

    vertical-align: middle;
}



/*---------------
   PopUp
---------------*/
.modal
{
    display: none;

    width: 468px;
    max-width: calc(100% - 30px);
    padding: 40px;

    border-radius: 15px;
    background: #fff;
}


.modal_title
{
    color: #00a08c;
    font: 700 20px BloggerSans;

    text-align: center;
}

.modal_title span
{
    color: #494949;
    font-size: 14px;
    font-weight: normal;

    display: block;
}
.phones a{text-decoration: none;
    color: grey;
    /*width: 180px;*/
    display: inline-block;
    text-align: justify;
    text-align-last: justify;}
	.green_check:before{    background: #00a08c !important;}
.shk-but-catalog{cursor:pointer;}
.modal .form
{
    width: 270px;
    max-width: 100%;
    margin: 20px auto 0;
}
.g-recaptcha {
	transform: scale(0.90);
	transform-origin: 0 0;
}	
.holyday_filters a, .color_filters a{cursor:pointer;}
#toTop {
width:100px;
border:1px solid #ccc;
background:#f7f7f7;
text-align:center;
position:fixed;
bottom:10px; /* отступ кнопки от нижнего края страницы*/
right:10px;
cursor:pointer;
display:none;
z-index:9999;
color:#333;
}
.manyPrices{ 
font-family:BloggerSans;
   background: #f05b95;
    color: white;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 10px;
    padding: 10px;}