﻿/* START common pages styles */
/* grid from bootstrap */
/* common */
/* header */
/* footer */
/* contactsInfo */
/*  END  common pages styles */
/*  --------------------------- */
/* START common pages styles */
/* common */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    *:focus {
        outline: none !important;
    }

/* START - grid from bootstrap */
.container {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1210px;
    }
}

/*  END  - grid from bootstrap */
html,
body {
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0 auto;
}

    html.heightPage,
    html.heightPage body {
        height: 100%;
    }

body {
    overflow-Y: scroll;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text_main);
    background-color: var(--color-fff);
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100%;
}

.main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.container {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    display: block;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

li {
    list-style: none;
}

p,
form {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

b,
strong {
    font-family: "Poppins-Bold", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 700;
}

a,
a:hover {
    color: var(--color-text_main);
    text-decoration: none;
}

p a:not(.btn) {
    position: relative;
    display: inline;
}

    p a:not(.btn):before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 0;
        background-color: transparent;
        -webkit-transition: background-color 0.3s ease 0s, bottom 0.15s ease 0s, height 0.15s ease 0s;
        transition: background-color 0.3s ease 0s, bottom 0.15s ease 0s, height 0.15s ease 0s;
    }

    p a:not(.btn):hover:before {
        background-color: var(--color-000);
    }

select {
    -webkit-appearance: none;
    border-radius: 0;
}

input {
    margin: 0;
}

button {
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    margin: 0;
    cursor: pointer;
}

button, input[type=submit] {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
input[type=date] {
    -webkit-appearance: none;
    border-radius: 0;
}

    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

textarea {
    -webkit-appearance: none;
    display: block;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 154px;
    height: 154px;
    max-height: 154px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    resize: none;
}

.hidden {
    display: none !important;
}

h1, .hl-h1,
h2, .hl-h2,
h3, .hl-h3,
h4, .hl-h4,
h5, .hl-h5,
h6, .hl-h6 {
    font-weight: normal;
    padding: 0;
    margin: 0 auto;
}

.btn {
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Poppins-SemiBold", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    background-color: silver;
    padding: 4px 26px 5px;
    border: 2px solid silver;
    -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s;
    transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s;
    cursor: pointer;
}

@media (max-width: 767px) {
    .btn {
        min-width: inherit;
    }
}

.btn:hover {
    color: #fff;
    border-color: #fff;
}

.btn[disabled] {
    color: #fff !important;
    background-color: silver !important;
    border-color: silver !important;
    cursor: default;
}

/* header */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
/* ----------------- START header ----------------- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 155px;
    z-index: 1000;
}

@media (max-width: 1199px) {
    .header {
        height: 120px;
    }
}

@media (max-width: 991px) {
    .header {
        height: 100px;
        background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
    }
}

@media (max-width: 767px) {
    .header {
        height: 70px;
    }
}

@media (max-width: 991px) {
    .navOpen .header {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, #fff), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to bottom, #fff 100%, rgba(255, 255, 255, 0) 100%);
    }
}

.header .containerWrapper {
    padding-top: 10px;
}

.header .container {
    position: static;
}

@media (min-width: 1200px) {
    .header .container {
        max-width: 100%;
    }
}

@media (min-width: 1715px) {
    .header .container {
        max-width: 1685px;
    }
}

.header .container__inner,
.header .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

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

@media (min-width: 992px) {
    .header .container__inner {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .header .container__inner {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.header .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header .containerWrapper,
.header .container,
.header .container__inner,
.header .content {
    height: 100%;
}

/* ---------- START brand link ---------- */
/* ---------- START brand link ---------- */
.header .brandLinkWrapper {
    margin-left: 0;
    margin-right: auto;
}

.header .brandLink__img {
    width: auto;
    height: 145px;
}

@media (max-width: 1499px) {
    .header .brandLink__img {
        height: 119px;
    }
}

@media (max-width: 1199px) {
    .header .brandLink__img {
        height: 119px;
    }
}

@media (max-width: 991px) {
    .header .brandLink__img {
        height: 119px;
    }
}

@media (max-width: 767px) {
    .header .brandLink__img {
        height: 79px;
    }
}

.brandLink__img--white {
    display: block;
}

@media (max-width: 991px) {
    .brandLink__img--white {
        display: none;
    }
}

.brandLink__img--colored {
    display: none;
}

@media (max-width: 991px) {
    .brandLink__img--colored {
        display: block;
    }
}

/* ----------  END  brand link ---------- */
/* ----------  END  brand link ---------- */
/* ----------  END  brand link ---------- */
/* ---------- START menu ---------- */
/* ---------- START menu ---------- */
.header .menuWrapper {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 991px) {
    .header .menuWrapper {
        position: absolute;
        top: 100px;
        right: 0;
        display: none;
        width: 300px;
        height: calc(100vh - 100px);
        overflow: hidden;
        background-color: #fff;
        padding: 30px 45px 90px;
        -webkit-transition: width 0.15s ease 0s;
        transition: width 0.15s ease 0s;
    }
}

@media (max-width: 767px) {
    .header .menuWrapper {
        top: 70px;
        width: 250px;
        height: calc(100vh - 70px);
        padding: 30px 30px 90px;
    }
}

@media (max-width: 991px) {
    .header .menuWrapper.open {
        display: block;
    }
}

.header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .header .menu {
        display: block;
    }
}

.header .menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 11.25px;
    margin-right: 11.25px;
}

