@charset "UTF-8";
/* Scss Document */
:root {
    --px: 30px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 15px;
    --font16: 16px;
    --font17: 17px;
    --font18: 18px;
    --font20: 20px;
    --font24: 24px;
    --font26: 26px;
    --font28: 28px;
    --font32: 32px;
    --font40: 40px;
}

.fz12 {
    font-size: var(--font12);
}

.fz13 {
    font-size: var(--font13);
}

.fz14 {
    font-size: var(--font14);
}

.fz15 {
    font-size: var(--font15);
}

.fz16 {
    font-size: var(--font16);
}

.fz17 {
    font-size: var(--font17);
}

.fz18 {
    font-size: var(--font18);
}

.fz20 {
    font-size: var(--font20);
}

.fz24 {
    font-size: var(--font24);
}

.fz26 {
    font-size: var(--font26);
}

.fz28 {
    font-size: var(--font28);
}

.fz32 {
    font-size: var(--font32);
}

.fz40 {
    font-size: var(--font40);
}

.tetx-center {
    text-align: center;
}

.fw300 {
    font-weight: 300;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.lh {
    line-height: 1;
}

.lh110 {
    line-height: 110%;
}

.lh120 {
    line-height: 120%;
}

.lh130 {
    line-height: 130%;
}

.lh140 {
    line-height: 140%;
}

.lh150 {
    line-height: 150%;
}

.lh160 {
    line-height: 160%;
}

.lh170 {
    line-height: 170%;
}

.lh180 {
    line-height: 180%;
}

.lh190 {
    line-height: 190%;
}

.lh200 {
    line-height: 200%;
}

.block {
    display: block;
}

.dib {
    display: inline-block;
}

.flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dif {
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.fxs {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.fxg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.fxww {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.aie {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.jcfs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.jcfe {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.jcc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.grid2 {
    margin-right: calc(var(--px) * -1);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid2 .col {
    width: calc(50% - var(--px));
    margin-right: var(--px);
    margin-bottom: var(--px);
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.grid3 {
    margin-right: calc(var(--px) * -1);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid3 .col {
    width: calc(33.3333333333% - var(--px));
    margin-right: var(--px);
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.grid3 .col:nth-child(1n+4) {
    margin-top: var(--px);
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.grid4 {
    margin-right: calc(var(--px) * -1);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid4 .col {
    width: calc(25% - var(--px));
    margin-right: var(--px);
    margin-bottom: var(--px);
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.grid5 {
    margin-right: calc(var(--px) * -1);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid5 .col {
    width: calc(20% - var(--px));
    margin-right: var(--px);
    margin-bottom: var(--px);
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.oh {
    overflow: hidden;
}

.no-under {
    text-decoration: none;
}

.ttu {
    text-transform: uppercase;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.block {
    display: block;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.z-60 {
    z-index: 60;
}

.z-70 {
    z-index: 70;
}

.z-80 {
    z-index: 80;
}

.z-90 {
    z-index: 90;
}

.z-100 {
    z-index: 100;
}

.op-10 {
    opacity: 0.1;
}

.op-20 {
    opacity: 0.2;
}

.op-30 {
    opacity: 0.3;
}

.op-40 {
    opacity: 0.4;
}

.op-50 {
    opacity: 0.5;
}

.op-60 {
    opacity: 0.6;
}

.op-70 {
    opacity: 0.7;
}

.op-80 {
    opacity: 0.8;
}

.op-90 {
    opacity: 0.9;
}

.round-5 {
    border-radius: 5px;
}

.round-6 {
    border-radius: 6px;
}

.round-7 {
    border-radius: 7px;
}

.round-8 {
    border-radius: 8px;
}

.round-9 {
    border-radius: 9px;
}

.round-10 {
    border-radius: 10px;
}

.round-11 {
    border-radius: 11px;
}

.round-12 {
    border-radius: 12px;
}

.round-13 {
    border-radius: 13px;
}

.round-14 {
    border-radius: 14px;
}

.round-15 {
    border-radius: 15px;
}

.round-20 {
    border-radius: 20px;
}

.round-20 {
    border-radius: 20px;
}

.round-full {
    border-radius: 100%;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

input[type=text],
input[type=tel],
input[type=email] {
    font-family: "Rubik";
    outline: none;
}

input[type=submit],
button {
    outline: none;
    cursor: pointer;
    font-family: "Rubik";
}

svg {
    display: block;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-1 {
    margin-bottom: 1px;
}

.mb-2 {
    margin-bottom: 2px;
}

.mb-3 {
    margin-bottom: 3px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-6 {
    margin-bottom: 6px;
}

.mb-7 {
    margin-bottom: 7px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-9 {
    margin-bottom: 9px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-11 {
    margin-bottom: 11px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-14 {
    margin-bottom: 14px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-19 {
    margin-bottom: 19px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-1 {
    margin-top: 1px;
}

.mt-2 {
    margin-top: 2px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-7 {
    margin-top: 7px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-9 {
    margin-top: 9px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.ml-0 {
    margin-left: 0px;
}

.ml-1 {
    margin-left: 1px;
}

.ml-2 {
    margin-left: 2px;
}

.ml-3 {
    margin-left: 3px;
}

.ml-4 {
    margin-left: 4px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-6 {
    margin-left: 6px;
}

.ml-7 {
    margin-left: 7px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-9 {
    margin-left: 9px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-1 {
    margin-right: 1px;
}

.mr-2 {
    margin-right: 2px;
}

.mr-3 {
    margin-right: 3px;
}

.mr-4 {
    margin-right: 4px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-6 {
    margin-right: 6px;
}

.mr-7 {
    margin-right: 7px;
}

.mr-8 {
    margin-right: 8px;
}

.mr-9 {
    margin-right: 9px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-11 {
    margin-right: 11px;
}

.mr-12 {
    margin-right: 12px;
}

.mr-13 {
    margin-right: 13px;
}

.mr-14 {
    margin-right: 14px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-1 {
    padding-bottom: 1px;
}

.pb-2 {
    padding-bottom: 2px;
}

.pb-3 {
    padding-bottom: 3px;
}

.pb-4 {
    padding-bottom: 4px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-6 {
    padding-bottom: 6px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-9 {
    padding-bottom: 9px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-11 {
    padding-bottom: 11px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pb-13 {
    padding-bottom: 13px;
}

.pb-14 {
    padding-bottom: 14px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-1 {
    padding-top: 1px;
}

.pt-2 {
    padding-top: 2px;
}

.pt-3 {
    padding-top: 3px;
}

.pt-4 {
    padding-top: 4px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-6 {
    padding-top: 6px;
}

.pt-7 {
    padding-top: 7px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-9 {
    padding-top: 9px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pl-0 {
    padding-left: 0px;
}

.pl-1 {
    padding-left: 1px;
}

.pl-2 {
    padding-left: 2px;
}

.pl-3 {
    padding-left: 3px;
}

.pl-4 {
    padding-left: 4px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-6 {
    padding-left: 6px;
}

.pl-7 {
    padding-left: 7px;
}

.pl-8 {
    padding-left: 8px;
}

.pl-9 {
    padding-left: 9px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-1 {
    padding-right: 1px;
}

.pr-2 {
    padding-right: 2px;
}

.pr-3 {
    padding-right: 3px;
}

.pr-4 {
    padding-right: 4px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-6 {
    padding-right: 6px;
}

.pr-7 {
    padding-right: 7px;
}

.pr-8 {
    padding-right: 8px;
}

.pr-9 {
    padding-right: 9px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.p-0 {
    padding-right: 0px;
}

.p-0 {
    padding: 0px;
}

.p-0 {
    padding: 0px;
}

.p-1 {
    padding: 1px;
}

.p-2 {
    padding: 2px;
}

.p-3 {
    padding: 3px;
}

.p-4 {
    padding: 4px;
}

.p-5 {
    padding: 5px;
}

.p-6 {
    padding: 6px;
}

.p-7 {
    padding: 7px;
}

.p-8 {
    padding: 8px;
}

.p-9 {
    padding: 9px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px;
}

.p-30 {
    padding: 30px;
}

.p-35 {
    padding: 35px;
}

.p-40 {
    padding: 40px;
}

.p-45 {
    padding: 45px;
}

.p-50 {
    padding: 50px;
}

.p-60 {
    padding: 60px;
}

.p-65 {
    padding: 65px;
}

.p-70 {
    padding: 70px;
}

.p-75 {
    padding: 75px;
}

.p-80 {
    padding: 80px;
}

.p-85 {
    padding: 85px;
}

.p-90 {
    padding: 90px;
}

.p-95 {
    padding: 95px;
}

.p-100 {
    padding: 100px;
}

/* Scss Document */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#page {
    position: relative;
}

a, img {
    outline: none;
}

* {
    padding: 0px;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Scss Document */
img {
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

a {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
}

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

input::-webkit-input-placeholder {
    text-indent: 0px;
    -webkit-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input::-moz-placeholder {
    text-indent: 0px;
    -moz-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:-moz-placeholder {
    text-indent: 0px;
    -moz-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:-ms-input-placeholder {
    text-indent: 0px;
    -ms-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:focus::-webkit-input-placeholder {
    text-indent: -500px;
    -webkit-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:focus::-moz-placeholder {
    text-indent: -500px;
    -moz-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:focus:-moz-placeholder {
    text-indent: -500px;
    -moz-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input:focus:-ms-input-placeholder {
    text-indent: -500px;
    -ms-transition: text-indent 0.3s ease;
    transition: text-indent 0.3s ease;
}

input[placeholder] {
    text-overflow: ellipsis;
}

input::-moz-placeholder {
    text-overflow: ellipsis;
}

input:-moz-placeholder {
    text-overflow: ellipsis;
}

input:-ms-input-placeholder {
    text-overflow: ellipsis;
}

input[type=submit],
input[type=button],
button {
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Scss Document */
.text img {
    max-width: 100% !important;
    height: auto !important;
}

.text ul {
    margin-bottom: 25px;
    list-style-type: square;
    list-style-position: inside;
}

.text ul ul {
    margin-top: 25px;
    margin-left: 15px;
}

.text ol {
    margin-bottom: 25px;
    margin-left: 0px;
    list-style-position: inside;
}

.text ul ul li {
    background-image: none;
    padding-left: 0px;
    list-style-type: square;
}

.text li + li {
    margin-top: 5px;
}

.text p {
    margin-bottom: 25px;
}

.text p:last-child {
    margin-bottom: 0;
}

.text table {
    margin-bottom: 25px;
    background-color: #fff;
    border-collapse: collapse;
    width: 100%;
}

.text table tr:nth-child(2n+2) {
    background-color: rgba(238, 238, 238, 0.42);
}

.text table tr:hover {
    background-color: rgba(238, 238, 238, 0.8);
}

.text table th {
    background-color: #30A2D9;
    padding: 15px 10px;
    color: #fff;
    border: 1px solid #fff;
}

.text table th p {
    margin-bottom: 0;
}

.text table td {
    padding: 10px;
    border: 1px solid #fff;
}

.text table td p {
    margin-bottom: 0;
}

.text blockquote {
    margin-bottom: 25px;
    color: #fff;
    background-color: #30A2D9;
    padding: 10px;
}

.text blockquote p {
    margin-bottom: 0px;
}

body {
    color: #272727;
    font-family: "Rubik";
    font-size: 14px;
    background-color: #fff;
}

a {
    color: #537BB9;
}

.hide {
    display: none;
}

.text-red {
    color: #BC5C85;
}

.text-blue {
    color: #537BB9;
}

.text-black {
    color: #272727;
}

.text-gray {
    color: #7E7E7E;
}

.text-fff {
    color: #fff;
}

.bg-black {
    background-color: #272727;
}

.bg-000 {
    background-color: #000;
}

.bg-fff {
    background-color: #fff;
}

.bg-ea {
    background-color: #EAF4FD;
}

.bg-fa {
    background-color: #FAEDF2;
}

#page {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
}

.page_inner {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.wrap {
    max-width: 1202px;
    min-width: 280px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.btn {
    border-width: 0;
    cursor: pointer;
    background-color: #BF4F7E;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    padding: 14px 25px;
    border-radius: 40px;
    line-height: 1;
}

.btn:hover {
    background-color: #A53B67;
}

.btn-blue {
    border-width: 0;
    cursor: pointer;
    background-color: #537BB9;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    padding: 14px 25px;
    border-radius: 40px;
    line-height: 1;
}

.btn-blue:hover {
    background-color: #3F67A7;
}

.btn-border {
    border: 2px solid #D0E1F1;
    cursor: pointer;
    background-color: transparent;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    padding: 12px 25px;
    border-radius: 40px;
    line-height: 1;
}

.btn-border:hover {
    border-color: #537BB9;
}

.btn-border-red {
    border: 2px solid #BC5C85;
    cursor: pointer;
    background-color: transparent;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    line-height: 1;
}

.btn-border-red svg {
    margin-right: 12px;
}

.btn-round {
    border-width: 0;
    cursor: pointer;
    background: -webkit-gradient(linear, left bottom, left top, from(#E6F0F9), to(#E6F0F9)), #D6E4F1;
    background: linear-gradient(0deg, #E6F0F9, #E6F0F9), #D6E4F1;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    padding: 0;
    border-radius: 100%;
    line-height: 1;
    width: 43px;
    height: 43px;
}

.btn-round:hover path {
    fill: #537BB9;
}

header {
    padding-top: 30px;
}

.head-bg {
    background-color: #EAF4FD;
    padding-bottom: 65px;
}

.head-bg-other {
    background-color: #EAF4FD;
    padding-top: 30px;
}

.head-bg-other header {
    padding-top: 0;
    height: 80px;
    margin-bottom: 0 !important;
}

.head-bg-other header .wrap {
    height: 100%;
}

.head-bg-other header .head {
    height: 100%;
}

.home-post {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.home-post .thumb {
    height: 500px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}

.home-post .thumb img {
    display: block;
    position: absolute;
    top: 0%;
    right: -60px;
}

.home-post .info {
    width: 490px;
}

.black_a a {
    color: #272727;
    text-decoration: none;
}

.filter-other {
    background-color: #272727;
}

.filter-other .filter {
    margin: 0;
    border-width: 0;
    border-radius: 0;
}

.filter-other .filter .inner {
    border-radius: 0;
}

.filter {
    margin-top: -75px;
    margin-left: -20px;
    margin-right: -20px;
    border: 20px solid #fff;
    border-radius: 35px;
}

.filter .inner {
    height: 98px;
    background-color: #272727;
    border-radius: 25px;
    color: #fff;
}

.filter .submit {
    width: 106px;
    border-radius: 25px;
    background-color: #BC5C85;
    border-width: 0;
    cursor: pointer;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 19px;
}

.filter .submit:hover {
    background-color: #A53B67;
}

.filter-field {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%;
    border-right: 1px solid #393a3b;
    padding: 24px 19px 0 23px;
    position: relative;
}

.filter-field .arrow {
    position: absolute;
    top: 50%;
    right: 19px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.filter-field .arrow.active {
    -webkit-transform: translate(0, -50%) rotate(-180deg);
    transform: translate(0, -50%) rotate(-180deg);
}

.filter-field .label {
    margin-bottom: 15px;
}

.center {
    text-align: center;
}

.home-message {
    background-image: url(../images/bg-home-message.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 101px 0 96px 0;
}

.vacan-message {
    background-image: url(../images_v/bg-vacan.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 229px 0;
}

.box-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.box-name.bold {
    font-weight: bold;
}

.box-popular {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
}

.box-popular .col {
    width: calc(25% - 20px);
    margin-right: 20px;
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.box-popular .col:nth-child(1n+5) {
    margin-top: 30px;
}

.box-recommended {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
}

.box-recommended .col {
    width: calc(25% - 20px);
    margin-right: 20px;
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.box-recommended .col:nth-child(1n+5) {
    margin-top: 30px;
}

.box-about {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -37px;
}

.box-about .col {
    width: calc(20% - 37px);
    margin-right: 37px;
    flex-basis: unset;
    flex-grow: unset;
    padding: 0;
}

.box-about .col:nth-child(1n+6) {
    margin-top: 37px;
}

@media (min-width: 993px) {
    .box-news {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -20px;
    }

    .box-news .col {
        width: calc(33.3333333333% - 20px);
        margin-right: 20px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-news .col:nth-child(1n+4) {
        margin-top: 30px;
    }

    .box-reviews {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -36px;
    }

    .box-reviews .col {
        width: calc(25% - 36px);
        margin-right: 36px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-reviews .col:nth-child(1n+5) {
        margin-top: 30px;
    }
}

.posr {
    position: relative;
}

.item-popular .thumb a{
    height: 250px;
}

.item-popular img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 17px;
}

.item-popular .title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 19px 10px;
    pointer-events: none;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
}

.item-popular .info {
    padding: 15px 20px 0 20px;
}

.item-popular .fz14 {
    margin-bottom: 12px;
    color: #7E7E7E;
}

.item-popular span {
    font-weight: 500;
}

.item-about .thumb {
    margin-bottom: 15px;
}

.item-recommended .thumb {
    height: 250px;
}

.item-recommended img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 17px;
}

.item-recommended .city {
    color: #7E7E7E;
}

.item-recommended b {
    color: #BC5C85;
}

.item-news .thumb {
    margin-bottom: 10px;
}

.item-news img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 17px;
}

.item-news .date {
    color: #7E7E7E;
    margin-bottom: 10px;
}

.item-news .category-link a {
    color: #272727;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

.item-news .category-link a:hover {
    color: #BC5C85;
}

.item-news .title {
    margin-bottom: 10px;
}

.item-news .title a {
    color: #272727;
    text-decoration: none;
}

.item-news .title a:hover {
    color: #BC5C85;
}

.item-news .txt {
    color: #7E7E7E;
    margin-bottom: 10px;
}

.item-news .readmore a {
    color: #BC5C85;
    text-decoration: none;
}

.item-news .readmore a:hover {
    color: #272727;
}

.rating-user .ava {
    width: 44px;
}

.rating-user .name {
    line-height: 1;
}

.rating-user img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.rating-user li {
    display: block;
}

.item-reviews .thumb {
    height: 250px;
}

.item-reviews_title {
    height: 42px;
}

.item-reviews .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 17px;
}

.item-reviews .data span {
    color: #7C93A8;
}

.item-reviews .data i {
    font-style: normal;
    font-weight: 500;
}

footer {
    margin-top: 85px;
    background-color: #272727;
}

.box-subscription {
    background-color: #EAF4FD;
    padding: 42px 0 25px 0;
}

.box-subscription .col {
    width: 50%;
}

.box-subscription .left {
    padding-right: 20px;
}

.subscription-form .bg-fff {
    border-radius: 40px;
}

.subscription-form input {
    background-color: #fff;
    padding: 0 33px;
    border-radius: 40px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-width: 0;
    font-family: "Rubik";
    font-size: 14px;
    color: #272727;
}

.subscription-form input::-webkit-input-placeholder {
    color: #272727;
}

.subscription-form input::-moz-placeholder {
    color: #272727;
}

.subscription-form input:-moz-placeholder {
    color: #272727;
}

.subscription-form input:-ms-input-placeholder {
    color: #272727;
}

.confurm input {
    display: none;
}

.confurm input:checked + label:before {
    content: "";
    background-color: #537BB9;
}

.confurm label {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}

.confurm label:before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    background-color: #fff;
    border-radius: 4px;
    margin-right: 14px;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 14px;
}

.confurm-2 input {
    display: none;
}

.confurm-2 input:checked + label:before {
    background-position: center center;
}

.confurm-2 label {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    line-height: 140%;
}

.confurm-2 label:before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    background-color: #EAF4FD;
    border-radius: 4px;
    margin-right: 14px;
    background-image: url(../images_v/check-3.svg);
    background-repeat: no-repeat;
    background-position: -100px center;
}

.foot {
    padding: 57px 0;
    color: #fff;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.foot .name {
    text-transform: uppercase;
}

.foot ul {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.foot li {
    display: block;
    margin-bottom: 17px;
}

.foot li:last-child {
    margin-bottom: 0;
}

.foot li a {
    color: #fff;
    text-decoration: none;
}

.foot li a:hover {
    color: #BC5C85;
}

.foot-widget {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 25%;
}

.contact-footer {
    position: relative;
    margin-bottom: 25px;
    padding-left: 17px;
}

.contact-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #BC5C85;
}

.contact-footer:last-child {
    margin-bottom: 0;
}

.contact-footer dt {
    font-size: 12px;
    margin-bottom: 12px;
    color: #BDBDBD;
}

.contact-footer dd {
    font-size: 16px;
    font-weight: 500;
}

.contact-footer dd a {
    color: #fff;
    text-decoration: none;
}

.contact-footer dd a:hover {
    text-decoration: underline;
}

.footer-link p {
    margin-bottom: 20px;
}

.footer-link p:last-child {
    margin-bottom: 0;
}

.footer-link a {
    color: #BC5C85;
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

.logo-footer img {
    display: block;
}

.meta-item {
    padding: 7.5px 15px;
    background: #EAF4FD;
    border-radius: 50px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #272727;
}

.meta-item b {
    margin-right: 10px;
    color: #537BB9;
}

a.meta-item:hover {
    background-color: #BC5C85;
    color: #fff;
}

a.meta-item.active {
    background-color: #BC5C85;
    color: #fff;
}

a.meta-item.active path {
    fill: #fff;
}

a.meta-item:hover path {
    fill: #fff;
}

.product-images-pk {
    /*padding-left: 105px;*/
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    border-radius: 17px;
    padding: 10px;
}

.product-images-pk img {
    display: block;
    border-radius: 17px;
}

.product-info-pk {
    width: 45.5%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-images-pk-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
}

.product-images-pk-nav img {
    border-radius: 10px;
}

.product-images-pk-thumb {
    overflow: hidden;
    border-radius: 17px;
}

.product-images-pk-thumb img {
    border-radius: 17px;
    width: 100%;
    height: auto;
}

.product-info-pk-inner {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    border-radius: 17px;
    padding: 30px;
}

.product-date {
    border-radius: 50px;
    padding: 16px;
}

.product-data li {
    margin-bottom: 10px;
}

.product-data li:last-child {
    margin-bottom: 0;
}

.product-data li span {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-data .mb-20 {
    margin-bottom: 20px;
}

.btn-product-image-prev,
.btn-product-image-prev-2 {
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 3;
}

.btn-product-image-prev:hover path,
.btn-product-image-prev-2:hover path {
    stroke: #BC5C85;
}

.btn-product-image-next,
.btn-product-image-next-2 {
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 3;
}

.btn-product-image-next:hover path,
.btn-product-image-next-2:hover path {
    stroke: #BC5C85;
}

.map {
    width: 45.5%;
    min-height: 300px;
    border-radius: 17px;
    overflow: hidden;
}

.product-option li {
    width: 48%;
    display: block;
    padding-left: 28px;
    background-image: url(../images/li-check.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    margin-bottom: 17px;
}

.product-option li:last-child {
    margin-bottom: 0;
}

.reviews-date {
    color: #7C93A8;
}

.reviews-date span {
    color: #272727;
    font-weight: 500;
}

.product-images-pk-nav-slider .slick-current {
    position: relative;
}

.product-images-pk-nav-slider .slick-current:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 10px;
    border: 3px solid #BF4F7E;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.product-images-pk-nav-slider .slick-slide {
    margin-bottom: 5px;
    cursor: pointer;
}

.product-images-pk-nav-slider .slick-slide:hover {
    opacity: 0.9;
}

.tags a {
    font-size: 14px;
    color: #537BB9;
    text-decoration: none;
}

.tags a:hover {
    color: #BC5C85;
}

.sort-item {
    text-decoration: none;
}

.sort-item a{
    text-decoration: none;
}

.sort-item:last-child {
    margin-right: 0;
}

.sort-item select {
    outline: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 9px 37px 9px 15px;
    border-radius: 50px;
    background-color: #EAF4FD;
    font-family: "Rubik";
    font-size: 14px;
    color: #272727;
    background-image: url(../images/select.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-reset {
    padding: 9px 15px 9px 15px;
    border-radius: 50px;
    background-color: #EAF4FD;
    font-family: "Rubik";
    font-size: 14px;
    color: #272727;
    border-width: 0;
    text-decoration: none;
}

.btn-reset:hover {
    background-color: #BC5C85;
    color: #fff;
}

.category-row-left {
    margin-right: 30px;
}

.category-row-right {
    width: 242px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.box-92-left {
    width: 200px;
}

.short {
    padding: 30px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    border-radius: 17px;
}

.short .thumb {
    position: relative;
    height: 300px;
}

.short .thumb.w70 {
    width: 40%;
    min-width: 320px;
}

.short .thumb img {
    display: block;
    border-radius: 17px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.btn_login_tw_link_vs {
    width: 150px;
    height: 50px;
    border-radius: 40px;
    background-color: #BF4F7E;
    border: 2px solid #BF4F7E;
    outline: none;
    color: white;
}

.btn_login_tw_link_vs:hover {
    outline: none;
    background-color: #c75688;
}

.short .title {
    margin-bottom: 5px;
}

.short .title a {
    color: #272727;
    text-decoration: none;
}

.short .add-favorite {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    /*padding-top: 1px;*/
}

.short .add-favorite svg {
    display: block;
}

.short .add-favorite:hover {
    background-color: #BC5C85;
}

.short .add-favorite:hover path {
    fill: #fff;
}

.vs-filter-btn {
    background-color: #EAF4FD;
    padding: 12px 12px;
    border-radius: 17px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
}

.box-89 {
    font-size: 16px;
}

.box-89 p {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
}

.box-89 p:last-child {
    margin-right: 0;
}

.box-89 p span {
    margin-left: 10px;
}

.row-5 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -5px;
}

.row-5 > * {
    margin: 2px 5px 5px 5px;
}

.box-92-right p {
    margin-bottom: 20px;
}

.box-92-right p:last-child {
    margin-bottom: 0;
}

.filter-right-box {
    border-radius: 17px;
    padding: 20px;
    margin-bottom: 10px;
}

.filter-right-box:last-child {
    margin-bottom: 0;
}

.filter-right-box .input {
    background-color: #fff;
    width: 100%;
    height: 43px;
    border-radius: 50px;
    font-family: "Rubik";
    font-size: 14px;
    color: #272727;
    text-align: center;
    border-width: 0;
}

.filter-right-box dd p {
    margin-right: 5px;
}

.filter-right-box dd p:last-child {
    margin-right: 0;
}

.check-list li {
    display: block;
    margin-bottom: 12px;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li input[type=checkbox] {
    display: none;
}

.check-list li input[type=checkbox]:checked + label:before {
    background-position: center center;
}

.check-list li label {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.check-list li label:before {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    background-color: #fff;
    margin-right: 9px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 5px;
    background-image: url(../images/check-2.svg);
    background-repeat: no-repeat;
    background-position: -100px -100px;
}

.button-row-02 .btn {
    width: 100%;
    background-color: #EAF4FD;
    color: #272727;
    font-weight: normal;
    font-size: 14px;
}

.post {
    border-radius: 30px;
    padding: 0 25px;
}

.post .thumb {
    margin-right: 30px;
}

.post .info {
    padding: 20px 0;
}

.post .text p {
    margin-bottom: 15px;
}

.post .text p:last-child {
    margin-bottom: 0;
}

.post .text ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.post .text ul:last-child {
    margin-bottom: 0;
}

.post .text li {
    margin-right: 20px;
    display: block;
    padding-left: 27px;
    background-image: url(../images/arrow-li.svg);
    background-repeat: no-repeat;
    background-position: 0 center;
}

.post .text li:last-child {
    margin-right: 0;
}

.box-92 {
    line-height: 140%;
}

.box-92 a {
    color: #BC5C85;
}

.box-92 a:hover {
    color: #BF4F7E;
    text-decoration: underline;
}

.faq-row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -30px;
}

.faq-col {
    width: calc(50% - 30px);
    margin-right: 30px;
}

.faq-col:nth-child(1n+3) {
    margin-top: 30px;
}

.faq-item {
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item.active .arrow span {
    height: 2px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item .title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.faq-item .title:hover .arrow {
    background-color: #A53B67;
}

.faq-item .arrow {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 25px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #BF4F7E;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.faq-item .arrow span {
    overflow: hidden;
    display: block;
}

.faq-item .inner {
    max-width: 420px;
}

.faq-item .text {
    line-height: 140%;
    font-size: 16px;
    display: none;
    margin-top: 10px;
}

.faq-item .text p {
    margin-bottom: 15px;
}

.faq-item .text p:last-child {
    margin-bottom: 0;
}

.payment-metod {
    padding: 75px 0;
}

.payment-metod ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -25px;
}

.payment-metod li {
    display: block;
    width: calc(25% - 25px);
    margin-right: 25px;
}

.payment-metod li:nth-child(1n+5) {
    margin-top: 25px;
}

.payment-metod li div {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #303030;
    border-radius: 15px;
    height: 80px;
}

.box-vacancya {
    background-color: #F2F5F8;
    padding: 50px 0;
    margin-bottom: -85px;
}

.box-vacan {
    background-color: #F2F5F8;
    padding: 50px 0;
    margin-bottom: -85px;
}

.slider-vacancya {
    overflow: hidden;
}

.slider-vacancya .draggable {
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.slider-vacancya .col {
    padding: 0 15px;
}

.item-vacancya > * {
    margin-bottom: 10px;
}

.item-vacancya > *:last-child {
    margin-bottom: 0;
}

.item-vacancya h2 {
    font-size: 16px;
    font-weight: 500;
}

.item-vacancya b {
    color: #BC5C85;
    font-weight: 500;
}

.cursor {
    cursor: pointer;
}

.vacan-about-item {
    background-color: #EAF4FD;
    border-radius: 30px;
    height: 100%;
}

.vacan-about-item.bg-red {
    background-color: #FAEDF2;
}

.vacan-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-page-row .col {
    width: 50%;
}

.contact-page-row .ll {
    padding-right: 25px;
}

.contact-page-row .rr {
    padding-left: 25px;
}

.contact-list {
    background-color: #F2F5F8;
    border-radius: 30px;
    padding: 36px 50px;
}

.contact-list p {
    margin-bottom: 23px;
}

.contact-list a[href^="tel:"] {
    color: #000;
    text-decoration: none;
}

.contact-list a[href^="mailto:"] {
    color: #000;
    text-decoration: none;
}

.contact-list a[href^="mailto:"]:hover {
    text-decoration: underline;
}

.input-blue {
    font-family: "Rubik";
    font-size: 14px;
    color: #272727;
    padding: 16px 30px;
    background: #EAF4FD;
    border-radius: 50px;
    border-width: 0;
    width: 100%;
}

.input-blue::-webkit-input-placeholder {
    color: #272727;
}

.input-blue::-moz-placeholder {
    color: #272727;
}

.input-blue:-moz-placeholder {
    color: #272727;
}

.input-blue:-ms-input-placeholder {
    color: #272727;
}

textarea.input-blue {
    height: 165px;
    border-radius: 24px;
    resize: none;
}

.triger {
    top: 0;
    left: 0;
}

.field-col-1 {
    width: 21%;
}

.field-col-2 {
    width: 23%;
}

.field-col-3 {
    width: 22%;
}

.field-col-4 {
    width: 22%;
}

.hide-panel {
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    color: #272727;
    display: none;
}

.hide-panel li {
    color: #272727;
    cursor: pointer;
}

.hide-panel li:hover {
    color: #BC5C85;
}

.hide-panel li:last-child {
    margin-bottom: 0;
}

.hide-panel .lab {
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.number {
    height: 55px;
    width: 107px;
    background: #F6F6F6;
    border-radius: 15px;
}

.number .minus {
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;

}

.number input {
    width: 27px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Rubik";
    font-size: 14px;
    font-weight: 500;
    color: #BC5C85;
    text-align: center;
    border-width: 0;
    background-color: transparent;
}

.number .plus {
    cursor: pointer;
}

.hide-panel-type {
    width: 200px;
    -webkit-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    -moz-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    max-height: 500px;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}

.hide-panel-type::-webkit-scrollbar {
    width: 1px;
    background-color: #f9f9fd;
}

.hide-panel-loc {
    width: 229px;
    -webkit-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    -moz-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    max-height: 500px;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}

.hide-panel-loc::-webkit-scrollbar {
    width: 1px;
    background-color: #f9f9fd;
}

.hide-panel-people {
    width: 248px;
    -webkit-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    -moz-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
}

.data-triger {
    top: 0;
    left: 0;
    cursor: pointer;
}

.hide-panel-date {
    width: 550px;
    -webkit-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    -moz-box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
    box-shadow: -6px 11px 21px 6px rgba(73, 92, 107, 0.29);
}

.data-popup {
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: calc(100% + 40px);
    background-color: #fff;
    border-radius: 30px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    display: none;
}

.data-popup.active {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#datepicker_value-2 {
    margin-left: 4px;
}

.product-date {
    height: 49px;
}

.has-popup .data-triger-show {
    display: none !important;
}

.has-popup .data-triger-hide {
    display: block !important;
}

.product-info-pk-inner.has-popup .data-txt {
    display: none;
}

#datepicker {
    width: 100%;
    display: block;
}

#datepicker .ui-widget.ui-widget-content {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100% !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#datepicker .ui-widget.ui-widget-content .ui-datepicker-group {
    float: none;
    width: 48% !important;
}

#datepicker .ui-helper-clearfix:before,
#datepicker .ui-helper-clearfix:after {
    display: none !important;
}

#datepicker .ui-datepicker-group-last .ui-datepicker-header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 0px;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
    display: none;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
    z-index: 4;
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #1abcda;
}

.slick-prev i,
.slick-next i {
    font-size: 30px;
}

.slick-prev:hover,
.slick-next:hover {
    color: #000;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots {
    list-style: none;
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    position: relative;
    display: block;
    height: 5px;
    width: 5px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.slick-dots li button {
    display: block;
    border: 0;
    background: rgba(39, 39, 39, 0.25);
    border-radius: 10px;
    display: block;
    height: 100%;
    width: 100%;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background-color: #BC5C85;
}

.slick-dots li:hover button {
    background-color: #BC5C85;
}

.book-date-select {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EAF4FD;
    padding: 14px 25px;
    width: 100%;
    cursor: pointer;
    font-family: "Rubik";
    font-weight: 500;
    font-size: 14px;
    border-radius: 40px;
}

.input-vs {
    border: none;
    box-shadow: none;
    outline: none;
    width: 40px;
    text-align: center;
    color: #537BB9;
}

.spin-button-disable input::-webkit-outer-spin-button,
.spin-button-disable input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.spin-button-disable input[type=number]{
    -moz-appearance: textfield;
}

/* Scss Document */
@media (max-width: 1260px) {
    :root {
        --px: 30px;
        --font12: 12px;
        --font13: 13px;
        --font14: 14px;
        --font15: 15px;
        --font16: 16px;
        --font17: 17px;
        --font18: 18px;
        --font20: 16px;
        --font24: 24px;
        --font28: 20px;
        --font32: 27px;
        --font40: 27px;
    }

    #page {
        overflow: hidden;
    }

    .wrap {
        margin-right: 30px;
        margin-left: 30px;
    }

    .home-post .title {
        margin-bottom: 20px;
    }

    .home-post .thumb {
        height: auto;
        margin-left: -30px;
    }

    .home-post .thumb img {
        position: relative;
        right: 0;
        width: 100%;
        height: auto;
    }

    .home-post .info {
        margin-left: -30px;
    }

    .home-message {
        padding: 45px 0;
    }

    .product-info-pk-inner {
        padding: 20px;
    }

    .product-images-pk {
        margin-right: 20px;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .box-92-right {
        display: none;
    }

    .box-00 {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .box-00 p {
        margin-right: 30px;
    }

    .box-00 a {
        color: #537BB9;
        text-decoration: none;
    }

    .short {
        padding: 20px;
    }

    .data-popup {
        left: auto;
        right: 0;
        -webkit-transform: translate(0);
        transform: translate(0);
        width: 530px;
        top: 80px;
    }
}


@media (max-width: 992px) {
    .datepicker-row {
        display: block;
    }

    .datepicker-row .mr-20 {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hide-panel {
        width: 100%;
        top: calc(100% + 20px);
    }

    .hide-panel li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .open-filter-other {
        background-color: #BF4F7E;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 26px 30px;
        margin-left: -30px;
        margin-right: -30px;
        cursor: pointer;
    }

    .open-filter-other.active span {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .open-filter-other span {
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .filter-other {
        background-color: #fff;
        margin-top: -30px;
    }

    .filter-other .filter {
        display: none;
    }

    .filter-other .filter .inner {
        border-radius: 0 0 25px 25px;
    }

    .open-mobile-filter {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 14px;
        background: #537BB9;
        padding: 9px 15px;
        border-radius: 50px;
        cursor: pointer;
        color: #fff;
    }

    .close-filter {
        display: block;
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 3;
        cursor: pointer;
    }

    .button-row-02 {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        z-index: 3;
        width: 492px;
        height: 70px;
        background-color: #272727;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .button-row-02 .btn {
        width: auto;
        background-color: #BF4F7E;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        font-size: 0;
    }

    .button-row-02 .btn:before {
        content: "Применить";
        font-size: 14px;
    }

    .filter-right {
        background-color: #fff;
        padding: 50px 45px 90px 45px;
        height: 100vh;
        overflow-y: auto;
        position: relative;
    }

    .category-row-right {
        position: fixed;
        top: 0;
        right: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 100%;
        height: 10 ovh;
        background-color: rgba(39, 39, 39, 0.5);
        z-index: 5;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .category-row-right.active {
        opacity: 1;
        visibility: visible;
    }

    .category-row {
        position: relative;
    }

    .category-row-left {
        margin-right: 0;
    }

    .head-bg-other {
        margin-bottom: 30px;
    }

    .box-929 {
        margin-bottom: 10px;
    }

    #box-recommended {
        margin-bottom: 0 !important;
    }

    #box-recommended .col:nth-child(1n+4) {
        display: none;
    }

    .box-last-reviews {
        padding: 30px 0;
    }

    .box-last-reviews .fz24 {
        margin-bottom: 30px;
    }

    .box-last-reviews .mt-50 {
        margin-top: 0;
    }

    .map {
        width: 100%;
        height: 300px;
    }

    .product-row-2 {
        display: block;
    }

    .product-images-pk-nav {
        width: 75px;
    }

    .product-images-pk-nav img {
        width: 100%;
        height: auto;
    }

    .product-option {
        font-size: 14px;
        margin-top: 20px;
    }

    .product-option li {
        margin-bottom: 6px;
        padding-left: 23px;
        background-size: auto 15px;
    }

    .product-images-pk {
        padding-left: 0;
    }

    .product-slider-box {
        overflow: hidden;
        position: relative;
        padding-left: 85px;
    }

    .product-row {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .meta-item {
        margin-bottom: 10px;
    }

    .meta-item:last-child {
        margin-bottom: 0;
    }

    .product-info-pk {
        width: 308px;
    }

    .filter {
        margin-left: -10px;
        margin-right: -10px;
        border-width: 11px;
        margin-bottom: 20px;
    }

    .filter .inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        padding: 24px 37px;
    }

    .filter .submit {
        margin-left: 0;
        color: #fff;
        width: 141px;
        height: 43px;
        font-size: 14px;
        font-weight: 500;
    }

    .filter .flex {
        width: 100%;
    }

    .filter .sep {
        background-color: #3A3A3C;
        height: 1px;
        width: 100%;
        margin: 20px 0;
        display: block;
    }

    .filter-field {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 50%;
        padding: 0;
        border-right-width: 0;
    }

    .filter-field:nth-child(2), .filter-field:nth-child(5) {
        padding-left: 20px;
        border-left: 1px solid #3A3A3C;
    }

    .home-post {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .home-post .info {
        width: 300px;
    }

    .home-post .info br {
        display: none;
    }

    .item-popular .title {
        font-size: 20px;
        padding: 16px 10px;
    }

    .item-about .thumb svg {
        display: block;
        width: 100%;
        height: auto;
    }

    .item-about .title {
        font-size: 14px;
    }

    .mb-85 {
        margin-bottom: 50px;
    }

    .box-popular,
    .box-recommended {
        margin-right: -10px;
        margin-bottom: 55px;
    }

    .box-popular .col,
    .box-recommended .col {
        width: calc(33.3333333333% - 10px);
        margin-right: 10px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-popular .col:nth-child(1n+4),
    .box-recommended .col:nth-child(1n+4) {
        margin-top: 39px;
    }

    .box-about {
        margin-right: -10px;
        margin-bottom: 50px;
    }

    .box-about .col {
        width: calc(20% - 10px);
        margin-right: 10px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-about .col:nth-child(1n+6) {
        margin-top: 10px;
    }

    .box-news {
        overflow: hidden;
    }

    .box-news .draggable {
        margin-right: -5px !important;
        margin-left: -5px !important;
    }

    .box-news .col {
        padding: 0 5px;
    }

    .box-reviews {
        overflow: hidden;
    }

    .box-reviews .draggable {
        margin-right: -5px !important;
        margin-left: -5px !important;
    }

    .box-reviews .col {
        padding: 0 5px;
    }

    .box-about-slider-dot {
        margin: 0 20px;
    }

    .box-new-slider-dot {
        margin: 0 20px;
    }

    .box-reviews-slider-dot {
        margin: 0 20px;
    }

    footer {
        margin-top: 50px;
    }

    .box-subscription .left {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 297px;
    }

    .box-subscription .right {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .foot-widget {
        position: relative;
    }

    .foot-widget:first-child {
        width: 169px;
        margin-right: 55px;
    }

    .logo-footer {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .footer-link a {
        white-space: nowrap;
    }

    .filter {
        margin-top: 0;
    }

    .post .text ul {
        display: block;
    }

    .post .text li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .post .text li:last-child {
        margin-bottom: 0;
    }

    .head-bg-other + .home-message {
        margin-top: -30px;
        margin-bottom: 50px;
    }

    .fz40.mb-30 {
        font-size: 24px;
    }

    .fz24.mb-30 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .post {
        margin-bottom: 10px;
    }

    .box-92 br {
        display: none;
    }

    .box-92 {
        margin-top: 20px;
    }

    .faq-row {
        margin-right: 0;
    }

    .faq-col {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .faq-col:last-child {
        margin-bottom: 0;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .payment-metod {
        padding: 50px 0;
        margin-bottom: 50px;
    }

    .box-92.mb-75 {
        margin-bottom: 50px;
    }

    .box-vacancya {
        margin-bottom: -50px;
    }

    .grid3 {
        margin-right: calc(var(--px) * -1);
    }

    .grid3 .col {
        width: calc(50% - var(--px));
        margin-right: var(--px);
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .grid3 .col:nth-child(1n+3) {
        margin-top: var(--px);
    }

    .vacan-message {
        margin-top: -30px;
        padding: 127px 0;
    }

    .box-vacan {
        margin-bottom: -50px;
    }

    .vacan-message {
        margin-top: -15px;
    }

    .mb-75 {
        margin-bottom: 30px;
    }

    .contact-page-row {
        display: block;
    }

    .contact-page-row .col {
        width: 100%;
    }

    .contact-page-row .ll {
        margin-bottom: 50px;
        padding-right: 0;
    }

    .contact-page-row .rr {
        padding-left: 0;
    }

    .show_992 {
        display: block;
    }

    .hide_992 {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --px: 30px;
        --font12: 12px;
        --font13: 13px;
        --font14: 14px;
        --font15: 15px;
        --font16: 16px;
        --font17: 17px;
        --font18: 18px;
        --font20: 15px;
        --font24: 24px;
        --font28: 20px;
        --font32: 22px;
        --font40: 27px;
    }

    .data-popup {
        left: auto;
        right: 0;
        -webkit-transform: translate(0);
        transform: translate(0);
        width: 100%;
        top: 80px;
    }

    .hide-panel {
        width: 100%;
        top: calc(100% - 20px);
        border-radius: 0 0 10px 10px;
    }

    .hide-panel li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .social-vs a {
        margin-bottom: 5px;
        margin-right: 5px;
    }

    .contact-list {
        padding: 30px;
    }

    .box-vacan {
        padding: 40px 0;
    }

    .grid3 {
        margin-right: calc(var(--px) * -1);
    }

    .grid3 .col {
        width: calc(100% - var(--px));
        margin-right: var(--px);
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .grid3 .col:nth-child(1n+2) {
        margin-top: 10px;
    }

    .vacan-list .col:nth-child(1n+2) {
        margin-top: 30px;
    }

    .head-bg-other + .home-message {
        margin-top: -15px;
        margin-bottom: 30px;
    }

    .payment-metod {
        margin-bottom: 30px;
    }

    .mobile-mb-30 {
        margin-bottom: 30px;
    }

    .box-vacancya {
        padding: 30px 0;
    }

    .box-92.mb-75 {
        margin-bottom: 30px;
    }

    .box-faq {
        padding: 30px 0;
    }

    .payment-metod {
        padding: 30px 0;
    }

    .payment-metod ul {
        margin-right: -25px;
    }

    .payment-metod li {
        width: calc(50% - 25px);
        margin-right: 25px;
    }

    .payment-metod li:nth-child(1n+3) {
        margin-top: 25px;
    }

    .fz40.mb-30 {
        margin-bottom: 20px;
    }

    .post {
        display: block;
    }

    .short {
        padding: 10px;
    }

    .short > .inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .short .thumb {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .sort-right {
        display: none;
    }


    .add-favorite {
        position: absolute;
        font-size: 0;
        top: 10px;
        left: 10px;
        z-index: 2;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        background-color: #f4f3f4;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .add-favorite svg {
        width: 20px;
        height: auto;
    }

    #box-recommended .col:nth-child(1n+3) {
        display: none;
    }

    .reviews-date {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .tags {
        text-align: right;
    }

    .product-row-2 {
        margin-bottom: 30px;
    }

    .product-info-pk {
        width: 100%;
    }

    .product-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .head-bg-other {
        margin-bottom: 15px;
    }

    .product-slider-box {
        padding-left: 0;
        margin-bottom: 30px;
    }

    header .btn-round {
        margin-right: 0 !important;
    }

    .item-about .thumb svg {
        width: auto;
        height: 100px;
    }

    .js_open.opnd_g:after {
        content: "";
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .js_open img {
        margin-right: 0;
        display: block;
        margin-left: 5px;
    }

    .js_open:after {
        content: "";
        background-image: url(../images/arrow-down.png);
        background-repeat: no-repeat;
        width: 16px;
        height: 15px;
        display: block;
        margin-left: 5px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .footer-link {
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        bottom: 40px;
    }

    .logo-footer {
        position: absolute;
        bottom: 115px;
        left: 0%;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .foot {
        padding: 37px 0 192px 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .foot-widget {
        position: static;
        margin-bottom: 55px;
    }

    .foot-widget:first-child {
        width: auto;
        margin-right: 0;
    }

    .foot-widget:nth-child(2n+1) {
        width: 60%;
    }

    .foot-widget:nth-child(2n+2) {
        width: 38%;
    }

    .foot-widget:nth-child(1n+3) {
        margin-bottom: 0;
    }

    .foot-widget .name {
        white-space: nowrap;
    }

    .subscription-form input {
        width: calc(100% - 141px);
    }

    .box-subscription .left {
        padding-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .box-subscription .wrap {
        display: block;
    }

    .box-news {
        overflow: hidden;
    }

    .box-news .draggable {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .box-news .col {
        padding: 0 0;
    }

    .box-reviews {
        overflow: hidden;
    }

    .box-reviews .draggable {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .box-reviews .col {
        padding: 0 5px;
    }

    .box-news .col {
        width: 230px;
        margin-right: 10px;
    }

    .box-reviews .col {
        width: 230px;
        margin-right: 10px;
    }

    .box-recommended {
        margin-bottom: 20px !important;
    }

    .box-recommended .col:nth-child(1n+5) {
        display: none;
    }

    .box-popular {
        margin-bottom: 20px !important;
    }

    .box-popular .col:nth-child(1n+5) {
        display: none;
    }

    .item-popular .title {
        font-size: 16px;
        padding: 14px 5px;
    }

    .item-popular .info {
        padding: 15px 10px 0 10px;
    }

    .box-popular,
    .box-recommended {
        margin-right: -10px;
        margin-bottom: 55px;
    }

    .box-popular .col,
    .box-recommended .col {
        width: calc(50% - 10px);
        margin-right: 10px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-popular .col:nth-child(1n+3),
    .box-recommended .col:nth-child(1n+3) {
        margin-top: 19px;
    }

    .box-about {
        margin-right: -10px;
        margin-bottom: 50px;
    }

    .box-about .col {
        width: calc(20% - 10px);
        margin-right: 10px;
        flex-basis: unset;
        flex-grow: unset;
        padding: 0;
    }

    .box-about .col:nth-child(1n+6) {
        margin-top: 10px;
    }

    .home-message {
        padding: 22px 0;
        margin-bottom: 36px;
    }

    .home-message .mb-35 {
        margin-bottom: 15px;
    }

    .filter-field:nth-child(2),
    .filter-field:nth-child(5) {
        border-left-width: 0;
        padding-left: 0;
    }

    .filter-field {
        width: 100%;
    }

    .filter-field:after {
        content: "";
        width: 100%;
        height: 1px;
        background-color: #3A3A3C;
        display: block;
        margin: 20px 0;
    }

    .filter-field .arrow {
        right: 0;
    }

    .filter {
        margin-bottom: 0;
    }

    .filter .sep {
        display: none;
    }

    .filter-bg {
        background-color: #EAF4FD;
        margin-bottom: 0;
        padding-bottom: 33px;
    }

    .head-bg {
        padding-bottom: 0;
    }

    .home-post {
        padding-bottom: 25px;
    }

    .home-post .thumb {
        display: none;
    }

    .home-post .info {
        width: 100%;
        text-align: center;
    }

    header {
        padding-top: 15px;
        margin-bottom: 32px !important;
    }

    .wrap {
        margin-right: 15px;
        margin-left: 15px;
    }

    .filter-other {
        margin-top: -15px;
    }

    .show_767 {
        display: block;
    }

    .hide_767 {
        display: none;
    }
}

@media (max-width: 550px) {
    #datepicker .ui-widget.ui-widget-content .ui-datepicker-group {
        width: 100% !important;
    }

    .data-popup {
        left: auto;
        right: 0;
        -webkit-transform: translate(0);
        transform: translate(0);
        width: 100%;
        top: 80px;
    }

    .data-popup.active {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .data-popup .ui-datepicker {
        width: 100%;
    }

    #datepicker-2 {
        margin-top: 20px;
    }

    .hide-panel-date {
        padding-left: 10px;
        padding-right: 10px;
    }

    .meta-item {
        margin-bottom: 3px;
    }

    .filter-3 {
        margin-bottom: 10px;
    }

    .filter-other {
        margin-bottom: 20px;
    }

    .button-row-02 {
        width: 100%;
    }

    .filter-right {
        width: 100%;
    }

    .box-00 p {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .box-00 p:last-child {
        margin-bottom: 0;
    }

    .product-data {
        margin-bottom: 15px;
    }

    .short .thumb {
        width: 100%;
    }

    .short .thumb img {
        width: 100%;
        height: 100%;

    }

    .open-mobile-filter {
        white-space: nowrap;
        padding: 9px 12px;
    }

    .sort-item {
        margin-right: 5px;
    }

    .sort-item:nth-child(1n+3) {
        display: none;
    }

    .sort-item select {
        padding: 9px 35px 9px 10px;
    }

    .show_550 {
        display: block;
    }

    .hide_550 {
        display: none;
    }

}

.btn-range:hover {
    color: white;
}

.booking_cookie_agreement-vs {
    background-color: #333030;
}

.booking_cookie_agreement-vs a {
    color: white;
}

.btn_vs {
    background-color: #BF4F7E;
    border: 2px #BF4F7E solid;
    padding: 10px 20px;
    color: white;
    border-radius: 30px;
}

.btn_vs:hover {
    background-color: #c0487c;
    color: white;
}

.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-bar,
.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-from,
.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-to,
.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-handle>i:first-child,
.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-from:before,
.g-filter-item .item-content .bravo-filter-price .irs--flat .irs-to:before {
    background: #131318;
    border-top-color: #131318;
    font-size: 11px;
}

.vs-dop-filter-btn {
    border: none;
    background-color: transparent;
}