@media (max-width: 1199px) {
    .header .menu__item {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .header .menu__item {
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: auto;
    }
}

.header .menu__itemLink {
    padding-left: 11.25px;
    padding-right: 11.25px;
}

@media (max-width: 1199px) {
    .header .menu__itemLink {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .header .menu__itemLink {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .header .menu__item--search .menu__itemLink {
        padding-left: 15px;
    }
}

.header .menu__item--search .menu__itemIcon {
    width: 30px;
    margin-right: -6.25px;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}

@media (max-width: 1199px) {
    .header .menu__item--search .menu__itemIcon {
        width: 25px;
        margin-right: -10px;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .header .menu__item--search .menu__itemIcon * {
        fill: #000;
    }
}

.header .menu__item--search,
.header .menu__item--btn {
    padding-left: 11.25px;
}

@media (max-width: 1199px) {
    .header .menu__item--search,
    .header .menu__item--btn {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .header .menu__item--search,
    .header .menu__item--btn {
        padding-left: 0;
    }
}

.header .menu__itemLink:not(.btn) {
    font-family: "Oswald-Medium", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1111111111;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 1714px) {
    .header .menu__itemLink:not(.btn) {
        font-size: 30px;
    }
}

@media (max-width: 1499px) {
    .header .menu__itemLink:not(.btn) {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .header .menu__itemLink:not(.btn) {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .header .menu__itemLink:not(.btn) {
        color: #000;
    }
}

.header .menu__itemLink:not(.btn):hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.header .menu .btn {
    width: 184px;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .header .menu .btn {
        width: 154px;
    }
}

/* ----------  END  menu ---------- */
/* ----------  END  menu ---------- */
/* ----------  END  menu ---------- */
/* ---------- START menu toggler btn ---------- */
/* ---------- START menu toggler btn ---------- */
.header .menuTogglerBtnWrapper {
    margin-left: auto;
    margin-right: 0;
    display: none;
}

@media (max-width: 991px) {
    .header .menuTogglerBtnWrapper {
        display: block;
    }
}

.header .menuTogglerBtn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    padding: 0;
    border: none;
}

.header .menuTogglerBtn__text {
    font-family: "Oswald-Medium", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2222222222;
    color: #000;
    text-transform: uppercase;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .header .menuTogglerBtn__text {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

.header .menuTogglerBtn__icon {
    position: relative;
    display: block;
    width: 20px;
    margin-left: 10px;
}

    .header .menuTogglerBtn__icon span {
        position: absolute;
        top: 50%;
        display: block;
        width: 100%;
        height: 3.18px;
        background-color: #000;
        border-radius: 10px;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

        .header .menuTogglerBtn__icon span:nth-of-type(1) {
            top: calc(50% - 4.24px);
            -webkit-transform: translateY(-200%);
            -ms-transform: translateY(-200%);
            transform: translateY(-200%);
        }

.navOpen .header .menuTogglerBtn__icon span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-100%) rotate(45deg);
    -ms-transform: translateY(-100%) rotate(45deg);
    transform: translateY(-100%) rotate(45deg);
}

.navOpen .header .menuTogglerBtn__icon span:nth-of-type(2) {
    display: none;
}

.header .menuTogglerBtn__icon span:nth-of-type(3) {
    top: calc(50% + 4.24px);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.navOpen .header .menuTogglerBtn__icon span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translateY(-100%) rotate(-45deg);
    -ms-transform: translateY(-100%) rotate(-45deg);
    transform: translateY(-100%) rotate(-45deg);
}

/* ----------  END  menu toggler btn ---------- */
/* ----------  END  menu toggler btn ---------- */
/* ----------  END  menu toggler btn ---------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* -----------------  END  header ----------------- */
/* footer */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
/* ----------------- START footer ----------------- */
.footer .containerWrapper {
    background-color: #f2f2f2;
    padding-top: 39px;
    padding-bottom: 19px;
}

@media (min-width: 767px) {
    .footer .containerWrapper {
        padding-top: 47px;
        padding-bottom: 20px;
    }
}

.footer__colls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

    .footer__colls + * {
        margin-top: 37px;
    }

.footer__coll {
    width: 16.6666666667%;
}

@media (max-width: 1199px) {
    .footer__coll {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .footer__coll {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .footer__coll {
        width: 50%;
    }
}

.footer__coll:not(:first-of-type) {
    padding-left: 18px;
}

@media (max-width: 767px) {
    .footer__coll:not(:first-of-type) {
        padding-left: 10px;
    }
}

.footer__coll:not(:last-of-type) {
    padding-right: 18px;
}

@media (max-width: 767px) {
    .footer__coll:not(:last-of-type) {
        padding-right: 10px;
    }
}

.footer__coll--logo {
    width: 33.3333333333%;
}

@media (max-width: 1199px) {
    .footer__coll--logo {
        width: 40%;
    }
}

@media (max-width: 991px) {
    .footer__coll--logo {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .footer__coll--4myEncore,
    .footer__coll--account,
    .footer__coll--policies {
        width: 33.3333333333%;
        margin-top: 48px;
    }
}

@media (max-width: 991px) {
    .footer .footer__coll--4myEncore {
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .footer .footer__coll--policies {
        padding-right: 0;
    }
}

@media (max-width: 1199px) {
    .footer__coll--empty {
        display: none;
    }
}

.footerLogo {
    height: auto;
}

.footerLogo--desktop {
    width: 169px;
    display: block;
}

@media (max-width: 767px) {
    .footerLogo--desktop {
        display: none;
    }
}

.footerLogo--mobile {
    width: 143px;
    display: none;
}

@media (max-width: 767px) {
    .footerLogo--mobile {
        display: block;
    }
}

@media (max-width: 991px) {
    .footerLogo--mobile {
        width: 123px;
    }
}

@media (max-width: 767px) {
    .footerLogo--mobile {
        width: 103px;
    }
}

.footerOwnerWordsWrapper {
    margin: 0;
    margin-top: 31px;
}

@media (max-width: 767px) {
    .footerOwnerWordsWrapper {
        display: none;
    }
}

.footerOwnerWords {
    font-family: "Poppins-Regular", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    font-style: italic;
    color: #000;
    margin: 0;
}

.footerOwner {
    font-family: "Oswald-Medium", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.375;
    text-transform: uppercase;
    margin-top: 20px;
}

.footer__collHl {
    font-family: "Poppins-Bold", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
}

.footer__collContent {
    margin-top: 15px;
}

.footer .menu {
    margin-bottom: 17px;
}

.footer .menu__item:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer .menu__itemLink {
    font-family: "Poppins-Regular", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
}

    .footer .menu__itemLink:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

.footer .langLinkWrapper {
    margin-top: 39.2px;
}

.footer .langLink {
    font-family: "Poppins-Bold", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
}

@media (max-width: 767px) {
    .footer .langLink {
        font-family: "Poppins-Regular", "Helvetica", "Helvetica Neue", sans-serif;
        font-style: normal;
        font-weight: 400;
    }
}

.footer .langLink:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* -------- START soc link -------- */
/* -------- START soc link -------- */
.footer .socLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -5px;
}

@media (max-width: 767px) {
    .footer .socLinks {
        display: none;
    }
}

.footer .socLinks__item {
    margin-left: 5px;
    margin-right: 5px;
}

.footer .socLinks__itemLink {
    display: block;
    border-radius: 50px;
    -webkit-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

    .footer .socLinks__itemLink:hover {
        background-color: #55a576;
    }

.footer .socLinks__itemLinkIcon {
    width: 24px;
    height: 24px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

/* --------  END  soc link -------- */
/* --------  END  soc link -------- */
/* --------  END  soc link -------- */
.footer__powered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .footer__powered {
        display: none;
    }
}

.footer__poweredIcon {
    margin-left: 13px;
}

.footer__copyright {
    font-family: "Poppins-Regular", "Helvetica", "Helvetica Neue", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .footer__copyright {
        margin-top: 48px;
    }
}

/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/* -----------------  END  footer ----------------- */
/*  END  common pages styles */
/*  --------------------------- */
